QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#686485 | #9528. New Energy Vehicle | galiyuu | WA | 29ms | 6564kb | C++14 | 1.1kb | 2024-10-29 13:47:59 | 2024-10-29 13:48:00 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define rep(i,a,n) for(int i=a;i<n;i++)
#define per(i,a,n) for(int i=n-1;i>=a;i--)
#define pb push_back
#define mp make_pair
#define eb emplace_back
#define all(x) (x).begin(),(x).end()
#define fi first
#define se second
#define endl '\n'
#define SZ(x) ((int)(x).size())
typedef vector<int> vi;
typedef vector<long long> vl;
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
typedef double db;
mt19937 mrand(random_device{}());
int rnd(int x) {return mrand()%x;}
const ll mod=998244353;
// head
const int N=1e5+10;
ll n,m;
ll a[N];
void solve() {
cin>>n>>m;
ll pa=0;
rep(i,1,n+1) cin>>a[i],pa+=a[i];
vector<pll> ls(m+1);
rep(i,1,m+1) {
cin>>ls[i].fi>>ls[i].se;
}
sort(all(ls),[&](pii a,pii b){
return a.fi<b.fi;
});
vl p(n+1);
ll res=pa,L=0,rc=0;
rep(i,1,m+1) {
ll nl=ls[i].fi,na=ls[i].se;
if (res<nl) break;
ll c=min(a[na],nl-rc+p[na]);
p[na]=c-nl;
L=nl,res+=c,rc+=c;
}
cout<<res<<endl;
}
int tc;
signed main() {
ios::sync_with_stdio(0);
cout.tie(0);
cin>>tc;
while (tc--) solve();
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3552kb
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: 3604kb
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: 29ms
memory: 6564kb
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:
521549 554959 522541 515963 546287 553973 571019 530155 557546 546834
result:
wrong answer 1st lines differ - expected: '1543020', found: '521549'