Submission #49160

# Submission time Handle Problem Language Result Execution time Memory
49160 2018-05-22T22:09:29 Z faishol27 Hacker (BOI15_hac) C++14
0 / 100
2 ms 460 KB
#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
#define PUB push_back

int N, dapat;
ll  data[500005],
    sliding = 0,
    ans = 0;
vector <ll> score;

int main(){
    ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);

    cin >> N;
    dapat = (N+1)/2;

    for(int i=0;i<N;i++){
        cin >> data[i];
    }

    for(int i=0;i<dapat;i++) sliding += data[i];
    score.PUB(sliding); 
    
    for(int i=1;i<N;i++){
        int right = (dapat+i-1)%N;
        sliding = sliding-data[i-1]+data[right];
        
        score.PUB(sliding);
    }

    sort(score.begin(), score.end());
    score.pop_back();
//    for(ll elm:score){
//        if(elm != score.back()) ans = max(ans, elm);
//    }

    cout << score.back() << endl;
}
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Output is correct
2 Incorrect 2 ms 376 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Output is correct
2 Incorrect 2 ms 376 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 412 KB Output is correct
2 Incorrect 2 ms 460 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Output is correct
2 Incorrect 2 ms 376 KB Output isn't correct
3 Halted 0 ms 0 KB -