https://www.acmicpc.net/problem/1940
[풀이]
- 투포인터의 기본적인 문제였습니다. 주어진 M보다 크면 안되고 작아도 안되기 때문에 각 조건에 맞게 start,end 변수의 크기를 조절해야합니다.
- M보다 배열의 합이 작다면, start의 크기를 1증가, M보다 배열의 합이 크다면, end의 크기를 1 감소 해야합니다.
- 만약, M이되었다면, start와 end변수 각각 크기를 1증가, 1감소 해야합니다.
- 이 반복을 start가 end보다 작을때까지 반복해야 합니다.
[코드]
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.StringTokenizer;
public class Main {
static int answer;
static int N, M;
static int[] arr;
public static void cal(int[] arr, int M) {
int start = 0;
int end = arr.length - 1;
while (start < end) {
if (arr[start] + arr[end] == M) {
answer += 1;
start += 1;
end -= 1;
} else if (arr[start] + arr[end] < M) {
start += 1;
} else {
end -= 1;
}
}
}
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
N = Integer.parseInt(br.readLine());
M = Integer.parseInt(br.readLine());
arr = new int[N];
StringTokenizer st = new StringTokenizer(br.readLine(), " ");
for (int i = 0; i < N; i++) {
arr[i] = Integer.parseInt(st.nextToken());
}
Arrays.sort(arr);
cal(arr, M);
System.out.println(answer);
}
}
'Algorithm > 백준' 카테고리의 다른 글
백준 10809번 : 알파벳 찾기(Java) (0) | 2021.09.06 |
---|---|
백준 15787번 : 기차가 어둠을 헤치고 은하수를(Java) (0) | 2021.09.06 |
백준 3273번 : 두 수의 합(Java) (0) | 2021.09.05 |
백준 1302번 : 베스트셀러(Java) (0) | 2021.09.05 |
백준 10610번 : 30(Java) (0) | 2021.09.04 |