부분합을 구하는 문제이다
N이 100,000 으로써 일반적인 2중반복문을 한다면 O(N^2)으로 1초안에 들어오지 못해 오답을 받는다.
이를 해결하기 위해선 투포인터 알고리즘을 쓰면 된다.
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
|
public class Main {
static int n,s;
static int arr[];
static int cnt=0;
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String[] t = br.readLine().split(" ");
n = Integer.parseInt(t[0]);
s = Integer.parseInt(t[1]);
arr = new int[n];
String[] tt = br.readLine().split(" ");
for(int i=0; i<n; i++) {
arr[i] = Integer.parseInt(tt[i]);
}
int start = 0;
int end =0;
int sum=0;
int min = Integer.MAX_VALUE;
while(true) {
if(sum>=s) {
//System.out.println(end+" "+start);
sum-=arr[start++];
//start++;
}
else if(end == n) {
if(min==Integer.MAX_VALUE) {
System.out.println(0);
}
else {
System.out.println(min);
}
break;
}
else {
sum+=arr[end++];
}
}
}
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs |
'알고리즘' 카테고리의 다른 글
[백준 7453] 합이 0인 네 정수 -JAVA // le_effort// (1) | 2020.03.03 |
---|---|
[백준 13913] 숨바꼭질4 -JAVA // le_effort// (0) | 2020.02.28 |
[백준 2143] 두 배열의 합 - JAVA // le_effort// (0) | 2020.02.28 |
[백준 1208] 부분수열의 합2 자바// le_effot// (0) | 2020.02.28 |
[백준 1644] 소수의 연속합 자바 //le_effort// (0) | 2020.02.28 |