1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
#include <iostream>
#include <vector>
#include <list>

std::list<std::vector<long long>> miasta;

long long polacz(std::_List_iterator<std::vector<long long>> it) {
    auto pocz = it;
    long long ujemne = 0;
    if((*it)[1] < 0) {
        it++;
        while(it!=miasta.end() && (*it)[0] <= 0) {
            ++it;
        }
        if(it == miasta.end()) {
            return -2;
        }
        long long newval = (*pocz)[0] + (*it)[1] - (*pocz)[1];
        long long newl = (*it)[1];
        long long newr = (*pocz)[2];
        //auto przed = it;
        //przed++;
        it = miasta.erase(pocz, ++it);
        miasta.insert(it, {newval, newl, newr});
        if(newval >= 0) {
            ujemne++;
        }
    }
    else {
        it++;
        while(it!=miasta.end() && (*it)[0] <= 0) {
            ++it;
        }
        while(it!=miasta.end() && (*it)[0] <= 0);
        --it;
        --pocz;
        long long newval = (*it)[0] + (*pocz)[2] - (*it)[2];
        long long newl = (*pocz)[2];
        long long newr = (*it)[1];
        it = miasta.erase(pocz, ++it);
        miasta.insert(it, {newval, newl, newr});
        if(newval >= 0) {
            ujemne++;
        }
    }
    return ujemne;
}

int main() {
    long long n;
    std::cin >> n;
    long long suma = 0;
    long long ujemne = 0;
    for(long long i = 0; i < n; ++i) {
        long long el;
        std::cin >> el;
        suma+=el;
        if(el < 0) {
            ujemne++;
        }
        miasta.push_back({el, suma, 0});
    }
    suma = 0;
    for (auto it = miasta.rbegin(); it != miasta.rend(); it++) {
        suma += (*it)[0];
        (*it)[2] = suma;
    }
    /*for(long long j = 0; j < 3; ++j) {
        for (auto it2 : miasta) {
            std::cout << it2[j] << " ";
        }
        std::cout << std::endl;
    }*/
    bool znalazlem = true;
    if((*miasta.begin())[2] < 0) {
        std::cout << -1 << "\n";
        return 0;
    }
    while (ujemne > 0 && znalazlem) {
        znalazlem = false;
        auto it = miasta.begin();
        while(!znalazlem && it != miasta.end()) {
            if ((*it)[1] < 0 || (*it)[2] < 0) {
                znalazlem = true;
            }
            if(znalazlem) {
                long long dziala = polacz(it);
                if(dziala < -1) {
                    std::cout << -1 << "\n";
                    return 0;
                }
                ujemne -= dziala;
            }
            ++it;
        }
        /*for(long long j = 0; j < 3; ++j) {
            for (auto it2 : miasta) {
                std::cout << it2[j] << " ";
            }
            std::cout << std::endl;
        }*/
        //std::cout << ujemne << std::endl;
    }
    while(ujemne > 0) {
        auto it = miasta.begin();
        while((*it)[0] >= 0) {
            it++;
        }
        long long l = 0;
        long long r = 0;
        auto itr = it;
        itr++;
        while ((*itr)[0] == 0) {
            ++r;
            ++itr;
        }
        auto itl = it;
        itl--;
        while ((*itl)[0] == 0) {
            ++l;
            --itl;
        }
        if (l <= r) {
            long long newval = (*itl)[0] + (*it)[0];
            if(newval >= 0 || (*itl)[0] < 0) {
                ujemne--;
            }
            it = miasta.erase(itl, ++it);
            miasta.insert(it, {newval, 0, 0});
        } else {
            long long newval = (*itr)[0] + (*it)[0];
            if(newval >= 0 || (*itr)[0] < 0) {
                ujemne--;
            }
            it = miasta.erase(it, ++itr);
            miasta.insert(it, {newval, 0, 0});
        }
        /*for(long long j = 0; j < 3; ++j) {
            for (auto it2 : miasta) {
                std::cout << it2[j] << " ";
            }
            std::cout << std::endl;
            std::cout << ujemne << std::endl;
        }*/
    }
    std::cout << n - miasta.size() << "\n";
}