QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#144312 | #4918. 染色 | heyangyang | 40 | 882ms | 191624kb | C++14 | 4.5kb | 2023-08-21 16:15:22 | 2023-08-21 16:15:23 |
Judging History
answer
#include<bits/stdc++.h>
#define LL long long
#define eb emplace_back
#define IN inline
#define UL unsigned long long
using namespace std;
const int N = 3e5 + 5;
int n, m;
IN LL read() {
LL t = 0,res = 0; char ch = getchar();
for (; !isdigit(ch); ch = getchar()) t |= (ch == '-');
for (; isdigit(ch); ch = getchar()) res = (res << 3) + (res << 1) + (ch ^ 48);
return t ? -res : res;
}
struct heap{
priority_queue<int, vector<int>, greater<int> > A,B;
void Insert(int x){A.push(x);}
void Del(int x){B.push(x);}
int Top() {
while (!A.empty() && !B.empty() && A.top() == B.top()) A.pop(), B.pop();
if (A.empty()) return (int)1e9;
return A.top();
}
}f[N << 2];
struct nd{int z, c;}mn[N << 2];
UL sum[N << 2], tag[2][N << 2];
void getplus(int l, int r, int k, UL z, int fl) {
if (fl == 0) tag[0][k] += z, sum[k] += (UL)mn[k].c * z;
else tag[1][k] += z, sum[k] += (UL)(r - l + 1) * z;
}
void pushdown(int k, int l, int r) {
int mid = l + r >> 1;
if (tag[0][k] != 0) {
int z = f[k].Top();
if (z == mn[k].z) tag[1][k] += tag[0][k];
else {
if (mn[k << 1].z == mn[k].z) getplus(l, mid, k << 1, tag[0][k], 0);
if (mn[k << 1 | 1].z == mn[k].z) getplus(mid + 1, r, k << 1 | 1, tag[0][k], 0);
}
tag[0][k] = 0;
}
if (tag[1][k] != 0) {
getplus(l, mid, k << 1, tag[1][k], 1);
getplus(mid + 1, r, k << 1 | 1, tag[1][k], 1);
tag[1][k] = 0;
}
}
nd Min(nd x, nd y) {
if (x.z < y.z) return x;
if (x.z == y.z) return nd{x.z, x.c + y.c};
if (x.z > y.z) return y;
}
void pushup(int k, int l, int r, int fl) {
mn[k] = nd{(int)1e9, 0};
if (l ^ r) mn[k] = Min(mn[k], mn[k << 1]), mn[k] = Min(mn[k], mn[k << 1 | 1]);
int z = f[k].Top();
if (mn[k].z >= z) mn[k] = nd{z, r - l + 1};
if (fl) sum[k] = sum[k << 1] + sum[k << 1 | 1];
}
void update(int l, int r, int k, int L, int R, int x, int fl) {
if (L > R) return;
pushdown(k, l, r);
if (L <= l && r <= R) {
if (fl == 1) f[k].Insert(x); else f[k].Del(x);
pushup(k, l, r, 0);
return;
}
int mid = l + r >> 1;
if (L <= mid) update(l, mid, k << 1, L, R, x, fl);
if (R > mid) update(mid + 1, r, k << 1 | 1, L, R, x, fl);
pushup(k, l, r, 1);
}
void addmn(int l, int r, int k, int L, int R, int z, UL v, int mz) {
if (L <= l && r <= R) {
if (mz == z) getplus(l, r, k, v, 1);
else if (mn[k].z == z) getplus(l, r, k, v, 0);
return;
}
int mid = l + r >> 1, val = f[k].Top(); pushdown(k, l, r);
if (L <= mid) addmn(l, mid, k << 1, L, R, z, v, min(mz, val));
if (R > mid) addmn(mid + 1, r, k << 1 | 1, L, R, z, v, min(mz, val));
pushup(k, l, r, 1);
}
int getmn(int l, int r, int k, int L, int R) {
if (L <= l && r <= R) return min(f[k].Top(), mn[k].z);
int mid = l + r >> 1, res = f[k].Top(); pushdown(k, l, r);
if (L <= mid) res = min(res, getmn(l, mid, k << 1, L, R));
if (R > mid) res = min(res, getmn(mid + 1, r, k << 1 | 1, L, R));
return res;
}
UL query(int l, int r, int k, int L, int R) {
if (L <= l && r <= R) return sum[k];
int mid = l + r >> 1; UL res = 0; pushdown(k, l, r);
if (L <= mid) res += query(l, mid, k << 1, L, R);
if (R > mid) res += query(mid + 1, r, k << 1 | 1, L, R);
return res;
}
struct odt{
int l, r;
friend bool operator < (odt x, odt y){return x.l < y.l;}
}a[N];
set<odt> T[N];
void change(int id, int l, int r, int z) {
auto it = T[id].upper_bound(odt{l, 0});
if (it != T[id].begin()) it--;
if (it->r < l) it++;
auto itl = it; int cnt = 0;
while (it != T[id].end()) {
if (it->l > r) break;
a[++cnt] = *it, update(1, n, 1, it->l, it->r, id, -1);
it++;
}
if (cnt) {
T[id].erase(itl, it);
if (a[1].l < l)
update(1, n, 1, a[1].l, l - 1, id, 1), T[id].insert(odt{a[1].l, l - 1});
if (a[cnt].r > r)
update(1, n, 1, r + 1, a[cnt].r, id, 1), T[id].insert(odt{r + 1, a[cnt].r});
}
if (z == 0) T[id].insert(odt{l, r}), update(1, n, 1, l, r, id, 1);
}
void build(int l, int r, int k) {
mn[k] = nd{(int)1e9, r - l + 1}, f[k].Insert((int)1e9);
if (l == r) return; int mid = l + r >> 1;
build(l, mid, k << 1), build(mid + 1, r, k << 1 | 1);
}
int main() {
n = read(), m = read(), build(1, n, 1), mn[1] = nd{1, n};
for (int i = 1; i <= m; i++) f[1].Insert(i), T[i].insert(odt{1, n});
for (int i = 1; i <= m; i++) {
int opt = read(), l = read(), r = read(); LL x;
if (opt == 1) x = read(), change(x, l, r, 1);
if (opt == 2) x = read(), change(x, l, r, 0);
if (opt == 3) {
x = read();
int z = getmn(1, n, 1, l, r);
addmn(1, n, 1, l, r, z, x, (int)1e9);
}
if (opt == 4) {
UL ans = query(1, n, 1, l, r);
printf("%llu\n", ans);
}
}
}
详细
Subtask #1:
score: 10
Accepted
Test #1:
score: 10
Accepted
time: 11ms
memory: 100064kb
input:
1000 1000 3 722 914 2141556875752121755 3 323 347 6433743606947304931 2 142 206 439 2 117 840 195 2 127 502 56 3 168 707 15142638115094015116 4 190 257 2 88 976 475 1 319 867 351 1 682 889 409 2 406 446 196 3 28 35 4899387534800369959 2 291 546 150 1 528 617 128 1 58 122 251 2 381 400 276 4 510 958 ...
output:
15128467772367689008 17361914246216994339 5483226026482017320 3033562207293358603 2081407883485577238 7431958406282818646 4664359672511637691 8517692808398202534 17884251128335023776 3389445997760709607 15161173652136060523 17246899135664170339 16659472119973467421 5618344994614112283 92650283427734...
result:
ok 288 tokens
Test #2:
score: 0
Accepted
time: 20ms
memory: 97960kb
input:
1000 1000 1 538 681 44 2 112 540 10 1 160 191 28 1 276 867 1 4 118 419 4 62 209 1 575 884 37 1 783 895 45 4 342 410 2 545 870 16 1 273 501 11 3 258 352 13270291835335737625 3 490 514 5208698592597571883 2 629 865 43 3 966 981 14431353048791951405 1 290 809 16 4 468 843 1 607 875 26 2 177 521 6 4 176...
output:
0 0 0 1090256298972435763 147836376791542005 2987455658418197192 17393388322162025577 0 15463425577465259729 5603739312727078592 9162759280430770517 5734982725161877299 17209386033616770563 4838930779004365643 849737692109005723 6426101344117061130 5419322161439603233 5062725202245147693 71096115354...
result:
ok 245 tokens
Test #3:
score: 0
Accepted
time: 19ms
memory: 98136kb
input:
1000 1000 3 99 666 17220025026447219412 4 5 483 3 749 845 16031212477837693538 3 133 609 17502764194597679430 1 20 226 5 4 251 561 4 633 824 4 200 311 4 519 771 1 441 468 4 1 143 922 2 3 125 229 12754000280540900298 1 498 505 6 1 363 450 3 2 271 554 3 1 114 704 4 2 120 814 2 3 690 982 45445988286128...
output:
7328512720450443476 7442164624875844502 14518824065043662144 15136137278022830944 9027578627713658176 14666047547670987011 9573739028108360400 15993305979184887208 14884581396130778517 17761136731703624839 13312122318790827838 14347674975080853967 17128890277609978434 9773479657321740818 15378095570...
result:
ok 256 tokens
Test #4:
score: 0
Accepted
time: 8ms
memory: 100168kb
input:
1000 1000 3 331 336 13313883338135403138 2 34 521 1 1 207 917 1 2 293 636 1 1 10 687 1 2 41 872 1 1 355 758 1 1 288 842 1 3 400 783 5775690383446019013 4 314 322 2 304 613 1 2 826 891 1 2 202 822 1 4 548 564 4 116 797 2 19 741 1 3 682 909 6383131735642614258 1 236 239 1 3 540 587 8352069600659472359...
output:
0 5953016150034565141 10352142132099319436 6096323733974212364 12116874695872864409 15347176369296045030 5941262347742323458 3620424356881155419 10127217571760838974 5461268237196718849 17374108689525300602 10962054618902200654 10589539750496832325 18040788904369214946 4431085881313941227 1086737541...
result:
ok 245 tokens
Test #5:
score: 0
Accepted
time: 8ms
memory: 98036kb
input:
1000 1000 4 508 569 3 464 647 9626512068323288850 1 261 912 260 4 11 44 4 277 438 4 284 694 2 58 226 212 1 457 503 39 2 706 712 21 4 284 619 1 512 792 423 2 157 161 53 4 277 536 1 366 980 414 1 316 876 190 3 371 886 9029081672906636708 4 194 444 2 745 753 461 3 213 319 890290010596372158 2 753 762 3...
output:
0 0 0 390789495368193264 7549612687959379704 1759106186637124642 4069257141547258216 0 17049456214560332466 12608950793396043246 15542879177249956503 5268553984485336740 3347535289204500833 1283339644428090794 900030301309717320 10617803241693535373 14165237887531480080 7981622196338660662 108862472...
result:
ok 249 tokens
Test #6:
score: 0
Accepted
time: 25ms
memory: 100136kb
input:
1000 1000 3 129 542 13655472611747991961 4 511 790 2 427 432 24 4 297 777 3 42 429 12538231273219784506 2 599 608 39 3 527 566 15984446643208694087 2 205 211 1 3 601 694 12523292657204424213 3 545 831 15344770091989840452 1 602 989 37 1 53 385 37 4 682 969 3 543 721 5478413773432004467 1 56 745 34 3...
output:
12700009880616055584 1938841074867628294 11101356538763217641 10137253135833169997 13873622059376146753 13337075822234643821 9115529121094266177 7669597812731439884 7653582597306726684 16408805096415770957 5310328737375184018 10833975347168974529 3499327095010911697 4157942280079245663 1226136409211...
result:
ok 237 tokens
Test #7:
score: 0
Accepted
time: 8ms
memory: 98156kb
input:
1000 1000 2 235 237 1 3 293 925 11446750964413798601 1 299 374 3 4 663 909 3 11 599 10235863487659693663 2 68 71 10 1 354 730 5 2 716 719 1 1 492 636 6 2 653 657 6 1 383 436 3 4 25 151 4 63 940 4 375 432 4 271 700 1 42 349 4 1 282 760 2 1 277 993 5 4 230 883 2 353 357 5 3 193 326 3721636915624045074...
output:
4995644932646857199 8682577773112482081 14198642487599396424 3213041208013041424 13539808857214091375 761700240778104149 303442926722239461 3516102455933096238 57413777171872180 7755609655116170430 4422876140281257386 5188821315335992835 12241893756112962715 16177149822898993950 340672744116294775 1...
result:
ok 262 tokens
Test #8:
score: 0
Accepted
time: 15ms
memory: 97912kb
input:
1000 1000 2 677 685 1 3 323 762 12895483491686386027 3 298 384 18175344572520049422 4 502 504 2 82 84 5 4 366 888 4 446 447 1 215 667 2 4 74 288 4 713 832 1 647 758 6 2 814 823 2 4 335 545 3 549 653 4845209895729503532 3 727 749 2017173238814894361 3 106 331 7491311112690514667 4 383 640 1 306 501 3...
output:
1792962327640054849 4602247259348913401 7344222909663220438 0 17584876078194546406 14152406924757806061 9115461223074385858 16394226226497421375 11880805806882569475 6738114177990764802 6873497294390714416 4519670768317052046 12682237596341027497 12763260220853210949 6314086074882193678 149826222253...
result:
ok 241 tokens
Test #9:
score: 0
Accepted
time: 10ms
memory: 96112kb
input:
1000 1000 1 34 37 5 3 126 206 14727478235725604056 3 654 744 18255408097680139947 1 480 887 3 2 949 957 12 2 73 73 4 2 475 479 13 2 629 633 60 2 855 863 17 4 693 699 2 841 848 16 4 99 497 2 591 593 11 4 475 475 3 662 665 9880886915713059518 2 759 767 7 3 138 500 17769308332561790789 2 377 385 1 1 63...
output:
17107392241503669933 12334116376362625112 0 6456951739835200564 9971073695561689148 2802027920063294567 1036164630077188382 17606737366739661456 3673719133547364878 14283911652166609210 10307419488382662895 7570930610113533112 4760136262978142135 2686644875969537451 16340864373011062989 166150323341...
result:
ok 238 tokens
Test #10:
score: 0
Accepted
time: 7ms
memory: 98160kb
input:
1000 1000 1 72 236 30 1 50 509 27 1 13 108 25 2 886 894 4 3 655 875 4803545865429381065 3 383 783 11671115136637467033 1 585 927 23 2 504 509 1 1 30 147 26 2 741 749 16 4 270 679 4 173 186 2 144 145 23 3 221 230 3690281936266615260 3 239 771 8308954142750294924 3 563 791 15967473094317050982 2 223 2...
output:
7741491917409221922 0 1184088091910697156 9402573550842177896 16347258322020142583 10075791157671528329 15790910225201268145 3569527660563963307 15857736879027467782 12504414326160398443 10919437795207910592 16960732844939675104 17997032562817801024 8392051279069707625 5000292839030073720 1114739402...
result:
ok 235 tokens
Subtask #2:
score: 0
Wrong Answer
Test #11:
score: 0
Wrong Answer
time: 882ms
memory: 171760kb
input:
300000 300000 1 237576 237663 1 3 16150 16208 9270412155482010138 2 175648 175692 1 4 190836 190849 4 199010 199097 1 73976 298801 1 3 89902 89939 6418828085116455990 3 55415 55461 12238963685511262676 3 119825 119875 8146944792877919309 3 135103 135158 218634681842812119 3 127261 127352 13291431184...
output:
0 0 0 0 0 0 12272376591028786218 0 0 0 0 0 0 0 0 0 0 0 0 0 0 954290611784159519 0 3778617232493240005 8956067326602310519 7373452729428553855 16938285947326957203 0 0 14783754218831034862 7601682967357904165 0 0 0 0 0 0 11584905325916393312 0 0 4657169178464751085 17170356428308894805 0 0 0 0 148107...
result:
wrong answer 168th words differ - expected: '717051936284172853', found: '3335724626743970398'
Subtask #3:
score: 0
Skipped
Dependency #2:
0%
Subtask #4:
score: 20
Accepted
Test #31:
score: 20
Accepted
time: 602ms
memory: 165020kb
input:
300000 300000 1 85444 86076 59 1 41150 41411 71 1 278698 279414 45 1 238445 239202 56 1 29965 29984 49 1 282953 283272 37 1 34668 35653 86 2 198587 198744 28 1 270855 271611 58 1 2130 2965 773 1 161601 162298 937 1 50299 50435 36 1 100759 101198 64 1 120208 120543 84 1 295293 295732 34 1 112185 1129...
output:
0 0 16968625150574630951 16605993861994422737 14436884090003254733 0 3880767775473082445 6112413713545582398 0 17289176072916758003 0 0 0 10364128737969177934 0 0 995880312728861482 0 0 0 0 0 10433996744029883784 13368567004097850084 0 3861451384001627672 0 2134685396643390371 2335938625343203079 0 ...
result:
ok 100167 tokens
Test #32:
score: 0
Accepted
time: 522ms
memory: 162620kb
input:
300000 300000 1 217891 287415 280 1 109091 109094 215 1 178397 178458 11 1 34114 34117 48 1 86577 86662 99 1 81392 81461 159 1 5842 5937 85 1 32285 32339 53 1 212941 212995 466 1 42038 42113 787 1 19627 19711 96 1 161983 266619 78 1 49816 222058 93 1 231964 231978 38 1 98426 98500 66 1 139172 139260...
output:
0 11692764325642035757 0 0 0 0 0 0 0 0 10626360660502640041 8974861558116311577 0 0 0 0 6828833927995630395 7675918871528237837 0 15346587511766135393 13255392782493978413 11587532788939849077 0 0 0 6764302870047383583 0 0 7400870183243479412 0 8589365144244158638 3886731025017654354 253988962743422...
result:
ok 100093 tokens
Test #33:
score: 0
Accepted
time: 543ms
memory: 162380kb
input:
300000 300000 1 160271 160305 121 2 136868 136903 52 1 25761 183215 150 1 201646 201657 75 1 178637 178641 161 1 108624 108682 194 1 21955 90478 111 1 62044 62108 103 1 18137 18150 60 2 137444 137488 63 1 169356 169437 369 1 226170 226241 21 2 250536 250571 111 1 64083 64158 265 1 179107 179148 53 1...
output:
0 0 0 10146344313931218962 18059154134718308159 0 0 5482480617044727472 4903722043315669325 8795894026302189205 1504263091099301790 0 4566381908445435572 6966530244481722998 0 0 0 8601406932323617126 0 4231971134025119261 17835338178033113319 0 0 0 0 0 0 0 0 6727335030369532119 0 1158681340578803909...
result:
ok 99470 tokens
Test #34:
score: 0
Accepted
time: 570ms
memory: 168048kb
input:
300000 300000 2 129741 129786 43 1 133731 133801 159 1 58344 83861 214 1 61033 61091 33 1 183553 183563 156 1 199271 199279 192 1 34576 34596 906 1 72891 80120 176 1 167427 167508 124 1 2964 3023 284 1 98570 98659 146 1 231952 232023 138 1 151151 151160 94 2 5131 5209 203 1 2869 2883 104 2 199205 19...
output:
0 0 4796201084925266965 0 0 0 13883685076285902517 0 0 9431529117273573445 4766573235145348929 1611897968597913432 0 0 0 2586063526252030814 0 0 16001876878405472178 17135272297629565994 0 17056443865906628232 0 4745294572652909898 8998783936939614344 7580363282108800106 0 16013946451858032933 0 477...
result:
ok 50062 tokens
Test #35:
score: 0
Accepted
time: 589ms
memory: 161912kb
input:
300000 300000 2 85463 85536 76 1 1319 173260 147 1 217533 217619 256 1 10109 10176 289 1 55109 209902 262 1 81267 132527 169 1 23758 23766 393 2 271064 271083 283 1 78575 78665 257 1 198478 198506 327 1 130300 130393 669 1 86358 86366 198 1 13014 149678 56 1 39667 39738 27 2 61722 61803 172 2 12005 ...
output:
0 0 0 0 0 211139834562940132 0 0 0 0 9937788562274929249 9903884816325715188 0 0 2249898283594756228 4847122793324524440 13389982050708360868 0 0 0 17832939713973779542 10881562150273498962 17502970485710981903 8002363826031321384 7290681287509116914 0 4376837037219638409 3099055170068370790 0 18423...
result:
ok 125092 tokens
Test #36:
score: 0
Accepted
time: 634ms
memory: 191624kb
input:
300000 300000 1 1 600 1 1 1 598 2 1 1 596 3 1 1 594 4 1 1 592 5 1 1 590 6 1 1 588 7 1 1 586 8 1 1 584 9 1 1 582 10 1 1 580 11 1 1 578 12 1 1 576 13 1 1 574 14 1 1 572 15 1 1 570 16 1 1 568 17 1 1 566 18 1 1 564 19 1 1 562 20 1 1 560 21 1 1 558 22 1 1 556 23 1 1 554 24 1 1 552 25 1 1 550 26 1 1 548 2...
output:
0 0 0 0 0 0 2506763004086301860 17427921690879692440 0 0 0 0 0 0 0 0 0 0 0 0 12529173451446836357 0 0 8317424068741879477 0 0 0 15375344820100899566 0 0 0 0 0 0 0 0 0 0 0 6979511664378963244 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12078704023826942654 11918039685634475866 0 0 0 0...
result:
ok 75393 tokens
Test #37:
score: 0
Accepted
time: 639ms
memory: 188892kb
input:
300000 300000 1 1 600 1 1 1 598 2 1 1 596 3 1 1 594 4 1 1 592 5 1 1 590 6 1 1 588 7 1 1 586 8 1 1 584 9 1 1 582 10 1 1 580 11 1 1 578 12 1 1 576 13 1 1 574 14 1 1 572 15 1 1 570 16 1 1 568 17 1 1 566 18 1 1 564 19 1 1 562 20 1 1 560 21 1 1 558 22 1 1 556 23 1 1 554 24 1 1 552 25 1 1 550 26 1 1 548 2...
output:
0 0 0 0 0 0 0 0 0 0 0 0 0 5202743784850168886 0 0 4603927467884415342 0 4603927467884415342 9749533581125811360 2088840978649544692 0 18322607265021990624 0 0 9711321466745280504 4603927467884415342 2496249307634847047 0 0 0 0 0 0 0 0 0 0 0 0 5227856238668259348 47582809777024974 1200026012580389334...
result:
ok 75238 tokens
Test #38:
score: 0
Accepted
time: 454ms
memory: 182224kb
input:
300000 300000 1 1 300000 1 1 2 299999 2 1 3 299998 3 1 4 299997 4 1 5 299996 5 1 6 299995 6 1 7 299994 7 1 8 299993 8 1 9 299992 9 1 10 299991 10 1 11 299990 11 1 12 299989 12 1 13 299988 13 1 14 299987 14 1 15 299986 15 1 16 299985 16 1 17 299984 17 1 18 299983 18 1 19 299982 19 1 20 299981 20 1 21...
output:
0 0 0 0 10718922111423336564 10718922111423336564 0 0 0 10718922111423336564 10718922111423336564 0 0 9146817304949717077 13409051668444632193 2348108605912789755 0 0 9506780142003357434 0 0 9857982858752846941 13200643887683725279 0 0 0 0 7505599624584684325 0 5415306418116098549 0 1066421420982755...
result:
ok 75210 tokens
Test #39:
score: 0
Accepted
time: 458ms
memory: 165516kb
input:
300000 300000 1 1 1500 1 1 1 1500 2 1 1 1500 3 1 1 1500 4 1 1 1500 5 1 1 1500 6 1 1 1500 7 1 1 1500 8 1 1 1500 9 1 1 1500 10 1 1 1500 11 1 1 1500 12 1 1 1500 13 1 1 1500 14 1 1 1500 15 1 1 1500 16 1 1 1500 17 1 1 1500 18 1 1 1500 19 1 1 1500 20 1 1 1500 21 1 1 1500 22 1 1 1500 23 1 1 1500 24 1 1 150...
output:
0 0 0 0 8267058594554803676 0 0 0 0 0 0 9795094952976301450 0 0 0 0 0 0 9478972841234857817 0 2336196861175781959 0 0 0 0 0 0 0 0 7132376017696382137 0 0 3089475321960576786 7596711484866781532 0 13604716112274572028 15610753335934999776 832524808219417262 0 0 0 0 0 0 0 0 0 0 0 4306695857416496340 1...
result:
ok 91846 tokens
Test #40:
score: 0
Accepted
time: 430ms
memory: 161364kb
input:
300000 300000 1 1 1500 1 1 1 1500 2 1 1 1500 3 1 1 1500 4 1 1 1500 5 1 1 1500 6 1 1 1500 7 1 1 1500 8 1 1 1500 9 1 1 1500 10 1 1 1500 11 1 1 1500 12 1 1 1500 13 1 1 1500 14 1 1 1500 15 1 1 1500 16 1 1 1500 17 1 1 1500 18 1 1 1500 19 1 1 1500 20 1 1 1500 21 1 1 1500 22 1 1 1500 23 1 1 1500 24 1 1 150...
output:
0 0 0 0 0 0 0 9251420100719027419 0 10437522002891643988 4472746676660461079 9253100888169842044 0 0 0 0 0 0 0 8566814495386720956 607008573332703067 0 14745303428233523745 0 6374585044919482064 0 10054674375899920618 1944753074502624222 2146697673259820164 0 0 0 0 0 0 0 0 0 0 0 0 0 1422096915848735...
result:
ok 90955 tokens
Subtask #5:
score: 10
Accepted
Dependency #1:
100%
Accepted
Test #41:
score: 10
Accepted
time: 131ms
memory: 111800kb
input:
40000 40000 4 576 27541 4 6386 23009 1 20941 21376 751 3 823 32062 5063552653037376179 2 13664 17318 2188 1 8143 18546 1303 1 96 22011 1709 2 20800 37184 3499 3 4098 33457 11559569033571630334 1 6686 15115 2973 3 11874 14936 5095502711361186497 4 423 21401 2 465 17984 1744 4 7029 8301 2 11477 13949 ...
output:
0 0 7508658702764009280 2818454508409587497 2691107458561732357 17091421403689417235 9257718243204186348 18298839084850992832 9718728949608108619 5190614606731169920 11954304750104910248 12646121248210666802 2227312579256095589 5111502619119685428 8250430884890452739 11243131780320731985 87960905481...
result:
ok 9994 tokens
Test #42:
score: 0
Accepted
time: 137ms
memory: 109692kb
input:
40000 40000 1 12559 31989 61 1 20540 26683 347 4 15157 37487 2 24282 26322 218 4 1359 27833 1 7254 26602 390 3 16275 21139 12479977116032246002 2 4908 14465 260 4 10322 31118 2 27812 36345 251 3 6605 36867 10550355865825144008 2 21869 33556 272 3 19324 25596 14673005058658741367 4 26342 37679 2 4961...
output:
0 0 6853922918742431474 3646519943965099888 0 6153542968187879966 11317375100468203353 14515564247017430579 1123692613983035864 8421461716963747926 11057180766482084640 7218499438058262744 16632423748903682936 12981519703119539378 6455100585298815773 10741834170238260825 5895587406382276070 15215727...
result:
ok 9998 tokens
Test #43:
score: 0
Accepted
time: 140ms
memory: 108200kb
input:
40000 40000 2 15566 23785 24 2 12710 16468 18 4 5516 17371 3 3315 13349 7262961801150345883 2 23729 28747 38 1 19232 20818 38 3 3184 29692 6742888815080704074 2 1038 35347 3 4 6222 21809 2 25565 32392 28 4 20233 28074 3 5505 28608 498741494423111384 4 18933 28203 3 9381 25723 3440819704761066563 2 9...
output:
0 7430965251653617072 9365572611306416852 9452915180814780494 9828429702921857547 1361176011493271989 1729610548391387594 14077746933625889736 9612912187363378426 4876178820848591192 8912775969232657188 4946375979248381299 10270284542887762916 1411726852422798281 13198455833731137318 167691818445823...
result:
ok 9912 tokens
Test #44:
score: 0
Accepted
time: 108ms
memory: 112020kb
input:
40000 40000 2 9034 14689 1 3 8078 24172 8446709360089751396 3 7183 29835 7453599722051325507 2 4573 18526 2 4 8131 20203 1 1835 5435 3 2 441 20550 1 3 10778 11992 15447703003373543258 3 34495 38063 7736539006391584864 1 27013 33214 1 1 31418 39483 3 4 6490 30518 3 4559 14183 8268753706355827434 1 19...
output:
7612717667627333823 9249750506545142521 6100689784483420778 7872964543753522561 10596753144290849576 6524294888743473164 5451252449228919069 1671137835218146742 750871853453121392 1489349358980656271 6411500492244724711 7109023910524010008 3116435585276723594 18174414762878528751 1113833908168544517...
result:
ok 9861 tokens
Test #45:
score: 0
Accepted
time: 102ms
memory: 109972kb
input:
40000 40000 4 5433 33171 1 9663 38939 903 3 17151 29086 489556798503134186 2 10552 19820 952 1 19329 21822 874 1 15050 29032 223 2 37346 37649 382 3 26321 30249 2479963200102780080 3 14760 29095 2734026925045709062 4 5466 16385 3 9918 38931 8415121231042101457 4 2006 24200 2 38060 38436 752 1 21540 ...
output:
0 18309202434030546972 979686583183183141 2581851821132002166 5012958776786493480 10933665070973329751 12628080033337595711 16419178355538396576 2762518489325336584 13222782748535709204 5727761150946371587 15050738623273638149 17299474625819832890 569931967967839962 9017407647608319798 7316951328699...
result:
ok 10112 tokens
Test #46:
score: 0
Accepted
time: 88ms
memory: 111564kb
input:
40000 40000 2 950 986 62 3 32665 39557 1459666198176499450 2 19953 20079 171 2 28787 28987 86 3 11890 13897 16992718997024881808 1 3626 12455 35 1 15855 36529 82 3 37186 37746 18180156315005212010 1 23269 24232 173 3 11213 19340 4696759065587628154 2 16539 16569 6 2 2899 2946 193 3 2837 10250 210882...
output:
12105169892515142560 15207756103116793500 11794421259914104692 13624790301027565746 2400203354172286864 2215748873640112924 3763435318174730947 7786144716893832273 16146982307292051892 16441554516053604807 16837160515212060861 2259579344222890040 3526780904914528886 18412540983454612307 176933060505...
result:
ok 9895 tokens
Test #47:
score: 0
Accepted
time: 77ms
memory: 111636kb
input:
40000 40000 1 33597 37399 35 1 3189 27051 33 4 29128 38689 2 28881 39271 38 4 9591 27710 2 20345 20607 5 2 23204 23413 49 3 8600 26762 5526158724337323840 4 17431 36715 2 34446 34815 35 4 11515 28618 3 2653 15822 585282263655737645 4 10269 12535 3 11483 26777 15384244170535151132 4 1531 15046 2 8475...
output:
0 0 11463529497709308160 16588044063991682048 1131920424397122879 16623280973432444722 11288569081185668380 14376690261992998376 1668074368341702052 4930851060101298228 2614792112049014607 3188055330635773710 3966359955538733297 6887038592542686756 16159820012510501165 826341539701747429 24522897197...
result:
ok 10141 tokens
Test #48:
score: 0
Accepted
time: 96ms
memory: 111912kb
input:
40000 40000 1 29905 30890 545 2 39668 39958 99 4 185 13527 2 33659 33942 16 3 4791 15377 11955402225202520566 4 9288 32278 4 1806 21644 2 30958 31154 90 3 2382 38460 10600044282569287487 2 37139 37474 11 3 17151 36696 12894272050760805953 2 22931 23010 32 3 29739 36518 12763324057917049064 4 10501 2...
output:
0 17547436625459570204 8732268497851594866 701026301823135620 8553236934023756096 4245457077681508586 10576542511136850929 5154480949819515280 4248351554003745886 17431300564677796727 6408823205966421392 12750657389420717791 17778617931738906058 16501130113232168445 17423220840960051353 106184677294...
result:
ok 9978 tokens
Test #49:
score: 0
Accepted
time: 84ms
memory: 111692kb
input:
40000 40000 4 27604 28631 2 29604 29755 14 1 1830 5370 65 1 401 27287 58 3 5772 19934 13988694129479509635 2 9867 10072 17 4 11589 39134 2 30627 30829 215 3 3984 14864 11509346671263077852 4 11811 12053 4 20893 37685 4 1176 31815 1 12470 23301 35 4 22376 25583 1 14435 33534 23 2 31419 31698 67 1 141...
output:
0 197962128235236046 16364649887748967981 0 2099217777114791253 0 2099217777114791253 0 12956974070382981388 7214100392957863815 13334987327345628689 18247441059178680252 14396813329827753491 4322569680482396718 15316119303924343622 612784626391564599 14852243166231139861 18252465950331399367 121453...
result:
ok 10006 tokens
Test #50:
score: 0
Accepted
time: 72ms
memory: 111360kb
input:
40000 40000 1 7674 9525 54 4 20790 21195 3 21059 27963 18316296184271697385 1 17831 29347 60 1 3915 9437 15 4 30267 32075 4 15044 38364 4 15961 16118 2 6544 6686 11 4 39217 39809 2 20363 20543 3 2 37851 37984 107 2 28580 28649 20 3 13965 20183 3399078880845549133 3 13020 37625 6599984329518697549 4 ...
output:
0 0 3147783043384564129 0 0 11737479225750595960 10771737015888382607 1812860509076860957 17363621120467743822 15140604598233199023 160798351867088240 6503789490688208382 12140022672524724959 10440900038123779961 3882849543552289779 11674143129754260317 13450257701895116730 16013901748674175210 9534...
result:
ok 8010 tokens
Subtask #6:
score: 0
Skipped
Dependency #1:
100%
Accepted
Dependency #2:
0%