QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#780662#9528. New Energy Vehicleucup-team093#RE 0ms3624kbC++201.8kb2024-11-25 12:10:362024-11-25 12:10:46

Judging History

This is the latest submission verdict.

  • [2024-11-25 12:10:46]
  • Judged
  • Verdict: RE
  • Time: 0ms
  • Memory: 3624kb
  • [2024-11-25 12:10:36]
  • Submitted

answer

#include <bits/stdc++.h>
using namespace std;

using i64 = long long;

void modify(vector<int> &tr, int N, int p, int x) {
    tr[N + p] = x;
    for(int i = (N + p) / 2; i; i /= 2)
        tr[i] = min(tr[i * 2], tr[i * 2 + 1]);
}

int find(vector<int> &tr, int N) {
    int i = 1;
    while(i < N) {
        i *= 2;
        if(tr[i] > tr[i + 1]) i ++;
    }
    return i - N;
}

i64 solve() {
    int n, m;
    cin >> n >> m;
    vector<int> a(n), b;
    for(auto &x : a) cin >> x;
    b = a;

    int L = 1;
    while(L < n) L <<= 1;
    vector<int> tr(L * 2, INT_MAX - 1);

    vector<vector<int> > p(n);
    vector<pair<int, int> > gs(m);
    for(auto &[x, t] : gs)
        cin >> x >> t;
    reverse(gs.begin(), gs.end());
    for(auto &[x, t] : gs) {
        t --;
        p[t].push_back(x);
    }
    for(int i = 0; i < n; i ++) 
        if(p[i].size())
            modify(tr, L, i, p[i].back());
    i64 ans = 0;
    while(true) {
        int i = find(tr, L);
        //cout << "tr: ";
        //for(int x : tr) cout << x << " ";
        //cout << "\n";
        //cout << ans << " -> " << i << "\n";
        if(b[i] <= 0) return ans;

        if(gs.size() && gs.back().first <= ans + b[i]) {
            auto [x, t] = gs.back();
            gs.pop_back();
            
            b[i] -= x - ans;
            ans = x;
            if(b[i] == 0) modify(tr, L, i, INT_MAX);

            b[t] = a[t];
            p[t].pop_back();
            modify(tr, L, t, p[t].size() ? p[t].back() : INT_MAX - 1);
        }else{
            ans += b[i];
            b[i] = 0;
            modify(tr, L, i, INT_MAX);
        }
    }
    return ans;
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);

    int T;
    cin >> T;
    while(T --)
        cout << solve() << "\n";
}

詳細信息

Test #1:

score: 100
Accepted
time: 0ms
memory: 3624kb

input:

2
3 1
3 3 3
8 1
2 2
5 2
1 2
2 1

output:

12
9

result:

ok 2 lines

Test #2:

score: 0
Accepted
time: 0ms
memory: 3624kb

input:

6
3 2
2 2 2
6 1
7 1
2 2
3 3
2 1
6 2
2 3
2 2
5 1
7 2
9 1
2 2
3 3
2 1
6 2
1 1
999999999
1000000000 1
1 1
1000000000
1000000000 1

output:

9
11
4
11
999999999
2000000000

result:

ok 6 lines

Test #3:

score: -100
Runtime Error

input:

10
230 8042
599 1039 69 1011 1366 824 14117 1523 806 5002 332 55 3769 996 359 1040 255 1135 3454 3609 6358 2509 3695 8785 3890 1304 3394 14611 33 89 2245 508 22 1043 10411 628 1279 714 903 585 7413 5099 845 148 4689 2110 8683 1613 143 3263 2599 110 244 3297 4742 1571 425 1822 15692 572 9397 328 1691...

output:


result: