시간제한 : 1초
메모리제한 128MB
문제 유형 : 두 포인터
문제 설명 간략 :
매일 측정한 온도가 정수의 수열로 주어졌을 때, 연속적인 며칠 동안의 온도의 합이 가장 큰 값을 계산하는 프로그램을 작성하시오.
입력
첫째 줄에는 두 개의 정수 N과 K가 한 개의 공백을 사이에 두고 순서대로 주어진다. 첫 번째 정수 N은 온도를 측정한 전체 날짜의 수이다. N은 2 이상 100,000 이하이다. 두 번째 정수 K는 합을 구하기 위한 연속적인 날짜의 수이다. K는 1과 N 사이의 정수이다. 둘째 줄에는 매일 측정한 온도를 나타내는 N개의 정수가 빈칸을 사이에 두고 주어진다. 이 수들은 모두 -100 이상 100 이하이다.
출력
첫째 줄에는 입력되는 온도의 수열에서 연속적인 K일의 온도의 합이 최대가 되는 값을 출력한다.
접근법
두 포인터를 사용하여 L은 움직이면서 기존껀 제외하고 R + 1이 L + K - 1 보다 작을 때까지 최대 합을 구하여 최댓값을 갱신한다.
자바 풀이
import java.io.*;
import java.util.*;
public class Main {
static StringBuilder sb = new StringBuilder();
static FastReader scan = new FastReader();
static int N,K;
static int[] A;
static void input() {
N = scan.nextInt();
K = scan.nextInt();
A = new int[N + 1];
for(int i = 1; i <= N; i++) {
A[i] = scan.nextInt();
}
}
static void pro() {
int max = -100*N, R = 0, sum = 0;
for(int L = 1; L + K - 1 <= N; L++) {
sum -= a[L - 1];
while(R + 1 < L + K - 1)
sum += A[++R];
max = Math.max(max, sum);
}
System.out.println(max);
}
public static void main(String[] args) {
input();
pro();
}
static class FastReader {
BufferedReader br;
StringTokenizer st;
public FastReader() {
br = new BufferedReader(new InputStreamReader(System.in));
}
public FastReader(String s) throws FileNotFoundException {
br = new BufferedReader(new FileReader(new File(s)));
}
String next() {
while (st == null || !st.hasMoreElements()) {
try {
st = new StringTokenizer(br.readLine());
} catch (IOException e) {
e.printStackTrace();
}
}
return st.nextToken();
}
int nextInt() {
return Integer.parseInt(next());
}
long nextLong() {
return Long.parseLong(next());
}
double nextDouble() {
return Double.parseDouble(next());
}
String nextLine() {
String str = "";
try {
str = br.readLine();
} catch (IOException e) {
e.printStackTrace();
}
return str;
}
}
}
출처