QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#766332 | #4898. 基础图论练习题 | hhoppitree | 28 | 1384ms | 31748kb | C++17 | 4.3kb | 2024-11-20 16:59:00 | 2024-11-20 16:59:00 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
const int P = 998244353;
const long long INF = 2e18;
void simpl(vector<long long> &x) {
sort(x.begin(), x.end()), x.erase(unique(x.begin(), x.end()), x.end());
}
typedef pair<long long, long long> Info;
long long calcCC(long long n, vector<long long> &D) {
priority_queue<Info, vector<Info>, greater<Info> > pq;
for (auto x : D) {
if (x) pq.push({x, x});
}
D.clear();
long long dlt = 0, res = 0;
while (!pq.empty()) {
auto [d0, ori] = pq.top(); pq.pop();
d0 -= dlt;
if (!d0 || d0 >= n) continue;
D.push_back(ori);
long long d1 = pq.empty() ? INF : pq.top().first - dlt, v = min(d1, n) / d0 * d0;
dlt += v, n -= v, pq.push({d0 + dlt, ori});
if (d0 > n) {
res = (res + d0 - n) % P;
}
}
simpl(D);
return (res + n) % P;
}
typedef vector<long long> Bundle;
typedef vector<Bundle> Meta;
vector<Info> getCC(long long n, vector<long long> D, Bundle x) {
priority_queue<long long, vector<long long>, greater<long long> > pq(D.begin(), D.end());
long long dlt = 0;
int m = x.size();
vector<Info> res;
for (int i = 0; i < m; ++i) res.push_back({x[i], x[i]});
while (!pq.empty()) {
auto d0 = pq.top(); pq.pop();
d0 -= dlt;
if (!d0 || d0 >= n) continue;
long long tn = n, d1 = pq.empty() ? INF : pq.top() - dlt, v = min(d1, n) / d0 * d0;
dlt += v, n -= v, pq.push(d0 + dlt);
for (auto &[a, b] : res) {
if (a >= tn || (a < d0 || a < n)) continue;
a -= (a - max(n, d0)) / d0 * d0;
if (a >= d0 && a >= n) a -= d0;
}
}
return res;
}
long long n, res;
vector<long long> ta;
vector< vector<long long> > D = {{}};
vector< array<long long, 3> > E2;
Meta split(int ver, Bundle x) {
if (x.empty()) return {};
Meta ret;
vector<Info> now = getCC(n, D[ver], x), z;
sort(now.begin(), now.end());
auto Rside = [&](auto vec) {
Bundle Ret;
for (auto [a, b] : vec) Ret.push_back(b);
return Ret;
};
for (auto [fi, se] : now) {
if (!z.empty() && fi != z.back().first) {
ret.push_back(Rside(z));
z.clear();
}
z.push_back({fi, se});
}
ret.push_back(Rside(z));
return ret;
}
void solve(int L, int R, Meta x) {
if (L > R || x.empty()) return;
if (L == R) {
for (auto tx : x) {
for (auto y : tx) {
if (y != tx[0]) res -= ta[L], E2.push_back({ta[L], y, tx[0]});
}
}
return;
}
int mid = (L + R) >> 1;
Meta le, ri;
for (auto tx : x) {
Meta dta = split(mid, tx);
for (auto y : dta) le.push_back(y);
Bundle pnt;
for (auto y : dta) pnt.push_back(y[0]);
if (!pnt.empty()) ri.push_back(pnt);
}
solve(L, mid, le), solve(mid + 1, R, ri);
}
signed main() {
int m1, m2; scanf("%lld%d%d", &n, &m1, &m2);
vector< pair<long long, long long> > E1(m1);
for (auto &[x, y] : E1) scanf("%lld%lld", &y, &x);
sort(E1.begin(), E1.end());
long long lst = n % P;
for (int i = 0; i < m1; ++i) {
ta.push_back(E1[i].first);
D.back().push_back(E1[i].second);
long long now = calcCC(n, D.back());
D.push_back(D.back());
assert(D.size() <= 100);
res = (res + (lst - now) % P * E1[i].first) % P;
lst = now;
}
E2.resize(m2);
vector<long long> pnt;
for (auto &[x, y, z] : E2) {
scanf("%lld%lld%lld", &y, &z, &x);
pnt.push_back(y), pnt.push_back(z);
}
simpl(pnt);
solve(0, m1 - 1, split(m1 - 1, pnt));
auto getId = [&](long long x) {
return lower_bound(pnt.begin(), pnt.end(), x) - pnt.begin();
};
sort(E2.begin(), E2.end());
vector<int> fa(pnt.size());
iota(fa.begin(), fa.end(), 0);
auto find = [&](auto self, int x) -> int {
return fa[x] == x ? x : self(self, fa[x]);
};
for (auto [x, y, z] : E2) {
y = find(find, getId(y)), z = find(find, getId(z));
if (y != z) res += x, fa[y] = z;
}
printf("%lld\n", (res % P + P) % P);
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 4
Accepted
Test #1:
score: 4
Accepted
time: 595ms
memory: 29164kb
input:
161199 9 46510 147335 540442844 159493 801351455 149342 821625305 128476 843250712 95524 275754315 139315 106523502 93575 680460786 155498 328812257 146020 410466645 79992 141967 50596784 152210 68644 268349216 72549 96959 42994091 93869 27394 945120577 2909 81886 270684270 12735 35026 871917997 974...
output:
359714743
result:
ok 1 number(s): "359714743"
Test #2:
score: 4
Accepted
time: 80ms
memory: 25064kb
input:
168549 9 49402 160577 34610415 114623 670751010 74448 676966248 53782 845469137 130729 375561046 31610 261496571 134601 154875802 136129 905308676 166248 499420220 69637 72676 875637640 160442 125460 1269794 146261 61770 714794725 137610 1291 490170432 162092 81850 488118013 106400 48193 276190368 4...
output:
520439176
result:
ok 1 number(s): "520439176"
Test #3:
score: 4
Accepted
time: 139ms
memory: 20832kb
input:
127164 9 45109 56483 490066497 70966 229077054 87305 993081887 72423 442762798 80262 200507011 101712 162752728 67532 590730535 44956 565466274 124237 429166816 13030 8906 742024040 97259 101468 187678659 13401 4301 143856524 125750 80473 258719294 106155 10339 592121345 120034 92354 50915550 112430...
output:
211463174
result:
ok 1 number(s): "211463174"
Test #4:
score: 4
Accepted
time: 1384ms
memory: 31748kb
input:
158784 9 48415 138305 177767002 147417 50196642 85527 776201932 144377 990389932 118355 310906417 145220 218744495 145002 132736644 51947 834751363 139733 839880491 158443 157692 159261414 111518 14927 747973081 37498 66196 69874791 11597 115114 22394413 16704 133459 109302190 112143 46551 813021872...
output:
151875883
result:
ok 1 number(s): "151875883"
Test #5:
score: 4
Accepted
time: 140ms
memory: 8504kb
input:
111371 0 45933 13298 59545 852258097 94111 54245 459369673 40744 23311 644404848 37039 92443 220984611 17374 43165 421794343 57652 57965 470479953 62977 14481 563172671 102144 3471 36594913 46628 43278 11508424 55965 80136 777230453 56962 35374 349098036 34825 27995 339605509 43021 17657 780921827 5...
output:
92500087
result:
ok 1 number(s): "92500087"
Subtask #2:
score: 0
Runtime Error
Dependency #1:
100%
Accepted
Test #6:
score: 0
Runtime Error
input:
191116 49595 45279 87483 815631830 153579 433065789 167569 346797140 98560 154881536 170720 13622837 133236 561208103 155537 421316363 140536 514298139 6005 986290017 154400 85233907 166826 351094521 174419 304435906 173900 61174962 112778 693574534 104503 745038995 134920 31228457 117606 662581798 ...
output:
result:
Subtask #3:
score: 6
Accepted
Test #11:
score: 6
Accepted
time: 0ms
memory: 4024kb
input:
569435269457904707 2 0 490445920091092693 772271583 144842828305643603 609043885
output:
884694794
result:
ok 1 number(s): "884694794"
Test #12:
score: 6
Accepted
time: 0ms
memory: 4060kb
input:
946929772456816659 2 0 589193907831915013 196301185 485768367910597533 207014034
output:
790540706
result:
ok 1 number(s): "790540706"
Test #13:
score: 6
Accepted
time: 0ms
memory: 3780kb
input:
693038683299151358 2 0 654733556025919068 724998910 450253521190874799 187460097
output:
122292064
result:
ok 1 number(s): "122292064"
Test #14:
score: 6
Accepted
time: 0ms
memory: 3736kb
input:
572269482188906358 2 0 545978502848607475 331750201 488577730099900109 477584735
output:
429885702
result:
ok 1 number(s): "429885702"
Test #15:
score: 6
Accepted
time: 0ms
memory: 3844kb
input:
984888155303961325 2 0 421568681423492040 823358650 324408005979881943 905919848
output:
551223124
result:
ok 1 number(s): "551223124"
Test #16:
score: 6
Accepted
time: 0ms
memory: 3780kb
input:
968068649251960108 2 0 932666179822285222 303897491 422068063538287737 405622211
output:
516717723
result:
ok 1 number(s): "516717723"
Test #17:
score: 6
Accepted
time: 0ms
memory: 3804kb
input:
973235486287221374 2 0 604729607242747292 566399250 440704799734330948 93237801
output:
772791524
result:
ok 1 number(s): "772791524"
Test #18:
score: 6
Accepted
time: 0ms
memory: 3804kb
input:
980842002786834388 2 0 921076927921054095 989436809 917078581302025088 354268450
output:
387335763
result:
ok 1 number(s): "387335763"
Test #19:
score: 6
Accepted
time: 0ms
memory: 3780kb
input:
584600268153835325 2 0 436736455094118542 788823700 379215887395241676 440751386
output:
178749302
result:
ok 1 number(s): "178749302"
Test #20:
score: 6
Accepted
time: 0ms
memory: 3784kb
input:
984888155303961325 2 0 421568681423492040 823358650 324408005979881943 905919848
output:
551223124
result:
ok 1 number(s): "551223124"
Subtask #4:
score: 18
Accepted
Dependency #3:
100%
Accepted
Test #21:
score: 18
Accepted
time: 57ms
memory: 21828kb
input:
569435269457904707 2 48002 490445920091092693 772271583 144842828305643603 609043885 71626464779726163 20936760728342582 933619218 254533877531926689 561120543297327423 444805145 102181371350776436 64807827761321835 63236550 442490347461393187 274703226312639148 379888813 153103619447430279 56932615...
output:
264605976
result:
ok 1 number(s): "264605976"
Test #22:
score: 18
Accepted
time: 57ms
memory: 22192kb
input:
504260032580621389 2 49361 270823699250720124 30858888 336528726133157676 686676838 411951311400351555 331964440631830249 849153007 395362490592741772 476242043133170955 233632950 183299785979517028 300783233878432816 890373397 101096990546501308 294220083765028120 482548478 30494794811726538 492575...
output:
374280020
result:
ok 1 number(s): "374280020"
Test #23:
score: 18
Accepted
time: 48ms
memory: 21840kb
input:
908984547406193258 2 49006 553146168947167785 921235648 439052241502823206 685482302 602040034167963673 319806281814227523 602421493 889680730869149610 662785644521343266 319100701 855861307841385482 123218837422189032 958395288 789474388061739888 886525713531875881 485625803 506682328285523072 8679...
output:
411258291
result:
ok 1 number(s): "411258291"
Test #24:
score: 18
Accepted
time: 57ms
memory: 20812kb
input:
645595087071518014 2 46364 502798671238091149 130131399 324145073511001064 249141640 529562079328876365 298584769486918994 793053817 104449532477780267 612956797119263913 599706657 537335025824879813 509591120306867932 422994501 3573858933523744 362779176725767538 466503134 355006270273722975 606167...
output:
3939553
result:
ok 1 number(s): "3939553"
Test #25:
score: 18
Accepted
time: 63ms
memory: 21764kb
input:
719221297460377128 2 47571 344669347369453785 109414971 630436210393683647 527587080 494442208767214644 568762326175380228 274970054 57477492106404787 655245493834324395 382109587 22155928017304041 59482593547715744 873161380 187440545343246007 190303544007160534 159038457 506940482480256741 6413591...
output:
70514973
result:
ok 1 number(s): "70514973"
Test #26:
score: 18
Accepted
time: 54ms
memory: 20392kb
input:
895088201401004405 2 45041 276028463639596405 456551182 805436189268999970 73771 21429629043534406 631368195310636941 265763227 662737085246639506 143087521945488388 635548439 377675072184922400 804129509385729008 716798383 350029179084366085 117553290957648227 20894738 122339684090997249 7205501057...
output:
559035760
result:
ok 1 number(s): "559035760"
Test #27:
score: 18
Accepted
time: 66ms
memory: 17840kb
input:
853901589698398947 2 47600 504553695105130092 847799116 138986940711272376 645918409 805868840752605206 78417023376575599 841040724 729516722093143233 218204564225574757 336393903 730920155682863361 695576676583032360 406662382 387801338291686723 202931704070108854 337663750 247673343610665743 24573...
output:
20383713
result:
ok 1 number(s): "20383713"
Test #28:
score: 18
Accepted
time: 57ms
memory: 21100kb
input:
670502957421329993 2 45217 483745611802893710 733999054 668071203574411469 828666336 420971137268931813 366553146611242395 965231439 287424331604163221 506949430264341972 601249827 149442959137057706 557729764807337099 145435283 24271514949210121 655375054865364550 969273095 570625553631888431 32471...
output:
937105664
result:
ok 1 number(s): "937105664"
Test #29:
score: 18
Accepted
time: 64ms
memory: 21904kb
input:
563845195733711553 2 48989 229866420401531786 558292747 545061569237416562 6907852 132266473456293640 75289038464304103 118029834 32731247863057693 356593250668739234 378210865 66114516634328274 92146176364809198 445824305 231042900349456054 325921825145329565 425319020 423843183122176900 5050925061...
output:
651838351
result:
ok 1 number(s): "651838351"
Test #30:
score: 18
Accepted
time: 44ms
memory: 20572kb
input:
804068805652796381 2 45790 713896086745970460 932094415 451836086076043686 180589234 797324209326094324 458554421458651867 300552452 666099368215435761 398615680976044224 517160772 93127604003167259 65073324216076012 364948453 746562120109527370 478791782647716593 625536788 584650813747492507 584407...
output:
91959720
result:
ok 1 number(s): "91959720"
Subtask #5:
score: 0
Runtime Error
Test #31:
score: 0
Runtime Error
input:
755526150476311190 942 0 492334667739348527 1 755523898623296976 1 532486636690994793 1 755526150476030559 1 755526150476249097 1 502164090270592200 1 657422656495814703 1 487200614853438190 1 311037325561173142 1 755526150475651155 1 125287404340238660 1 755524914808674090 1 755526150476177007 1 75...
output:
result:
Subtask #6:
score: 0
Skipped
Dependency #3:
100%
Accepted
Dependency #5:
0%
Subtask #7:
score: 0
Skipped
Dependency #3:
100%
Accepted
Dependency #5:
0%
Subtask #8:
score: 0
Skipped
Dependency #5:
0%
Subtask #9:
score: 0
Skipped
Dependency #1:
100%
Accepted
Dependency #2:
0%