https://www.acmicpc.net/problem/3273
[풀이]
- 투포인터 유형의 문제였다. 0번 인덱스에서, 배열의 길이 - 1의 인덱스에서 좁혀오며 비교를 하였다.
- 만약, 합이 x값과 같다면 start 혹은 end를 1 더하거나 뺐다.
- 합이 x값보다 작다면, start 값을 1 더하고 x값보다 크다면, end 값을 1 뺐다.
- 이렇게 연산과정을 반복하면서 개수를 세면된다.
[코드]
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 result;
public static void cal(int[] arr, int target) {
int start = 0;
int end = arr.length - 1;
while (start < end) {
if (arr[start] + arr[end] == target) {
start += 1;
result += 1;
} else if (arr[start] + arr[end] < target) {
start += 1;
} else if (arr[start] + arr[end] > target) {
end -= 1;
}
}
}
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
int[] arr = new int[n];
StringTokenizer st = new StringTokenizer(br.readLine(), " ");
int x = Integer.parseInt(br.readLine());
result = 0;
for (int i = 0; i < n; i++) {
arr[i] = Integer.parseInt(st.nextToken());
}
Arrays.sort(arr);
cal(arr, x);
System.out.println(result);
}
}
'Algorithm > 백준' 카테고리의 다른 글
백준 15787번 : 기차가 어둠을 헤치고 은하수를(Java) (0) | 2021.09.06 |
---|---|
백준 1940번 : 주몽(Java) (0) | 2021.09.05 |
백준 1302번 : 베스트셀러(Java) (0) | 2021.09.05 |
백준 10610번 : 30(Java) (0) | 2021.09.04 |
백준 5052번 : 전화번호 목록(Java) (0) | 2021.09.04 |