알고리즘64 :: BOJ_2003_수들의합
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
|
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class {
static int n,m;
static int[] arr;
public static void main(String[] args) throws Exception{
// TODO Auto-generated method stub
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
n = Integer.parseInt(st.nextToken());
m = Integer.parseInt(st.nextToken());
arr = new int[n];
st = new StringTokenizer(br.readLine());
for(int i=0; i<n; i++)
arr[i] = Integer.parseInt(st.nextToken());
int start = 0;
int end =0;
int ans = 0;
int sum = arr[0];
while(start<=end && end<n) {
if(sum<m) {
end +=1;
if(end<n)
sum += arr[end];
}else if(sum == m) {
end+=1;
ans +=1;
if(end<n)
sum += arr[end];
}else if(sum>m){
sum -= arr[start];
if(start<n)
start+=1;
if (start > end && start < n) {
end = start;
sum = arr[start];
}
}
}//end of for loop
System.out.println(ans);
}
}
|
cs |
Point to Point 방식은 quickSort 처럼 2개의 포인트를 두고
크거나 같다면 end 를 움직이고
작다면 start를 움직인다.
서로 역전이 발생할 수 있으므로 발생했을때는 같은 시점으로 돌려야한다.