답안 #1109484

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1109484 2024-11-06T20:27:16 Z Irate Bigger segments (IZhO19_segments) C++17
0 / 100
1 ms 336 KB
#include<bits/stdc++.h>
using namespace std;

int main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    int n;
    cin >> n;
    vector<int>v(n);
    for(int i = 0;i < n;++i){
        cin >> v[i];
    }
    long long S = 0;
    vector<long long>res = {v[0]};
    for(int i = 1;i < n;++i){
        S += v[i];
        if(S >= res.back()){
            res.push_back(S);
            S = 0;
        }
    }
    if(S){
        while(res.size() >= 2 && S + res[(int)res.size() - 1] < res[(int)res.size() - 2]){
            S += res[(int)res.size() - 1];
            res.pop_back();
        }
        if(S >= res.back())res.push_back(S);
    }
    cout << (int)res.size() << '\n';
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 336 KB Output is correct
2 Incorrect 1 ms 336 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 336 KB Output is correct
2 Incorrect 1 ms 336 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 336 KB Output is correct
2 Incorrect 1 ms 336 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 336 KB Output is correct
2 Incorrect 1 ms 336 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 336 KB Output is correct
2 Incorrect 1 ms 336 KB Output isn't correct
3 Halted 0 ms 0 KB -