QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#317197 | #6692. Building Company | sqz | TL | 3ms | 14828kb | C++14 | 1.9kb | 2024-01-28 17:42:30 | 2024-01-28 17:42:30 |
Judging History
answer
#include<cmath>
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<queue>
#include<unordered_map>
using namespace std;
const int N = 300000;
int t[N + 5], u[N + 5], m[N + 5], k[N + 5];
vector<pair<int, int> > c[N + 5];
unordered_map<int, long long> cnt;
queue<int> Q;
unordered_map<int, priority_queue<pair<int, int> > > X;
int main()
{
int g, num = 0;
scanf("%d", &g);
for (int i = 1; i <= g; i++) {
scanf("%d %d", &t[i], &u[i]);
}
int n;
scanf("%d", &n);
for (int i = 1; i <= n; i++)
{
scanf("%d", &m[i]);
for (int j = 1; j <= m[i]; j++) {
int aa, bb;
scanf("%d %d", &aa, &bb);
X[aa].push(make_pair(-bb, i));
}
scanf("%d", &k[i]);
for (int j = 1; j <= k[i]; j++) {
int cc, dd;
scanf("%d %d", &cc, &dd);
c[i].push_back(make_pair(cc, dd));
}
}
int ans = 0;
for (int i = 1; i <= n; i++)
if (m[i] <= 0) Q.push(i);
for (int i = 1; i <= g; i++)
{
long long &val = cnt[t[i]];
val += u[i];
priority_queue<pair<int, int> > &heap = X[t[i]];
while (-heap.top().first <= val)
{
int cur = heap.top().second;
if ((--m[cur]) <= 0) Q.push(cur);
heap.pop();
}
}
while (!Q.empty())
{
int i = Q.front();
Q.pop();
ans++;
for (pair<int, int> j : c[i])
{
long long &val = cnt[j.first];
val += j.second;
priority_queue<pair<int, int> > &heap = X[j.first];
while (!heap.empty() && -heap.top().first <= val)
{
int nxt = heap.top().second;
if ((--m[nxt]) <= 0) Q.push(nxt);
heap.pop();
}
}
}
printf("%d\n", ans);
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 3ms
memory: 14828kb
input:
2 2 1 1 2 5 1 3 1 0 2 1 1 2 1 2 3 2 2 1 3 1 5 2 3 3 4 1 2 5 3 2 1 1 1 3 4 1 1 3 0 1 3 2
output:
4
result:
ok 1 number(s): "4"
Test #2:
score: 0
Accepted
time: 3ms
memory: 14408kb
input:
3 610031727 590328742 816793299 18485566 654221125 47823436 10 3 610031727 224714165 816793299 491951703 654221125 593479446 1 610031727 538596643 1 610031727 551036304 3 816793299 262985484 610031727 52580932 654221125 424397787 1 654221125 889197190 3 654221125 126924193 610031727 963399336 816793...
output:
10
result:
ok 1 number(s): "10"
Test #3:
score: 0
Accepted
time: 0ms
memory: 14272kb
input:
10 720543365 814021419 777649737 273919247 339754140 472967790 545693058 298289557 949226024 176807538 267294560 819212220 337794335 504610276 137418995 614590802 632556957 783062334 587607535 115519693 100 5 949226024 327424834 777649737 117746775 137418995 152960310 720543365 423301366 267294560 4...
output:
100
result:
ok 1 number(s): "100"
Test #4:
score: 0
Accepted
time: 0ms
memory: 13880kb
input:
33 598906111 952747266 214206082 308472115 773699301 71970369 334282917 266176016 861160505 745480638 397625705 130382274 75028923 106125916 739923352 754152044 493886549 212094717 352869179 727757279 697376464 343501623 916521518 80952344 90959088 722016125 286878647 329186592 770901193 30277256 92...
output:
100
result:
ok 1 number(s): "100"
Test #5:
score: -100
Time Limit Exceeded
input:
380 562284409 583959039 705240193 694592025 91058796 151967354 775570098 571811699 457579493 117213529 684664737 33837962 60865228 186423701 316573783 868301583 744570505 934432338 790259030 364551324 145817136 961903964 737096543 759008968 865899868 681823261 273067044 247683791 186025557 756452454...