QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#690165#9528. New Energy VehicleSaltyJellYWA 78ms21688kbC++142.3kb2024-10-30 20:40:202024-10-30 20:40:21

Judging History

This is the latest submission verdict.

  • [2024-10-30 20:40:21]
  • Judged
  • Verdict: WA
  • Time: 78ms
  • Memory: 21688kb
  • [2024-10-30 20:40:20]
  • Submitted

answer

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

const int N = 1e5 + 10;

int T;
int n, m;
int nxt[N];
struct Battery{
    int lef, v, pos = INT_MAX, id;
    bool operator <(const Battery &x)const {
        return x.pos < pos;
    }
}a[N];
struct Charger{
    int x, t;
}b[N];

map<int, int>las;
priority_queue<Battery>q;
priority_queue<Battery>emp;
void solve() {
    scanf("%lld%lld", &n, &m);
    for(int i = 1; i <= n; ++i) {
        scanf("%lld", &a[i].v);
        a[i].lef = a[i].v; a[i].id = i;
        a[i].pos = INT_MAX;
    }
    for(int i = 1; i <= m; ++i) nxt[i] = 0;
    for(int i = 1; i <= m; ++i) {
        scanf("%lld%lld", &b[i].x, &b[i].t);
        if(a[b[i].t].pos == INT_MAX) {
            a[b[i].t].pos = i;
        }    
        if(las.find(b[i].t) != las.end()) {
            nxt[las[b[i].t]] = i;
        }
        las[b[i].t] = i;
    }
    
    for(int i = 1; i <= n; ++i) {
        q.push(a[i]);
    }
    int now = 0;
    for(int i = 1; i <= m; ++i) {
        Battery c = q.top();
        bool flag = 0;
        while(!q.empty()) {
            c = q.top(); q.pop();
            //printf("%lld %lld %lld\n", c.lef, c.id, c.pos);
            if(now + c.lef >= b[i].x) {
                flag = 1; break;
            }
            else {
                now += c.lef;
                c.lef = 0;
                emp.push(c);
            }
        }
        if(!flag && q.empty()) {
            break;
        }
        if(c.id == b[i].t) {
            c.lef = c.v; 
            c.pos = nxt[i] == 0 ? INT_MAX : nxt[i];
            now = b[i].x;
            q.push(c);
        }
        else {
            c.lef -= b[i].x - now;
            now = b[i].x;
            if(c.lef == 0) emp.push(c);
            else q.push(c);
            if((!emp.empty()) && emp.top().id == b[i].t) {
                Battery tmp = emp.top();
                tmp.pos = nxt[i] == 0 ? INT_MAX : nxt[i];
                tmp.lef = tmp.v; q.push(tmp);
            }
            
        }
    } 
    while(!q.empty()) {
        now += q.top().lef;
        q.pop();
    }
    while(!emp.empty()) emp.pop();
    las.clear();
    printf("%lld\n", now); 
}

signed main() {
    scanf("%lld", &T);
    while(T--) solve();
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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: 1ms
memory: 7084kb

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
Wrong Answer
time: 78ms
memory: 21688kb

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:

1515723
1574370
958909
1522470
1512704
1560242
536524
1544299
556934
539220

result:

wrong answer 1st lines differ - expected: '1543020', found: '1515723'