QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#121474 | #2065. Cyclic Distance | black_trees | TL | 2150ms | 12412kb | C++14 | 1.8kb | 2023-07-08 11:56:17 | 2023-07-08 11:56:18 |
Judging History
answer
// author : black_trees
#include <cmath>
#include <queue>
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#define endl '\n'
#define int long long
using namespace std;
using i64 = long long;
const int si = 2e5 + 10;
int n, k;
struct Convex {
int sum = 0;
std::priority_queue<int, vector<int>, greater<int>> slope;
void Merge(Convex rhs) {
sum += rhs.sum;
while((int)rhs.slope.size())
slope.push(rhs.slope.top()), rhs.slope.pop();
while((int)slope.size() > k)
sum -= slope.top(), slope.pop();
}
void Add(int u, int v) {
int ret = 0;
std::priority_queue<int, vector<int>, greater<int>> q;
while((int)slope.size()) {
int x = slope.top();
slope.pop();
int idx = (int)slope.size(), val = 0;
if(idx * 2 < v) val = (idx + 1) * 2 <= v ? x + u : x;
else val = x - u;
q.push(val), ret += val;
}
slope = q, sum = ret;
}
};
int tot = 0, head[si];
struct Edge { int ver, Next, w; } e[si << 1];
inline void add(int u, int v, int w) { e[tot] = (Edge){v, head[u], w}, head[u] = tot++; }
int ans = -1;
Convex dfs(int u, int fa) {
Convex a; a.slope.push(0);
for(int i = head[u]; ~i; i = e[i].Next) {
int v = e[i].ver, w = e[i].w;
if(v == fa) continue;
Convex b = dfs(v, u);
b.Add(2 * w, k);
if((int)a.slope.size() > (int)b.slope.size())
a.Merge(b);
else b.Merge(a), swap(a, b);
}
ans = max(ans, a.sum);
return a;
}
signed main() {
cin.tie(0) -> sync_with_stdio(false);
cin.exceptions(cin.failbit | cin.badbit);
int T; cin >> T;
while(T--) {
cin >> n >> k;
tot = 0, ans = -1;
for(int i = 0; i <= n; ++i)
head[i] = -1;
for(int i = 1; i < n; ++i) {
int u, v, w;
cin >> u >> v >> w;
add(u, v, w), add(v, u, w);
}
dfs(1, 0);
cout << ans << endl;
}
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 1ms
memory: 5508kb
input:
1 5 3 1 2 4 1 3 1 1 4 8 4 5 9
output:
44
result:
ok single line: '44'
Test #2:
score: 0
Accepted
time: 36ms
memory: 5460kb
input:
57206 3 2 1 2 574927 2 3 406566 2 2 1 2 308806 4 3 1 2 312588 2 3 500141 2 4 53602 3 3 1 2 797183 2 3 944061 5 3 1 2 624010 2 3 488613 3 4 734514 4 5 497493 5 4 1 2 540278 2 3 488655 2 4 228989 2 5 653896 2 2 1 2 569117 4 2 1 2 821764 2 3 499471 1 4 549060 2 2 1 2 991159 2 2 1 2 482941 5 4 1 2 30462...
output:
1962986 617612 1732662 3482488 4689260 3823636 1138234 3740590 1982318 965882 3418504 5026562 1623414 1885106 1952142 3050630 1691896 3102076 2380932 3076270 5697196 7258020 879020 2500212 3613854 1358950 1182198 2273662 2331560 1681964 8917452 2373066 3163042 3104226 3642898 3162310 5058442 3669186...
result:
ok 57206 lines
Test #3:
score: 0
Accepted
time: 40ms
memory: 5460kb
input:
57087 3 3 1 2 34132 1 3 188096 2 2 1 2 996527 2 2 1 2 475736 5 3 1 2 329834 2 3 339687 1 4 954113 4 5 224354 2 2 1 2 641444 2 2 1 2 114059 5 3 1 2 635722 1 3 552627 1 4 721758 3 5 396156 4 3 1 2 655099 2 3 963393 1 4 953969 5 2 1 2 369719 1 3 22087 1 4 531252 3 5 449025 4 3 1 2 788498 1 3 220292 1 4...
output:
444456 1993054 951472 3695976 1282888 228118 4612526 5144922 2004728 3309502 2626844 3053048 3939444 3790784 2617770 38866 3033250 5707738 511666 403846 1923106 3331606 3447180 2329518 5656124 33582 2283312 3454982 110590 3125394 4517486 4522330 2352316 3966810 3463746 5181112 3089346 1260326 466418...
result:
ok 57087 lines
Test #4:
score: 0
Accepted
time: 47ms
memory: 5460kb
input:
33344 9 6 1 2 562996 1 3 312637 3 4 591016 1 5 811983 2 6 896220 3 7 854379 2 8 861166 1 9 672337 8 6 1 2 53530 1 3 712638 1 4 539356 1 5 179377 3 6 456495 2 7 730760 4 8 934379 3 3 1 2 87024 1 3 328551 3 3 1 2 664600 1 3 519786 5 4 1 2 374521 1 3 484148 2 4 501378 1 5 280691 10 3 1 2 676949 1 3 639...
output:
12876734 9717058 831150 2368772 4030518 7963678 2135868 739728 11584454 1670128 3432160 5573124 1293282 3608364 8574290 6242670 10860048 4726106 5661430 9713590 5160212 5958260 14418122 1913782 1393854 5129544 9369494 11601220 4751232 1623938 8259790 3591252 5112182 4761950 5284034 13000192 4895040 ...
result:
ok 33344 lines
Test #5:
score: 0
Accepted
time: 42ms
memory: 5524kb
input:
33337 8 2 1 2 22201 2 3 94167 2 4 978398 4 5 452870 5 6 59368 5 7 804913 7 8 977938 3 3 1 2 784938 1 3 333822 8 4 1 2 737256 2 3 276599 2 4 338826 2 5 260533 2 6 520885 1 7 971939 1 8 613926 8 2 1 2 405702 1 3 514900 2 4 861432 2 5 715573 2 6 269555 5 7 528278 6 8 537996 6 2 1 2 984398 2 3 629 1 4 3...
output:
6616572 2237520 7840176 4328906 4093536 11035562 2053254 17920138 4892406 11437574 7585262 5318412 12387008 1823170 5912732 2056136 4049368 3780958 3965658 1661392 3447138 7906552 12728830 12419926 4593330 817758 2300052 12252582 10429848 629344 8615656 8922918 3351270 6102888 3501718 11662020 15460...
result:
ok 33337 lines
Test #6:
score: 0
Accepted
time: 42ms
memory: 3476kb
input:
18261 6 6 1 2 401169 1 3 865631 3 4 470224 1 5 136374 3 6 696999 3 2 1 2 216465 2 3 99004 9 3 1 2 360514 1 3 110584 3 4 170236 1 5 969734 4 6 929592 3 7 907150 4 8 418707 4 9 357462 4 4 1 2 951855 2 3 70272 2 4 113663 17 9 1 2 352392 1 3 254146 2 4 362317 1 5 589664 3 6 284236 6 7 978987 2 8 122649 ...
output:
8603318 630938 6174592 2271580 32450770 9765552 9941290 17849770 6762442 9904414 59511294 4686354 5194544 44718814 20540916 7002622 29096312 1815140 9151006 20865960 2859444 7971376 15607738 16938982 9282678 15770664 10404176 2332096 3515930 50580870 9444474 7316680 3747306 14809566 32347198 5442322...
result:
ok 18261 lines
Test #7:
score: 0
Accepted
time: 42ms
memory: 5504kb
input:
18082 12 8 1 2 893078 2 3 422969 1 4 633414 4 5 744557 3 6 860147 3 7 385978 5 8 399366 3 9 431676 4 10 181291 9 11 486224 10 12 444565 13 12 1 2 449428 1 3 484947 3 4 581713 3 5 159778 3 6 337685 4 7 565917 4 8 136883 7 9 963963 9 10 457061 9 11 818966 4 12 588294 1 13 275051 11 8 1 2 742103 1 3 98...
output:
26178344 26647644 17726444 51096468 51024750 4318098 10947660 9534678 3065408 11342084 8694638 19155222 849062 7555504 8993018 3193064 4338758 519680 4516496 18892576 2929566 12021588 29857614 40051924 1688342 24734948 10330762 14820592 11122894 15774626 17385606 20569180 5715160 3895974 7010784 271...
result:
ok 18082 lines
Test #8:
score: 0
Accepted
time: 41ms
memory: 5460kb
input:
7777 27 19 1 2 930838 1 3 462030 1 4 982798 2 5 829904 3 6 593202 5 7 941278 5 8 694251 3 9 720130 4 10 604740 4 11 550251 5 12 409519 3 13 23594 12 14 54526 2 15 511926 1 16 48491 1 17 765416 12 18 819984 9 19 325056 7 20 175920 11 21 269086 16 22 641837 13 23 1737 21 24 948879 15 25 349036 3 26 13...
output:
71370146 30838976 80456148 32228866 5055546 25592662 95173582 13955400 17980860 19738002 78673788 101336458 125780830 1081414 105831712 11260058 85123024 74738088 91760570 127445888 56551920 26076342 50784456 43425188 9465296 64841258 21733114 12894954 66549458 57289112 46556192 46428776 79922806 15...
result:
ok 7777 lines
Test #9:
score: 0
Accepted
time: 63ms
memory: 3452kb
input:
3973 72 55 1 2 918907 2 3 400804 2 4 72269 2 5 254465 3 6 176834 4 7 487004 4 8 469111 5 9 299565 5 10 455772 8 11 575420 3 12 538035 7 13 501415 11 14 583573 1 15 879841 11 16 16749 16 17 48301 17 18 5050 6 19 739687 10 20 264146 19 21 95867 14 22 436314 18 23 109932 17 24 472782 5 25 809039 19 26 ...
output:
201634460 8298172 194453968 102456878 21539194 126399884 235528270 117959738 23543328 41025942 8304998 31545014 17344164 41189444 25956190 46294310 13019524 71670116 120980628 48791074 150100762 116919430 244037610 218464668 133368300 255723622 106123038 244888064 19329892 66580624 74085138 26108538...
result:
ok 3973 lines
Test #10:
score: 0
Accepted
time: 69ms
memory: 3484kb
input:
1977 164 159 1 2 789785 2 3 953798 2 4 694582 2 5 546152 1 6 977613 4 7 100774 1 8 699051 6 9 456494 4 10 736064 8 11 451475 2 12 212640 12 13 472011 2 14 473796 12 15 986991 8 16 723782 6 17 209086 2 18 619112 15 19 740890 19 20 114446 4 21 470217 7 22 718655 9 23 989557 14 24 575144 24 25 897325 1...
output:
728347768 385840768 77551442 592321810 379244468 70306600 40298184 752175314 115213140 20514164 76134366 99658306 453129018 233705740 297458016 274605942 332890648 11997344 319596032 85455912 55983850 11837114 356411436 56917200 180309026 69088440 113716684 159826434 571011208 528906534 606746358 46...
result:
ok 1977 lines
Test #11:
score: 0
Accepted
time: 83ms
memory: 5592kb
input:
818 216 206 1 2 369713 2 3 421291 3 4 140720 3 5 453918 2 6 347245 3 7 292355 4 8 804550 2 9 511603 5 10 576941 6 11 79641 2 12 493352 6 13 192308 12 14 854864 4 15 144922 7 16 522578 7 17 532656 15 18 685489 2 19 809906 14 20 599938 20 21 527857 10 22 822574 4 23 885328 13 24 111539 8 25 292999 10 ...
output:
867774932 2296994794 233491416 339174870 4380454 316249010 1649235398 150692978 859452362 1387824632 566645160 1671550174 374729794 38076864 256942076 89728496 111087726 819481720 353274342 158202878 2507683982 659900622 594449324 108828820 220100714 806438160 288755872 450110446 1306416876 28801645...
result:
ok 818 lines
Test #12:
score: 0
Accepted
time: 90ms
memory: 5584kb
input:
388 885 741 1 2 614111 1 3 646996 1 4 731680 3 5 509182 2 6 712870 2 7 477522 1 8 799038 2 9 526704 4 10 88823 6 11 585078 8 12 900068 12 13 440908 6 14 388379 2 15 812954 5 16 917816 2 17 727629 5 18 241307 18 19 529750 2 20 809637 4 21 266090 4 22 413888 4 23 465987 19 24 643732 3 25 848861 7 26 3...
output:
5165240612 3991064320 300206776 2363897270 4350064382 2904490770 1259900728 451154248 2752947084 1151013030 207016404 703014190 4827032982 47085678 465899304 559318078 208644530 1259221796 315251532 3807613878 865302402 339449112 3285190350 379703410 1086628014 194369296 2706984676 9377868 152376728...
result:
ok 388 lines
Test #13:
score: 0
Accepted
time: 104ms
memory: 5820kb
input:
124 806 542 1 2 394915 2 3 762809 2 4 71615 4 5 901682 1 6 28248 1 7 325984 1 8 161160 7 9 70782 1 10 349322 7 11 654826 11 12 427646 10 13 517990 12 14 400553 3 15 598040 8 16 253298 10 17 294666 14 18 613927 13 19 625834 17 20 93238 4 21 45963 9 22 870452 11 23 376547 19 24 659738 5 25 739083 17 2...
output:
3807793034 1343227424 37609802 3705549364 126733756 9635178252 3506210498 16987523222 22763236 7093402608 10108316194 1798434742 2332283402 110619882 12311189932 7785591236 2331817838 7321850968 10330012804 4659673742 1598549982 3471432852 9127534748 6077191920 2755494906 82670438 792532856 59178738...
result:
ok 124 lines
Test #14:
score: 0
Accepted
time: 128ms
memory: 6112kb
input:
47 4196 3473 1 2 59765 1 3 28405 2 4 95437 1 5 426251 4 6 680053 4 7 875644 3 8 101616 2 9 669879 4 10 527801 9 11 696926 4 12 955771 6 13 953289 6 14 899927 2 15 309441 1 16 791394 11 17 990342 2 18 921444 17 19 407114 18 20 895642 12 21 733300 19 22 714292 5 23 177566 1 24 874904 18 25 425752 21 2...
output:
32935676304 3717064448 37360311556 32857937108 25425748172 20991814086 9308076718 30002956630 25990649392 35230149484 30166498052 6980464444 848691918 727066270 19184659230 21879371990 11886363268 7281096728 34529212140 33573011954 29329416654 10604037682 14609919178 7088000188 2997249588 2182193162...
result:
ok 47 lines
Test #15:
score: 0
Accepted
time: 151ms
memory: 7800kb
input:
25 13266 5290 1 2 398633 2 3 578977 1 4 568699 2 5 495651 1 6 356927 4 7 884995 5 8 465219 3 9 54537 4 10 989480 4 11 212881 8 12 576100 3 13 519498 7 14 209089 2 15 119352 15 16 440028 6 17 11442 17 18 142375 12 19 93668 18 20 569575 6 21 634959 14 22 921078 18 23 749636 15 24 78850 20 25 631085 18...
output:
57636699686 20776112106 22411104826 41387716460 99873948690 23234934704 26640137916 49381353188 93899141028 180822788490 16939309804 118325463046 65282343804 88479211840 109851741390 2732988616 36278698716 1584258300 6631320784 890513562 75812804 12914508 1164298 3956432 1036116
result:
ok 25 lines
Test #16:
score: 0
Accepted
time: 178ms
memory: 12412kb
input:
13 31190 2158 1 2 781853 2 3 614702 3 4 680885 1 5 519959 1 6 743821 1 7 498955 3 8 436452 6 9 426284 3 10 74654 4 11 20992 10 12 967749 4 13 324721 11 14 442563 5 15 661646 5 16 853352 11 17 766216 3 18 731178 9 19 754550 1 20 636192 18 21 139985 18 22 532871 21 23 341305 11 24 138046 21 25 255022 ...
output:
35215118232 55749095234 253652245940 236318456986 22259296024 5904204406 3347768326 11182269610 653683538 323715442 4623062 21020532 4497448
result:
ok 13 lines
Test #17:
score: 0
Accepted
time: 170ms
memory: 10556kb
input:
11 23148 11569 1 2 814559 1 3 529617 2 4 169569 2 5 291868 2 6 141363 6 7 208623 6 8 970146 7 9 264414 1 10 460715 7 11 922739 3 12 247233 11 13 463914 11 14 930506 12 15 890547 3 16 98019 1 17 318068 8 18 907736 8 19 575428 9 20 267180 17 21 664753 1 22 233687 16 23 664123 20 24 480003 5 25 316247 ...
output:
131403496778 437083768410 29036758090 162514613074 1459900026 57667303102 27192563612 167378465122 324860400 9073270 2801740
result:
ok 11 lines
Test #18:
score: 0
Accepted
time: 48ms
memory: 5520kb
input:
33344 9 6 1 2 562996 1 3 312637 3 4 591016 1 5 811983 2 6 896220 4 7 854379 5 8 861166 4 9 672337 8 6 1 2 53530 1 3 712638 1 4 539356 1 5 179377 3 6 456495 4 7 730760 6 8 934379 3 3 1 2 87024 1 3 328551 3 3 1 2 664600 1 3 519786 5 4 1 2 374521 1 3 484148 2 4 501378 1 5 280691 10 3 1 2 676949 1 3 639...
output:
16364046 11948264 831150 2368772 4030518 8718520 2135868 739728 17887112 1670128 3432160 5573124 1293282 3608364 9786762 6242670 10860048 4629338 5661430 10201260 5160212 5927214 13871014 1913782 1393854 4800470 8646754 13014822 4751232 1623938 9138792 3591252 5112182 4761950 4586032 12082886 519797...
result:
ok 33344 lines
Test #19:
score: 0
Accepted
time: 42ms
memory: 3412kb
input:
33337 8 2 1 2 22201 2 3 94167 2 4 978398 4 5 452870 5 6 59368 3 7 804913 4 8 977938 3 3 1 2 784938 1 3 333822 8 4 1 2 737256 2 3 276599 2 4 338826 2 5 260533 2 6 520885 3 7 971939 4 8 613926 8 2 1 2 405702 1 3 514900 2 4 861432 2 5 715573 2 6 269555 6 7 528278 3 8 537996 6 2 1 2 984398 2 3 629 1 4 3...
output:
5710832 2237520 6918862 4640060 4093536 11124574 2053254 13791458 4237112 10302280 7585262 5318412 11661146 1823170 5912732 2056136 4049368 3780958 3965658 1661392 3447138 6521186 13822322 14297984 5139694 817758 2300052 12441972 12131080 629344 10222176 9904156 3530164 6102888 3501718 14897866 1602...
result:
ok 33337 lines
Test #20:
score: 0
Accepted
time: 43ms
memory: 5460kb
input:
18261 6 6 1 2 401169 1 3 865631 3 4 470224 1 5 136374 3 6 696999 3 2 1 2 216465 2 3 99004 9 3 1 2 360514 1 3 110584 3 4 170236 1 5 969734 4 6 929592 3 7 907150 6 8 418707 8 9 357462 4 4 1 2 951855 2 3 70272 2 4 113663 17 9 1 2 352392 1 3 254146 2 4 362317 1 5 589664 3 6 284236 2 7 978987 7 8 122649 ...
output:
8603318 630938 7726930 2271580 39511914 9291560 9322562 18891490 6762442 11282728 45981248 4686354 6204500 33805266 29050944 7002622 27812476 1815140 8291966 28949776 2859444 7971376 19995250 14927176 10794868 16032466 8113806 2332096 3515930 30566568 11171378 7316680 3747306 15622598 46200820 75783...
result:
ok 18261 lines
Test #21:
score: 0
Accepted
time: 54ms
memory: 5456kb
input:
18082 12 8 1 2 893078 2 3 422969 1 4 633414 4 5 744557 3 6 860147 2 7 385978 7 8 399366 4 9 431676 9 10 181291 9 11 486224 11 12 444565 13 12 1 2 449428 1 3 484947 3 4 581713 3 5 159778 3 6 337685 6 7 565917 5 8 136883 8 9 963963 6 10 457061 9 11 818966 8 12 588294 12 13 275051 11 8 1 2 742103 1 3 9...
output:
25242528 19757364 27007054 55240682 86564840 4085192 18139318 9534678 3065408 12744226 7727820 19949556 849062 8241740 11906226 3193064 4338758 519680 4071722 16300002 2929566 16428948 23453358 40860624 1688342 24721740 11410636 17290986 13878788 21750284 18940876 29581306 5715160 3895974 8886486 27...
result:
ok 18082 lines
Test #22:
score: 0
Accepted
time: 62ms
memory: 3424kb
input:
7777 27 19 1 2 930838 1 3 462030 1 4 982798 2 5 829904 3 6 593202 3 7 941278 6 8 694251 6 9 720130 9 10 604740 9 11 550251 7 12 409519 9 13 23594 11 14 54526 10 15 511926 11 16 48491 14 17 765416 14 18 819984 15 19 325056 16 20 175920 16 21 269086 18 22 641837 22 23 1737 19 24 948879 21 25 349036 23...
output:
75228170 57649698 132133658 33869456 5055546 40187600 238142214 19019330 21052956 15867730 111296070 143396510 178896852 1081414 241828026 16808758 166238356 132779414 158171092 309062484 72050812 29444440 119894362 63427714 7982906 173052228 32140652 15853058 181352856 104599994 59113664 91137016 1...
result:
ok 7777 lines
Test #23:
score: 0
Accepted
time: 85ms
memory: 5536kb
input:
3973 72 55 1 2 918907 2 3 400804 2 4 72269 2 5 254465 3 6 176834 5 7 487004 6 8 469111 7 9 299565 8 10 455772 8 11 575420 11 12 538035 10 13 501415 13 14 583573 10 15 879841 11 16 16749 16 17 48301 15 18 5050 14 19 739687 19 20 264146 19 21 95867 19 22 436314 22 23 109932 22 24 472782 24 25 809039 2...
output:
550802140 9430612 543389458 132607198 33518502 286156830 631371590 247716594 23612752 47668732 8304998 35618886 17797666 54996198 38216132 66312258 18311866 146893642 239261316 83215660 489394056 212729892 679954418 390831710 289311584 550398988 232201858 522438480 27156366 145913756 138648040 78355...
result:
ok 3973 lines
Test #24:
score: 0
Accepted
time: 144ms
memory: 3512kb
input:
1977 164 159 1 2 789785 2 3 953798 2 4 694582 2 5 546152 1 6 977613 2 7 100774 3 8 699051 4 9 456494 6 10 736064 8 11 451475 11 12 212640 8 13 472011 10 14 473796 13 15 986991 13 16 723782 12 17 209086 17 18 619112 18 19 740890 16 20 114446 19 21 470217 19 22 718655 22 23 989557 23 24 575144 24 25 8...
output:
2709804252 1073382686 146182876 2597928172 1039083688 130202922 44807718 2697948818 275515666 45003232 249922510 130302328 2233680240 576739142 1323701390 594678858 812802376 11830192 982876590 114228054 118682940 13448660 763467086 95466686 771594172 135505534 236009214 251246628 2419143104 1720022...
result:
ok 1977 lines
Test #25:
score: 0
Accepted
time: 284ms
memory: 3488kb
input:
818 216 206 1 2 369713 2 3 421291 3 4 140720 3 5 453918 2 6 347245 6 7 292355 7 8 804550 6 9 511603 7 10 576941 6 11 79641 11 12 493352 10 13 192308 11 14 854864 10 15 144922 12 16 522578 14 17 532656 14 18 685489 15 19 809906 17 20 599938 20 21 527857 18 22 822574 22 23 885328 19 24 111539 21 25 29...
output:
4423750216 19666685454 693546124 1218864536 4380454 1447915712 11002456676 506224456 5030664554 11273572258 2955101958 15029178348 775193614 105634972 1570657002 174010602 402583934 4831109418 757286726 211417032 17891846444 3889435970 2672696626 280579862 598159250 6733598614 1154119398 1167341254 ...
result:
ok 818 lines
Test #26:
score: 0
Accepted
time: 595ms
memory: 5628kb
input:
388 885 741 1 2 614111 1 3 646996 1 4 731680 3 5 509182 2 6 712870 3 7 477522 3 8 799038 8 9 526704 7 10 88823 6 11 585078 8 12 900068 12 13 440908 13 14 388379 11 15 812954 15 16 917816 13 17 727629 17 18 241307 18 19 529750 16 20 809637 19 21 266090 19 22 413888 20 23 465987 19 24 643732 21 25 848...
output:
59885814774 50002653154 1816966352 17291950154 60032231098 35122321576 7267828716 1308307132 28075201798 12526928294 1852930634 3350761620 66628385514 66676096 904923322 6492445224 537436282 6796359008 772676382 51098682222 10346684906 1614190620 36290697118 1210792144 8736409274 1024153808 26720699...
result:
ok 388 lines
Test #27:
score: 0
Accepted
time: 2150ms
memory: 4000kb
input:
124 806 542 1 2 394915 2 3 762809 2 4 71615 4 5 901682 1 6 28248 4 7 325984 3 8 161160 8 9 70782 6 10 349322 7 11 654826 9 12 427646 12 13 517990 13 14 400553 11 15 598040 13 16 253298 16 17 294666 14 18 613927 17 19 625834 18 20 93238 19 21 45963 18 22 870452 19 23 376547 22 24 659738 20 25 739083 ...
output:
48936408094 17471908120 54454776 53918382924 3519408202 288476487472 42125063784 622125671858 30246510 272412947860 338801986588 18362649738 60111911056 295556944 401876125448 160437458796 49896147754 122911217026 280614077856 129343717826 59504034812 111545644048 208657339784 126942483030 386623113...
result:
ok 124 lines
Test #28:
score: -100
Time Limit Exceeded
input:
47 4196 3473 1 2 59765 1 3 28405 2 4 95437 1 5 426251 4 6 680053 4 7 875644 7 8 101616 5 9 669879 5 10 527801 9 11 696926 11 12 955771 10 13 953289 10 14 899927 12 15 309441 11 16 791394 16 17 990342 13 18 921444 14 19 407114 15 20 895642 17 21 733300 17 22 714292 22 23 177566 22 24 874904 24 25 425...