본문 바로가기
PS/BOJ

[백준] 2559. 수열(c++)

by backend 개발자 지망생 2024. 4. 28.

https://www.acmicpc.net/problem/2559

 

처음에 이중포문으로 돌렸을 때, 시간초과가 났다.

누적합을 쓰기에 좋은 문제인 것을 알았고, 인덱스 설정하는데에 있어 에로사항이 있었다.


#include <iostream>
#include <vector>
#include <cmath>
#include <algorithm>
#include <map>
#include <queue>
#include <string>
#include <cstring>
using namespace std;

using ll = long long;

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);

	int n, count, ans = -99999999999;

	cin >> n >> count;

	vector<int> arr(n+1,0);

	int cnt =0;
	for (int i = 1; i <= n; i++) {
		cin >> arr[i];
		arr[i] += arr[i - 1];
	}

	for (int i = count; i <= n; i++) {
		int sum = arr[i] - arr[i - count];
		ans = max(sum, ans);
	}

	
	cout << ans;

	return 0;
}

'PS > BOJ' 카테고리의 다른 글

[백준] 15650. N과 M (2)(c++)  (1) 2024.04.28
[백준] 15649. N과 M (1)(c++)  (0) 2024.04.28
[백준] 15721. 번데기(c++)  (0) 2024.04.27
[백준] 5883. 아이폰 9S(c++)  (0) 2024.04.26
[백준] 15993. 1, 2, 3 더하기 8(c++)  (1) 2024.04.26