QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#749277#9528. New Energy VehicleDung1604RE 2ms9660kbC++172.5kb2024-11-14 23:19:342024-11-14 23:19:35

Judging History

This is the latest submission verdict.

  • [2024-11-14 23:19:35]
  • Judged
  • Verdict: RE
  • Time: 2ms
  • Memory: 9660kb
  • [2024-11-14 23:19:34]
  • Submitted

answer

#include <iostream>
#include <vector>
#include <queue>
#define ll long long
#define int long long
#define inf 100000000
#define mod 998244353
using namespace std;

ll a[200005];
ll b[200005];
ll last[200005];
vector<vector<ll>> Time(200005);
void solve(){
    int n, m;
    cin >>n >> m;
    vector<pair<ll, ll>> recharge(m + 1);
    ll sum = 0;
    for(int i = 1; i <= n; i++){
        Time[i].clear();
        cin >> a[i];
        sum += a[i];
        b[i] = a[i];
    }
    priority_queue<pair<ll, ll>, vector<pair<ll, ll>> , greater<pair<ll, ll>> > pq;
    
    for(int i = 1; i <= m; i++){
        cin >> recharge[i].first>> recharge[i].second;
        Time[recharge[i].second].push_back(i);
        if(Time[recharge[i].second].size() == 1){
            pq.push({i, 0});
        }
        
    }
    for(int i = 1; i <= n; i++){
        if(Time[i].size() > 0 ){
            
            sum -= a[i];
        }
        else{
            
        }
    }
    int cur = 0;
    for(int i = 1; i <=m ; i++){
        int s = recharge[i].first - cur;
        int id = pq.top().second;
        while(!pq.empty()){
            int idx = pq.top().first;
            int nxt = pq.top().second;
            int pos = recharge[idx].second;
            
            pq.pop();
            if(s < b[pos]){
                b[pos] -= s;
                cur += s;
                s = 0;
                
                if(idx != i){
                    
                    pq.push({idx, nxt});
                }
                
                break;
            }
            else{
                cur += b[pos];
                s -= b[pos];
                b[pos] = 0;
                
            } 
        }
        if(s > 0){
            if(sum >= s){
                sum -= s;
            }
            else{
                cur += sum;
                
                sum = 0;
                break;
            }
        }
        cur = recharge[i].first;
        if(Time[recharge[i].second].size() -1 == id){
            sum += a[recharge[i].second];
        }
        else{
            
            pq.push({Time[recharge[i].second][id+ 1], id + 1});
            b[recharge[i].second] = a[recharge[i].second];
        }

    }
    
    cout << cur + sum << endl;
    
    
}

signed main(){
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);
    int t;
    cin >> t;
    while(t--){
        solve();
    }
    
     
}

详细

Test #1:

score: 100
Accepted
time: 2ms
memory: 9660kb

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: 9660kb

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:

999887
999997
1102751
999720
999848
999878

result: