QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#695110 | #9528. New Energy Vehicle | Scarlett_boy# | WA | 39ms | 6280kb | C++17 | 2.3kb | 2024-10-31 19:20:39 | 2024-10-31 19:20:39 |
Judging History
answer
#include "bits/stdc++.h"
typedef long long ll;
using namespace std;
const int N = 2e5 + 10;
int main() {
int T;
scanf("%d", &T);
while (T--) {
int n, m;
scanf("%d%d", &n, &m);
vector<int> a(n + 1), x(m + 2), t(m + 2);
t[m + 1] = n + 1;
int asdf = 0;
for (int i = 1; i <= n; i++)scanf("%d", &a[i]);
for (int i = 1; i <= m; i++)scanf("%d%d", &x[i], &t[i]);
vector<int> nxt(m + 1), col(n + 1);
vector<ll> leftpower(n + 2);
for (int i = 1; i <= n; i++)leftpower[i] = a[i];
for (int i = m; i >= 1; i--) {
if (col[t[i]] == 0)nxt[i] = -1;
else nxt[i] = col[t[i]];
col[t[i]] = i;
}
priority_queue<int, vector<int>, greater<int> > q;
for (int i = 1; i <= n; i++) {
if (col[i]) {
q.push(col[i]);
// printf("push=%d\n", i);
} else {
leftpower[n + 1] += a[i];
leftpower[i] = 0;
}
}
ll nowpos = 0;
q.push(m + 1);
for (int i = 1; i <= m; i++) {
while (!q.empty()) {
int p = q.top();//下一个充电站位置
q.pop();
// printf("p=%d\n", p);
if (nowpos + leftpower[t[p]] >= x[i])leftpower[t[p]] -= x[i] - nowpos, nowpos = x[i];
else nowpos += leftpower[t[p]], leftpower[t[p]] = 0;
if (nowpos == x[i])break;
}
if (nowpos < x[i])break;
if (nxt[i] != -1)q.push(nxt[i]), leftpower[t[i]] = a[t[i]];
else {
leftpower[n + 1] += a[t[i]];
leftpower[t[i]] = 0;
}
q.push(m + 1);
// for (int j = 1; j <= n + 1; j++) {
// printf("nowpos=%d leftpower[%d]=%d\n", nowpos, j, leftpower[j]);
// }
if (i == m) {
for (int j = 1; j <= n + 1; j++) {
nowpos += leftpower[j];
// printf("leftpower[%d]=%d\n", j, leftpower[j]);
}
}
}
printf("%lld\n", nowpos);
}
return 0;
}
/*
*
2
3 1
3 3 3
8 1
2 2
5 2
1 2
2 1
*
*/
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3768kb
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: 3796kb
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: 39ms
memory: 6280kb
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:
293636 637856 1238428 440391 545083 573980 684487 328960 833050 735568
result:
wrong answer 1st lines differ - expected: '1543020', found: '293636'