Submission #1484561


Source Code Expand

#include <bits/stdc++.h>
#include <cstdio>
#include <cstdlib>
 
#ifdef _MSC_VER
#include <Windows.h>
#else
#include <unistd.h>
#endif
 
using namespace std;
 
//conversion
//------------------------------------------
inline int toInt(string s) {int v; istringstream sin(s);sin>>v;return v;}
template<class T> inline string toString(T x) {ostringstream sout;sout<<x;return sout.str();}
 
//math
//-------------------------------------------
template<class T> inline T sqr(T x) {return x*x;}
 
//typedef
//------------------------------------------
typedef pair<int, int> PII;
typedef pair<long, long> PLL;
typedef long long LL;
//container util
//------------------------------------------
#define ALL(a)  (a).begin(),(a).end()
#define RALL(a) (a).rbegin(), (a).rend()
#define PB emplace_back
#define MP make_pair
#define SZ(a) int((a).size())
#define SORT(c) sort((c).begin(),(c).end())
 
//repetition
//------------------------------------------
#define FOR(i,a,b) for(LL i=(a);i<(b);++i)
#define REP(i,n)  FOR(i,0,n)
 
//constant
//--------------------------------------------
const double EPS = 1e-10;
const double PI  = acos(-1.0);
const LL MOD=(LL)1e9+7;
//clear memory
#define CLR(a) memset((a), 0 ,sizeof(a))
 
#define INF 1LL << 50
 

int main(){
    LL N,K;
    cin>>N>>K;
    vector<LL>a(N),b(N+1),c(N+1);
    REP(i,N)cin>>a[i];
    b[0]=0;
    c[0]=0;
    REP(i,N){
        b[i+1]=b[i]+a[i];
        c[i+1]=c[i]+max(a[i],0LL);
    }
    LL res=0;
    REP(i,N-K+1){
        LL tmp1=max(b[i+K]-b[i],0LL);
        LL tmp2=c[i]+(c[N]-c[i+K]);
        //cout<<i<<" "<<tmp1<<" "<<tmp2<<endl;
        res=max(res,tmp1+tmp2);
    }
    cout<<res<<endl;
    return 0;
}

Submission Info

Submission Time
Task B - Contiguous Repainting
User blue0620
Language C++14 (GCC 5.4.1)
Score 400
Code Size 1742 Byte
Status AC
Exec Time 50 ms
Memory 2560 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 400 / 400
Status
AC × 4
AC × 26
Set Name Test Cases
Sample 0_00.txt, 0_01.txt, 0_02.txt, 0_03.txt
All 0_00.txt, 0_01.txt, 0_02.txt, 0_03.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, 1_11.txt, 1_12.txt, 1_13.txt, 1_14.txt, 1_15.txt, 1_16.txt, 1_17.txt, 1_18.txt, 1_19.txt, 1_20.txt, 1_21.txt
Case Name Status Exec Time Memory
0_00.txt AC 5 ms 768 KB
0_01.txt AC 1 ms 256 KB
0_02.txt AC 1 ms 256 KB
0_03.txt AC 1 ms 256 KB
1_00.txt AC 1 ms 256 KB
1_01.txt AC 1 ms 256 KB
1_02.txt AC 1 ms 256 KB
1_03.txt AC 18 ms 2560 KB
1_04.txt AC 45 ms 2560 KB
1_05.txt AC 48 ms 2560 KB
1_06.txt AC 42 ms 2560 KB
1_07.txt AC 43 ms 2560 KB
1_08.txt AC 44 ms 2560 KB
1_09.txt AC 43 ms 2560 KB
1_10.txt AC 43 ms 2560 KB
1_11.txt AC 43 ms 2560 KB
1_12.txt AC 43 ms 2560 KB
1_13.txt AC 43 ms 2560 KB
1_14.txt AC 42 ms 2560 KB
1_15.txt AC 44 ms 2560 KB
1_16.txt AC 43 ms 2560 KB
1_17.txt AC 42 ms 2560 KB
1_18.txt AC 43 ms 2560 KB
1_19.txt AC 47 ms 2560 KB
1_20.txt AC 50 ms 2560 KB
1_21.txt AC 43 ms 2560 KB