Submission #1177473


Source Code Expand

#include<cstdio>
#include<cstdlib>
#include<cmath>
#include<iostream>
#include<string>
#include<stack>
#include<queue>
#include<vector>
#include<map>
#include<set>
#include<algorithm>
 
#define rep(n) for(int i=0;i<n;i++)
#define repp(j, n) for(int j=0;j<n;j++)
#define reppp(i, m, n) for(int i=m;i<=n;i++)
#define all(c) c.begin(), c.end()
#define MOD 1000000007
#define MAX 1000000001
#define INF 1410065408
 
using namespace std;
typedef long long ll;
typedef pair<ll, ll> P;
struct edge{int from, to; ll cost;};
int N;
 
int main(){
    ll N, K;
	cin >> N >> K;
	vector<ll> a(N), b(N);
	rep(N){
		ll tmp;
		cin >> tmp;
		if(i == 0){
			if(tmp > 0){
				b[0] = tmp;
			}else{
				b[0] = 0;
			}
			a[0] = tmp;
		}else{
			if(tmp > 0){
				b[i] = b[i-1] + tmp;
			}else{
				b[i] = b[i-1];
			}
			a[i] = a[i-1] + tmp;
		}
	}

	ll ans = b[N-1] - b[K-1];
	if(a[K-1] > 0) ans += a[K-1];
	reppp(i, K, N-1){
		ll tmp = b[i-K] + b[N-1] - b[i];
		if(a[i] - a[i-K] > 0) tmp += a[i] - a[i-K];
		if(tmp > ans) {
			ans = tmp;
		}
	}
	cout << (ans>0?ans:0) << endl;
}

Submission Info

Submission Time
Task A - Simple Calculator
User Noimin
Language C++14 (GCC 5.4.1)
Score 0
Code Size 1119 Byte
Status RE
Exec Time 1867 ms
Memory 438656 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 300
Status
WA × 2
RE × 1
WA × 2
MLE × 1
RE × 11
Set Name Test Cases
Sample 0_00.txt, 0_01.txt, 0_02.txt
All 0_00.txt, 0_01.txt, 0_02.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 1_04.txt, 1_05.txt, 1_06.txt, 1_07.txt, 1_08.txt, 1_09.txt, 1_10.txt
Case Name Status Exec Time Memory
0_00.txt WA 1 ms 256 KB
0_01.txt WA 1 ms 256 KB
0_02.txt RE 97 ms 256 KB
1_00.txt RE 97 ms 256 KB
1_01.txt RE 97 ms 256 KB
1_02.txt RE 96 ms 256 KB
1_03.txt MLE 406 ms 438656 KB
1_04.txt RE 98 ms 256 KB
1_05.txt RE 97 ms 256 KB
1_06.txt RE 1867 ms -969344 KB
1_07.txt RE 99 ms 256 KB
1_08.txt RE 97 ms 256 KB
1_09.txt RE 97 ms 256 KB
1_10.txt RE 97 ms 256 KB