문제설명
문제
주몽은 철기군을 양성하기 위한 프로젝트에 나섰다. 그래서 야철대장을 통해 철기군이 입을 갑옷을 만들게 하였다. 야철대장은 주몽의 명에 따르기 위하여 연구에 착수하던 중 아래와 같은 사실을 발견하게 되었다.
갑옷을 만드는 재료들은 각각 고유한 번호를 가지고 있다. 갑옷은 두 개의 재료로 만드는데 두 재료의 고유한 번호를 합쳐서 M(1 ≤ M ≤ 10,000,000)이 되면 갑옷이 만들어 지게 된다. 야철대장은 자신이 만들고 있는 재료를 가지고 갑옷을 몇 개나 만들 수 있는지 궁금해졌다. 이러한 궁금증을 풀어 주기 위하여 N(1 ≤ N ≤ 15,000) 개의 재료와 M이 주어졌을 때 몇 개의 갑옷을 만들 수 있는지를 구하는 프로그램을 작성하시오.
입력
첫째 줄에는 재료의 개수 N(1 ≤ N ≤ 15,000)이 주어진다. 그리고 두 번째 줄에는 갑옷을 만드는데 필요한 수 M(1 ≤ M ≤ 10,000,000) 주어진다. 그리고 마지막으로 셋째 줄에는 N개의 재료들이 가진 고유한 번호들이 공백을 사이에 두고 주어진다. 고유한 번호는 100,000보다 작거나 같은 자연수이다.
출력
첫째 줄에 갑옷을 만들 수 있는 개수를 출력한다.
문제풀이
투 포인트를 이용하여 해결,
1.재료의 개수 N , 갑옷이 완성되는 번호의 합 M , 재료들 list , startIndex , endIndex 선언
2. materialList 오름차순 정렬
3. while문 실행 (startIndex가 endIndex보다 크면 false)
3-1. materialList[startIndex]+ materialList[endIndex] 값이 M보다 작으면 startIndex +1
3-2. materialList[startIndex]+ materialList[endIndex] 값이 M보다 크면 endindex -1
3-3. materialList[startIndex]+ materialList[endIndex] 값이 M 같으면 , startindex+1, endindex -1
package doit_java;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Collections;
import java.util.StringTokenizer;
public class doit_7_주몽의명령 {
public static void main(String[] args)throws IOException {
//재료의 개수 N , 갑옷이 완성되는 번호의 합 M , 재료들 list , startIndex , endIndex sum result 선언
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int N = Integer.parseInt(st.nextToken());
st = new StringTokenizer(br.readLine());
int M = Integer.parseInt(st.nextToken());
st= new StringTokenizer(br.readLine());
ArrayList<Integer> materialList = new ArrayList<>(N);
for (int i=0; i<N; i++){
materialList.add(Integer.parseInt(st.nextToken()));
}
int startIndex= 0;
int endIndex = N-1;
int result = 0;
// materialList 오름차순 정렬 = 1, 2, 3, 4, 5 ,7
Collections.sort(materialList);
while(startIndex<endIndex){
if(materialList.get(startIndex)+ materialList.get(endIndex)<M){
startIndex++;
System.out.println("<");
}
else if(materialList.get(startIndex)+ materialList.get(endIndex)>M){
endIndex--;
System.out.println(">");
}
else{
result++;
startIndex++;
endIndex--;
System.out.println("=");
}
}
System.out.println("end");
}
}
'Etc. > Coding Test' 카테고리의 다른 글
[백준]1874번 스택으로 오름차순 수열 만들기 (4) | 2022.05.13 |
---|---|
[백준] 1253번 '좋은 수' 구하기 (0) | 2022.05.11 |
[백준] 2018번 연속된 자연수의 합 구하기 (0) | 2022.05.10 |
[백준] 11660번 구간 합 구하기-2 (0) | 2022.05.09 |
[백준] 11659번 구간 합 구하기 (0) | 2022.05.09 |