-
Notifications
You must be signed in to change notification settings - Fork 1
/
p1253.java
55 lines (45 loc) · 1.2 KB
/
p1253.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
좋다
투포인터
*/
import java.io.*;
import java.util.*;
public class p1253 {
static int n;
static int[] arr;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
n = 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());
}
process();
}
static void process() {
int ans = 0;
Arrays.sort(arr);
for (int i = 0; i < n; i++) {
if (possible(i)) ans++;
}
System.out.println(ans);
}
static boolean possible(int idx) {
int lo = 0;
int hi = n - 1;
int target = arr[idx];
while (true) {
if (lo == idx) lo++;
else if (hi == idx) hi--;
if (lo >= hi) break;
int sum = arr[lo] + arr[hi];
if (sum < target) lo++;
else if (sum > target) hi--;
else if (sum == target) {
return true;
}
}
return false;
}
}