QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#253708 | #7791. 通道建设 Passage Construction | hos_lyric# | 40.504732 | 30ms | 5672kb | C++14 | 3.5kb | 2023-11-17 12:10:55 | 2024-07-04 02:26:06 |
Judging History
answer
#include "passageconstruction.h"
#include <cassert>
#include <cmath>
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <functional>
#include <iostream>
#include <limits>
#include <map>
#include <numeric>
#include <queue>
#include <random>
#include <set>
#include <sstream>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>
using namespace std;
using Int = long long;
template <class T1, class T2> ostream &operator<<(ostream &os, const pair<T1, T2> &a) { return os << "(" << a.first << ", " << a.second << ")"; };
template <class T> ostream &operator<<(ostream &os, const vector<T> &as) { const int sz = as.size(); os << "["; for (int i = 0; i < sz; ++i) { if (i >= 256) { os << ", ..."; break; } if (i > 0) { os << ", "; } os << as[i]; } return os << "]"; }
template <class T> void pv(T a, T b) { for (T i = a; i != b; ++i) cerr << *i << " "; cerr << endl; }
template <class T> bool chmin(T &t, const T &f) { if (t > f) { t = f; return true; } return false; }
template <class T> bool chmax(T &t, const T &f) { if (t < f) { t = f; return true; } return false; }
#define COLOR(s) ("\x1b[" s "m")
mt19937_64 rng(63);
int N, Subtask;
vector<vector<int>> graph;
vector<pair<int, int>> ans;
int dfs(int u) {
int ret = -1;
for (const int v : graph[u]) {
const int res = dfs(v);
if (~res) {
if (~ret) {
ans.emplace_back(ret, res);
ret = -1;
} else {
ret = res;
}
}
}
if (~ret) {
ans.emplace_back(ret, u);
return -1;
} else {
return u;
}
}
vector<pair<int, int>> ConstructPassages(int N_, const vector<pair<int, int>> &E) {
N = N_;
Subtask = getSubtaskID();
const int rt = (Subtask == 4 || Subtask == 6) ? (N + 1 + rng() % N) : (1 + rng() % (2 * N));
vector<int> dep(2 * N + 1, -1), dep1(2 * N + 1, -1);
int rt1 = rt;
for (int u = 1; u <= 2 * N; ++u) {
dep[u] = GetDistance(rt, u);
if (dep[rt1] < dep[u]) {
rt1 = u;
}
}
for (int u = 1; u <= 2 * N; ++u) {
dep1[u] = GetDistance(rt1, u);
}
vector<int> par(2 * N + 1, -1);
if (Subtask == 4 || Subtask == 6) {
for (const auto &e : E) {
int u = e.first, v = e.second;
if (dep[u] > dep[v]) {
swap(u, v);
}
assert(dep[u] + 1 == dep[v]);
par[v] = u;
}
}
vector<int> path(dep[rt1] + 1, -1);
for (int u = 1; u <= 2 * N; ++u) if (dep[rt1] == dep[u] + dep1[u]) {
path[dep[u]] = u;
}
for (int d = 1; d <= dep[rt1]; ++d) {
par[path[d]] = path[d - 1];
}
vector<vector<int>> layers(2 * N);
for (int u = 1; u <= 2 * N; ++u) {
layers[dep[u]].push_back(u);
}
for (int d = 1; d < 2 * N; ++d) {
for (const int v : layers[d]) if (!~par[v]) {
vector<int> us;
for (int u = 1; u <= 2 * N; ++u) if (dep[u] + 1 == dep[v] && dep1[u] + 1 == dep1[v]) {
us.push_back(u);
}
const int usLen = us.size();
assert(usLen);
shuffle(us.begin(), us.end(), rng);
for (int j = 0; j < usLen; ++j) {
const int u = us[j];
if (j == usLen - 1 || QueryLCA({rt}, {u, v}, u)[0]) {
par[v] = u;
break;
}
}
}
}
graph.assign(2 * N + 1, {});
for (int u = 1; u <= 2 * N; ++u) if (~par[u]) {
graph[par[u]].push_back(u);
}
dfs(rt);
return ans;
}
詳細信息
Subtask #1:
score: 3
Accepted
Test #1:
score: 3
Accepted
time: 1ms
memory: 4184kb
input:
1 1872884041 100 100 10000 10000 1 2294931821 2294931820
output:
Succeeded 0 4 0 0 2 1
result:
ok Accepted with 0+4 operations,sum of size(s)=0+0
Test #2:
score: 3
Accepted
time: 1ms
memory: 3892kb
input:
1 1977600624 100 100 10000 10000 5 621522394 621522399 2231003352 2231003338 464307841 464307837 1851407771 1851407768 2780336863 2780336849 314073909 314073902 1173467454 1173467430 4215033871 4215033843 2620057116 2620057098
output:
Succeeded 0 20 0 0 4 7 2 6 8 3 10 1 9 5
result:
ok Accepted with 0+20 operations,sum of size(s)=0+0
Test #3:
score: 3
Accepted
time: 1ms
memory: 3960kb
input:
1 1314992723 100 100 10000 10000 2 1174248192 1174248188 4206147071 4206147069 2894997654 2894997645
output:
Succeeded 0 8 0 0 4 2 1 3
result:
ok Accepted with 0+8 operations,sum of size(s)=0+0
Test #4:
score: 3
Accepted
time: 1ms
memory: 3896kb
input:
1 1466488642 100 100 10000 10000 3 1959342134 1959342129 3976386946 3976386946 1293201451 1293201449 4016912388 4016912383 46728190 46728181
output:
Succeeded 0 12 0 0 1 4 3 2 6 5
result:
ok Accepted with 0+12 operations,sum of size(s)=0+0
Test #5:
score: 3
Accepted
time: 1ms
memory: 3896kb
input:
1 1733551538 100 100 10000 10000 4 4255320958 4255320951 1233889267 1233889267 2022156010 2022156014 1746602236 1746602223 1796304111 1796304099 154520793 154520786 799267407 799267389
output:
Succeeded 0 16 0 0 5 2 1 6 4 8 7 3
result:
ok Accepted with 0+16 operations,sum of size(s)=0+0
Test #6:
score: 3
Accepted
time: 1ms
memory: 4124kb
input:
1 1103590331 100 100 10000 10000 4 3735090189 3735090176 179620503 179620501 1550955883 1550955882 3533004575 3533004552 2159969243 2159969227 2549716219 2549716202 1755562372 1755562356
output:
Succeeded 0 16 0 0 6 5 7 8 2 4 1 3
result:
ok Accepted with 0+16 operations,sum of size(s)=0+0
Test #7:
score: 3
Accepted
time: 1ms
memory: 4036kb
input:
1 1007922703 100 100 10000 10000 5 3347355425 3347355424 924935451 924935434 3554593528 3554593525 2830078883 2830078872 3185621515 3185621508 32902500 32902483 1057526055 1057526035 3737430162 3737430144 106424402 106424399
output:
Succeeded 0 20 0 0 2 3 4 7 10 1 9 6 8 5
result:
ok Accepted with 0+20 operations,sum of size(s)=0+0
Test #8:
score: 3
Accepted
time: 1ms
memory: 4120kb
input:
1 1401446296 100 100 10000 10000 5 4125806477 4125806476 1224445301 1224445291 1474144594 1474144597 2898586557 2898586536 879608888 879608877 3110900945 3110900930 2490037068 2490037051 422424582 422424570 1017432306 1017432295
output:
Succeeded 0 20 0 0 2 6 1 3 8 9 4 7 10 5
result:
ok Accepted with 0+20 operations,sum of size(s)=0+0
Test #9:
score: 3
Accepted
time: 1ms
memory: 3928kb
input:
1 1756894897 100 100 10000 10000 5 2081532117 2081532115 4275738287 4275738273 632146529 632146534 2424607270 2424607263 2157363450 2157363443 2463928559 2463928550 3381117807 3381117785 4186361975 4186361960 3382018566 3382018532
output:
Succeeded 0 20 0 0 4 1 7 9 3 2 6 10 8 5
result:
ok Accepted with 0+20 operations,sum of size(s)=0+0
Test #10:
score: 3
Accepted
time: 1ms
memory: 4120kb
input:
1 1465320926 100 100 10000 10000 5 2695813796 2695813789 3049323317 3049323309 231883125 231883119 3073242409 3073242392 1388430756 1388430755 183732731 183732729 1423324287 1423324267 3470698806 3470698795 354321542 354321525
output:
Succeeded 2 20 2 4 6 2 9 3 7 10 1 4 8 5
result:
ok Accepted with 2+20 operations,sum of size(s)=2+4
Subtask #2:
score: 6
Accepted
Test #11:
score: 6
Accepted
time: 0ms
memory: 3940kb
input:
2 755640766 20000 10000 200000 200000 100 4287951944 4287951892 218593589 218593610 2907028702 2907028595 100123056 100122959 3149201405 3149201229 3454414687 3454414608 1901257489 1901257490 1532337798 1532337686 836222214 836222227 187381584 187381446 1847826999 1847827071 2868544732 2868544653 41...
output:
Succeeded 1183 400 1183 2366 71 13 76 20 57 163 170 18 137 23 30 68 63 149 144 165 1 31 70 97 79 65 138 173 6 145 53 121 198 33 16 2 127 174 9 60 28 45 88 58 133 17 29 82 27 59 64 122 41 47 37 54 62 131 93 90 44 114 85 134 124 150 158 166 116 22 14 119 142 87 69 46 56 99 15 42 193 8 195 19 61 78 164...
result:
ok Accepted with 1183+400 operations,sum of size(s)=1183+2366
Test #12:
score: 6
Accepted
time: 1ms
memory: 3944kb
input:
2 587237803 20000 10000 200000 200000 98 217447661 217447616 2463641363 2463641406 3373538248 3373538212 3950835015 3950834997 2221322822 2221322872 146298284 146298141 531452967 531453049 3941453926 3941454046 3084946195 3084946149 1270490559 1270490368 1019372524 1019372347 2754251578 2754251434 5...
output:
Succeeded 709 392 709 1418 10 56 57 48 71 47 22 51 131 127 93 182 161 104 85 19 18 62 30 73 40 187 81 121 2 98 111 169 145 176 82 122 13 136 113 91 72 130 96 101 148 49 65 159 120 151 90 192 112 108 44 64 29 117 31 116 80 147 26 194 163 32 4 171 1 12 14 61 17 33 191 78 55 128 28 150 141 39 23 36 5 9...
result:
ok Accepted with 709+392 operations,sum of size(s)=709+1418
Test #13:
score: 6
Accepted
time: 1ms
memory: 4004kb
input:
2 184226984 20000 10000 200000 200000 99 547000384 547000355 872110096 872110116 1289538184 1289538247 3616724666 3616724569 636341527 636341600 2563522202 2563522274 2177548205 2177548137 3089489449 3089489506 3156380759 3156380856 944465184 944465231 823584265 823584499 333051247 333051023 1754238...
output:
Succeeded 649 396 649 1298 100 163 131 77 13 31 140 32 99 185 47 69 132 96 164 147 186 9 84 188 1 192 36 27 18 7 39 53 97 127 191 8 59 113 141 137 87 33 2 187 15 66 68 82 41 63 50 60 14 20 34 72 11 88 5 38 93 86 24 151 29 23 154 78 22 79 119 122 28 134 133 143 156 139 3 157 115 175 4 30 58 83 181 18...
result:
ok Accepted with 649+396 operations,sum of size(s)=649+1298
Test #14:
score: 6
Accepted
time: 1ms
memory: 4004kb
input:
2 1727138930 20000 10000 200000 200000 99 3247483138 3247483162 4084597375 4084597429 2636905019 2636904971 946660642 946660700 902149328 902149350 2382255766 2382255865 839303047 839303137 1923325547 1923325538 653690681 653690724 4175318562 4175318731 3824454449 3824454478 2650316775 2650316587 58...
output:
Succeeded 1090 396 1090 2180 59 72 32 80 184 5 17 177 27 196 101 102 161 120 111 182 133 134 117 112 105 118 132 140 109 119 125 145 178 30 194 22 92 108 153 77 6 36 1 56 103 33 123 41 93 168 167 173 193 66 141 174 40 64 46 150 85 197 7 37 69 81 45 25 191 76 31 164 19 187 163 115 10 55 73 78 35 15 2...
result:
ok Accepted with 1090+396 operations,sum of size(s)=1090+2180
Test #15:
score: 6
Accepted
time: 1ms
memory: 4236kb
input:
2 1220143324 20000 10000 200000 200000 100 693596313 693596332 62576744 62576808 1955936424 1955936264 3872655610 3872655531 1013531683 1013531829 2985331208 2985331369 2406362516 2406362582 1657349556 1657349602 1003910904 1003910721 1096398841 1096398795 1778724026 1778723842 713692268 713692342 2...
output:
Succeeded 896 400 896 1792 113 118 153 168 181 119 116 129 190 147 173 130 106 121 160 200 144 138 101 120 175 136 140 164 189 91 185 137 22 155 126 158 183 187 115 146 125 166 103 198 105 143 191 18 57 117 35 12 55 156 27 46 148 167 16 45 70 88 30 97 179 31 92 107 177 77 145 82 169 180 85 95 71 110...
result:
ok Accepted with 896+400 operations,sum of size(s)=896+1792
Test #16:
score: 6
Accepted
time: 1ms
memory: 4228kb
input:
2 442130601 20000 10000 200000 200000 100 3144169521 3144169542 3602466736 3602466791 26223369 26223537 866636824 866636802 1192888944 1192888905 2768179340 2768179316 992350648 992350588 1606144049 1606144118 2825460299 2825460268 2783910130 2783910118 403964521 403964517 445570315 445570360 126026...
output:
Succeeded 658 400 658 1316 144 71 46 24 139 4 40 55 28 30 143 141 50 72 33 191 106 129 112 9 147 52 132 149 156 17 45 82 200 11 36 131 140 91 117 130 183 115 41 100 18 54 133 194 56 158 168 26 198 107 199 159 145 127 114 167 150 182 195 10 179 110 174 120 124 184 42 88 58 68 137 95 74 22 3 29 196 87...
result:
ok Accepted with 658+400 operations,sum of size(s)=658+1316
Test #17:
score: 6
Accepted
time: 1ms
memory: 3992kb
input:
2 949343282 20000 10000 200000 200000 97 1170242583 1170242801 4247921283 4247921322 1529679099 1529679065 1051858814 1051858774 3893889966 3893889994 3958531511 3958531352 2502650796 2502650862 813064156 813064047 1048780624 1048780414 3993902928 3993902731 803344004 803343802 3547336751 3547336794...
output:
Succeeded 450 388 450 900 148 76 120 157 14 26 151 154 12 34 170 169 175 134 106 167 180 190 35 104 37 168 177 55 78 147 11 27 90 188 23 7 24 74 139 131 108 15 52 186 93 161 38 47 13 149 67 152 59 171 61 119 126 173 64 124 20 71 83 113 116 86 105 129 42 185 60 65 140 41 89 107 103 80 181 192 194 51 ...
result:
ok Accepted with 450+388 operations,sum of size(s)=450+900
Test #18:
score: 6
Accepted
time: 1ms
memory: 4000kb
input:
2 734508634 20000 10000 200000 200000 98 213911368 213911499 2488548419 2488548499 516780967 516780705 3349442602 3349442765 857297035 857297029 1348690665 1348690579 1548954171 1548954133 3605026599 3605026727 182470368 182470292 1455323224 1455323364 2179991017 2179991001 3209649930 3209649949 145...
output:
Succeeded 1260 392 1260 2520 126 42 34 107 32 43 1 24 130 44 49 15 20 136 146 10 102 135 60 117 30 147 76 111 141 142 7 148 97 17 103 129 19 11 25 28 121 84 18 50 87 176 78 55 159 4 2 31 23 83 112 64 5 33 158 144 9 77 16 93 184 152 194 12 63 171 172 26 101 186 92 95 110 119 175 75 157 100 21 36 185 ...
result:
ok Accepted with 1260+392 operations,sum of size(s)=1260+2520
Subtask #3:
score: 8
Accepted
Test #19:
score: 8
Accepted
time: 2ms
memory: 4700kb
input:
3 397960972 100000 4000 200000 200000 1000 3136131587 3136131078 3887641427 3887642253 280951546 280951198 124187343 124186744 3948118891 3948118785 2174920490 2174920140 3041102338 3041103477 489656932 489656480 3093689453 3093690199 3027233105 3027233261 967551350 967551424 215138938 215138436 251...
output:
Succeeded 0 4000 0 0 1740 1003 1560 1938 1246 1780 1573 1476 1826 1535 1031 1618 1661 1100 1527 1892 1660 1591 1354 1792 1594 1117 1097 1519 1919 1341 1846 1160 1853 1548 1863 1016 1445 1241 1481 1207 1371 1103 1646 1779 1329 1435 1162 1515 1342 1464 1756 1040 1383 1416 1724 1301 1061 1382 1196 1085...
result:
ok Accepted with 0+4000 operations,sum of size(s)=0+0
Test #20:
score: 8
Accepted
time: 2ms
memory: 4592kb
input:
3 755523510 100000 4000 200000 200000 999 837610461 837610217 209552123 209552158 2202987134 2202987346 3933843218 3933843131 2783546817 2783547323 415275024 415276142 13876082 13876176 448702939 448703028 1294393612 1294394136 3910397405 3910397094 3416630484 3416630700 3215888394 3215888948 124509...
output:
Succeeded 0 3996 0 0 198 827 112 795 703 616 809 427 584 743 818 611 649 805 42 438 1863 330 1562 251 922 322 1460 130 723 928 868 579 606 701 641 761 711 339 60 786 581 237 759 256 502 651 634 368 1878 340 491 118 1638 924 6 411 437 224 529 484 1 171 617 435 828 876 893 549 160 62 364 94 765 942 50...
result:
ok Accepted with 0+3996 operations,sum of size(s)=0+0
Test #21:
score: 8
Accepted
time: 2ms
memory: 4616kb
input:
3 2042812129 100000 4000 200000 200000 998 3075748308 3075748844 1569673104 1569672823 3968525693 3968524672 2108387096 2108386924 3356390455 3356391094 3372812724 3372813320 3904961007 3904958854 4029621824 4029621345 4114486509 4114486281 1387138301 1387138067 124292409 124292880 3935517019 393551...
output:
Succeeded 0 3992 0 0 1947 1484 1581 1267 1561 1375 1992 1379 1868 1655 1545 1678 1945 1279 1478 1065 1965 1553 1953 1368 1682 1835 1823 1176 1376 1063 1411 1073 1284 1816 1912 1362 1165 1483 1815 1640 1177 1703 1534 1230 1185 1338 1742 1322 1957 1936 1528 1594 1693 1210 1764 1852 1071 1979 1099 1012...
result:
ok Accepted with 0+3992 operations,sum of size(s)=0+0
Test #22:
score: 8
Accepted
time: 0ms
memory: 4620kb
input:
3 1597029305 100000 4000 200000 200000 998 2980500284 2980500361 2247716226 2247714887 988714926 988714253 1734063960 1734064121 2359409219 2359409008 411968449 411968499 155449826 155451318 555582797 555582911 45071917 45071590 1460631113 1460629818 3059213925 3059213709 2094519932 2094519250 38721...
output:
Succeeded 0 3992 0 0 1767 345 262 528 580 38 1719 910 1612 226 1391 1016 1557 719 431 130 1537 941 1894 322 1572 1024 1713 1082 1539 697 846 1712 1100 1898 293 1595 1970 1512 119 685 748 1521 282 245 551 419 1301 1688 857 774 488 1177 1854 1558 1950 1579 1136 576 1600 219 760 1643 167 887 1717 1762 ...
result:
ok Accepted with 0+3992 operations,sum of size(s)=0+0
Test #23:
score: 8
Accepted
time: 2ms
memory: 4684kb
input:
3 1564467111 100000 4000 200000 200000 1000 1236547222 1236547523 2135786902 2135787064 2523622442 2523622714 1532839693 1532838477 818219113 818220033 676117995 676118414 570037547 570036834 514220702 514220842 3399494183 3399495268 2654728241 2654729498 1495037081 1495037412 2062047312 2062048382 ...
output:
Succeeded 0 4000 0 0 257 1077 429 825 365 1158 1910 1574 178 1855 1371 1318 1452 960 141 558 1666 607 37 1482 281 1130 1775 1710 1008 1257 415 1773 1409 1804 1557 519 57 1335 1163 839 389 444 431 1554 1981 757 326 1585 36 1885 1882 19 1093 1307 180 866 1774 1324 1572 1355 1058 1280 413 1397 481 526 ...
result:
ok Accepted with 0+4000 operations,sum of size(s)=0+0
Test #24:
score: 8
Accepted
time: 3ms
memory: 4816kb
input:
3 213138336 100000 4000 200000 200000 999 1130123143 1130122958 687694550 687694095 929485247 929484829 3680984473 3680983776 3074105335 3074104892 1342732123 1342731927 1364720805 1364720672 2077428724 2077428538 28510235 28511166 937776441 937776505 3414480885 3414480666 3148182306 3148181509 3485...
output:
Succeeded 0 3996 0 0 522 214 776 308 400 165 34 182 1509 433 107 292 599 474 257 675 568 53 306 20 216 901 415 238 589 740 583 337 664 12 317 132 1493 391 136 880 1095 156 484 1762 372 488 272 981 943 689 2 476 686 1117 651 1821 935 859 854 624 364 460 823 302 889 1189 407 980 1662 1080 1776 1578 19...
result:
ok Accepted with 0+3996 operations,sum of size(s)=0+0
Test #25:
score: 8
Accepted
time: 2ms
memory: 4916kb
input:
3 924980045 100000 4000 200000 200000 998 1666991999 1666991279 148686690 148685590 324531768 324531788 2043725358 2043725640 1133184972 1133184631 853139746 853139683 1770837584 1770837761 1481554510 1481554714 1372084869 1372084950 1756084441 1756085236 2107756067 2107756010 3377586774 3377586312 ...
output:
Succeeded 0 3992 0 0 949 582 825 1464 890 664 670 407 358 674 445 423 534 808 327 1963 549 360 878 219 851 860 623 665 419 533 1161 141 356 59 244 575 986 232 726 384 127 1373 915 364 806 353 654 463 785 333 75 1408 361 780 24 486 155 458 137 547 994 453 916 965 559 609 112 892 958 887 477 1733 61 4...
result:
ok Accepted with 0+3992 operations,sum of size(s)=0+0
Test #26:
score: 8
Accepted
time: 0ms
memory: 4672kb
input:
3 774146483 100000 4000 200000 200000 999 3478842381 3478843345 606332045 606332562 2701123033 2701123563 3216754910 3216755036 1217043418 1217043429 1501603802 1501603474 1778234551 1778234769 1444790432 1444791022 2502984240 2502984288 856947428 856947122 1363006586 1363006323 1995567044 199556642...
output:
Succeeded 0 3996 0 0 197 1477 890 865 54 698 89 88 313 915 831 464 948 67 411 98 610 337 402 359 195 862 677 110 85 671 1432 444 225 794 1884 952 425 883 930 192 815 903 859 7 430 101 347 828 477 437 187 1305 499 558 599 584 549 721 309 594 788 435 502 69 40 818 911 653 531 780 71 183 877 148 812 40...
result:
ok Accepted with 0+3996 operations,sum of size(s)=0+0
Test #27:
score: 8
Accepted
time: 2ms
memory: 4664kb
input:
3 82266506 100000 4000 200000 200000 999 3056998601 3056998876 1887811910 1887812134 1616045105 1616045172 1784967209 1784967615 650919784 650918837 4290024152 4290024396 154133667 154133653 754913686 754913998 3014551042 3014550770 3332698384 3332698431 304657473 304657856 1466514044 1466515029 313...
output:
Succeeded 0 3996 0 0 569 426 125 954 850 1700 743 692 195 417 668 1125 962 971 563 270 865 421 655 285 772 989 525 467 317 348 412 122 1665 59 73 633 527 62 709 671 157 558 402 156 910 918 707 886 225 799 410 613 737 738 472 115 321 795 777 159 134 263 963 362 1175 388 985 166 409 301 407 193 182 94...
result:
ok Accepted with 0+3996 operations,sum of size(s)=0+0
Test #28:
score: 8
Accepted
time: 3ms
memory: 4656kb
input:
3 1746021239 100000 4000 200000 200000 1000 3649747382 3649747015 3895797253 3895797184 4001365723 4001365122 564220364 564220085 362710516 362710456 2800243662 2800243024 2073687310 2073687797 145701776 145700951 492159209 492159366 3076148714 3076148148 1548738755 1548739322 3580263095 3580262700 ...
output:
Succeeded 0 4000 0 0 1505 461 278 68 172 488 203 562 808 724 766 209 527 423 907 998 336 1849 408 410 1639 333 396 588 704 389 96 837 505 156 206 963 212 149 124 355 745 524 232 427 996 640 251 552 912 262 197 249 44 595 469 141 296 91 358 681 274 850 526 1096 1266 1649 1137 1015 1653 1029 1838 1755...
result:
ok Accepted with 0+4000 operations,sum of size(s)=0+0
Subtask #4:
score: 9
Accepted
Test #29:
score: 9
Accepted
time: 4ms
memory: 4380kb
input:
4 1084797752 100000 4000 200000 200000 1000 3456536122 3456534568 249115651 249115791 3576312078 3576312237 1880897416 1880895547 1944688480 1944688327 248846397 248847256 3567405828 3567405196 1084965392 1084965206 1435956247 1435955729 3887033767 3887032464 307260230 307260472 1476733874 147673312...
output:
Succeeded 11852 4000 11852 23704 1382 1537 882 77 1830 1899 1556 1282 195 377 1697 668 1548 1710 939 603 1809 1902 1321 1177 1030 1883 266 721 1458 1981 1739 1538 1130 1819 1011 896 508 230 1339 653 539 647 478 815 1493 775 884 344 1110 962 1568 849 71 669 59 518 1170 422 1843 1584 1017 1994 1549 16...
result:
ok Accepted with 11852+4000 operations,sum of size(s)=11852+23704
Test #30:
score: 9
Accepted
time: 3ms
memory: 4404kb
input:
4 583125216 100000 4000 200000 200000 1000 1729488108 1729488695 2234303914 2234304325 546617298 546616102 842050918 842051470 1951502077 1951501331 4271815110 4271815116 761587681 761586756 2172224244 2172223957 2934428060 2934428507 1919912734 1919912263 1067575137 1067574604 3411448089 3411447166...
output:
Succeeded 40 4000 40 80 1485 1452 1301 1423 1943 1225 1686 1565 1787 1553 1656 1334 1023 1070 1342 1111 1407 1695 1967 1663 1521 1372 1507 1438 1418 1025 1979 1066 1280 1805 1445 1343 1489 119 30 863 805 47 195 360 617 801 807 188 334 504 266 163 991 404 190 236 825 832 978 1000 13 754 987 651 506 7...
result:
ok Accepted with 40+4000 operations,sum of size(s)=40+80
Test #31:
score: 9
Accepted
time: 4ms
memory: 4364kb
input:
4 1854731567 100000 4000 200000 200000 998 946750857 946749479 898868556 898868101 2271278746 2271277916 1796596168 1796596321 161487283 161486866 1033814116 1033814195 2395521961 2395522326 1468519383 1468519080 2816096970 2816096367 1556209002 1556208501 3292442187 3292440851 1135140030 1135140110...
output:
Succeeded 11431 3992 11431 22862 1994 145 798 954 1916 512 436 723 1763 1851 1217 1351 1551 1545 1332 1876 1722 377 249 737 1234 395 34 482 1186 1926 1295 1307 502 1604 675 1318 746 902 15 865 1536 147 1154 1494 949 92 1428 1714 126 256 1287 302 912 434 617 883 111 962 483 551 1269 1856 1133 611 199...
result:
ok Accepted with 11431+3992 operations,sum of size(s)=11431+22862
Test #32:
score: 9
Accepted
time: 3ms
memory: 4624kb
input:
4 2073988041 100000 4000 200000 200000 998 3168161931 3168162584 641363905 641362895 3784715137 3784714618 3548409026 3548409673 2737710699 2737710016 3324804481 3324803425 60841104 60840338 2010919705 2010919496 2362840315 2362840326 369236350 369237998 3600238093 3600237006 75182169 75182747 23418...
output:
Succeeded 32470 3992 32470 64940 1633 1932 1009 210 1101 98 1401 1167 424 1221 954 812 910 1708 1236 1856 1923 1719 876 44 368 14 281 688 2 38 1527 1046 1546 133 495 767 383 164 865 1615 625 165 328 1720 198 788 454 620 646 898 1042 643 1284 652 856 282 1412 1957 612 479 541 29 1576 1066 1726 1828 7...
result:
ok Accepted with 32470+3992 operations,sum of size(s)=32470+64940
Test #33:
score: 9
Accepted
time: 5ms
memory: 4376kb
input:
4 1770340944 100000 4000 200000 200000 998 619870796 619870703 3121053787 3121054050 4195183636 4195182734 3139119614 3139119172 3634777517 3634777854 3433281440 3433281395 1485638549 1485638667 1231357421 1231357552 1705009906 1705010057 3514693637 3514694012 4265358236 4265358262 964902776 9649023...
output:
Succeeded 15050 3992 15050 30100 1575 1373 1877 1214 131 919 1335 739 1032 699 1074 1309 1106 1778 1517 1434 971 827 1346 1717 1164 964 1747 1597 1614 1899 227 478 1109 1389 235 344 1253 648 1394 790 992 973 272 363 1051 1270 404 1601 113 498 1690 1670 1604 570 392 579 19 128 1485 1734 1143 1343 65 ...
result:
ok Accepted with 15050+3992 operations,sum of size(s)=15050+30100
Test #34:
score: 9
Accepted
time: 7ms
memory: 4596kb
input:
4 402901589 100000 4000 200000 200000 1000 1228378193 1228378597 1873458243 1873458214 2590411172 2590411391 3596693908 3596693672 442343415 442341879 1371534355 1371535333 1713867379 1713867258 2725534246 2725534433 3960722519 3960721503 1846001052 1846001387 2925453274 2925452776 1709191822 170919...
output:
Succeeded 40774 4000 40774 81548 1781 1692 1782 1765 1011 1381 72 866 1871 1762 1291 1544 1210 1458 1247 400 1860 607 1800 1093 1883 1962 1744 1202 1543 311 528 902 216 130 1592 1346 1539 1564 269 806 1926 106 1572 921 137 716 151 632 1568 1617 1638 1878 194 503 1700 803 1833 994 809 913 1082 1328 1...
result:
ok Accepted with 40774+4000 operations,sum of size(s)=40774+81548
Test #35:
score: 9
Accepted
time: 7ms
memory: 4436kb
input:
4 816997292 100000 4000 200000 200000 1000 3528745308 3528745448 2554369604 2554370028 2428697713 2428697760 2283123422 2283123636 2317970372 2317971439 3486243575 3486243354 914803066 914803223 3870938133 3870937913 833775363 833775109 133819724 133819108 4164722879 4164723079 4283955483 4283956051...
output:
Succeeded 42118 4000 42118 84236 1236 201 1157 408 993 666 1323 1519 1327 1354 1412 1279 50 888 1829 1883 1263 687 941 961 521 343 1554 1652 220 1776 1155 1866 117 317 1059 483 762 41 28 119 1077 1325 1192 1828 1148 356 1021 549 1221 1302 1013 1620 1605 898 371 758 704 8 1614 1273 1022 1830 1134 175...
result:
ok Accepted with 42118+4000 operations,sum of size(s)=42118+84236
Test #36:
score: 9
Accepted
time: 7ms
memory: 4368kb
input:
4 448483706 100000 4000 200000 200000 1000 3294405857 3294406138 1334269388 1334268750 3218236158 3218236229 1172020015 1172020961 4267095542 4267095785 884218942 884218794 2727697704 2727696787 4040088499 4040088016 3925649252 3925648708 3602778930 3602778977 25062275 25062940 782102904 782103485 4...
output:
Succeeded 36997 4000 36997 73994 1270 1102 1813 1770 1512 681 1957 1236 1628 944 1326 1707 1776 1425 1762 334 333 208 1995 1486 1724 1116 435 786 420 120 1008 1258 1583 1727 1797 1817 1155 1949 830 926 1960 95 1529 790 341 491 1420 1271 240 554 1113 1601 540 696 826 998 2 955 1306 1902 503 529 1243 ...
result:
ok Accepted with 36997+4000 operations,sum of size(s)=36997+73994
Test #37:
score: 9
Accepted
time: 3ms
memory: 4484kb
input:
4 1345753551 100000 4000 200000 200000 1000 2505101245 2505099844 1064732384 1064732096 3514288208 3514289196 4285598713 4285598588 289512304 289512216 961277738 961276571 270988037 270987782 351038556 351038779 2313748299 2313748400 3024327557 3024327268 1007549868 1007549449 3171882049 3171882337 ...
output:
Succeeded 608 4000 608 1216 1610 723 1238 471 1391 29 1456 693 1449 1879 1422 11 1047 93 1876 48 1455 164 1956 1019 1765 412 1667 249 1353 1094 1161 512 1571 145 1469 1484 1534 38 1614 1218 1638 390 1759 1577 1027 462 1961 176 1515 629 1659 128 1079 146 861 148 1734 357 1465 438 1236 1720 1375 1357 ...
result:
ok Accepted with 608+4000 operations,sum of size(s)=608+1216
Test #38:
score: 9
Accepted
time: 3ms
memory: 4408kb
input:
4 163480472 100000 4000 200000 200000 998 2002085756 2002085748 2640607139 2640605823 836452341 836452238 179712028 179712352 1546416317 1546416341 3648734029 3648733547 4142213872 4142214412 711606286 711606592 1732581221 1732580465 2405962256 2405961750 1644716795 1644717277 589785362 589783494 12...
output:
Succeeded 187 3992 187 374 1105 1616 1410 586 1254 650 1885 150 1028 494 1717 1273 1192 1416 67 1408 602 1100 162 496 1005 607 894 539 1107 486 1730 44 1866 273 365 1425 984 759 1908 448 1184 1304 94 1200 1554 1087 725 298 1287 621 205 469 1952 1290 1392 489 805 569 1722 576 104 121 246 385 1029 175...
result:
ok Accepted with 187+3992 operations,sum of size(s)=187+374
Subtask #5:
score: 5.67076
Acceptable Answer
Test #39:
score: 11
Accepted
time: 6ms
memory: 4656kb
input:
5 1720909858 50000 4000 200000 100000 998 195378529 195378218 2138942224 2138942028 2421726252 2421725316 2614111628 2614111784 3778296551 3778295886 3346314089 3346313971 701234060 701233448 279201944 279202119 69826850 69826766 2173156660 2173157126 2982274003 2982273048 2306106121 2306107345 2808...
output:
Succeeded 38945 3992 38945 77890 227 1035 186 1272 477 510 329 944 274 31 214 540 854 710 110 1550 777 307 1921 1086 743 1137 1684 1788 1825 342 147 263 560 1781 662 93 1226 372 1473 502 562 889 873 82 1161 1654 812 896 119 431 142 257 901 911 750 448 1599 1686 1009 1183 1080 1596 486 970 1446 569 2...
result:
ok Accepted with 38945+3992 operations,sum of size(s)=38945+77890
Test #40:
score: 11
Accepted
time: 6ms
memory: 4692kb
input:
5 1942257410 50000 4000 200000 100000 999 164109252 164108690 821766476 821766590 800182177 800180581 3645999838 3646000976 4086503876 4086505410 2171679381 2171678745 2952329225 2952330453 1354218636 1354219071 1174819694 1174820521 2253012620 2253012650 1329779110 1329779087 2814346065 2814346500 ...
output:
Succeeded 7960 3996 7960 15920 884 1125 247 1210 167 1675 842 548 998 218 1845 1394 676 505 1926 275 75 1232 393 710 1012 1061 355 1833 940 1960 594 7 966 1614 1337 189 1966 525 129 439 1982 959 1478 577 713 1854 1109 1853 1097 773 79 1305 757 77 1102 64 1485 369 336 827 904 745 1792 1067 426 834 15...
result:
ok Accepted with 7960+3996 operations,sum of size(s)=7960+15920
Test #41:
score: 11
Accepted
time: 4ms
memory: 4496kb
input:
5 161065852 50000 4000 200000 100000 1000 2966551129 2966552287 2856618787 2856618848 3795294524 3795295808 2757765097 2757764165 676105640 676105847 570204851 570205160 511088706 511090077 3497329264 3497329269 3725322378 3725322886 527017111 527016211 4071607765 4071607337 2817593784 2817593642 15...
output:
Succeeded 1071 4000 1071 2142 98 1697 1779 1719 1073 203 1646 1274 666 1359 1914 1959 1328 1351 1812 220 1695 1307 1875 410 1058 1198 664 660 544 265 1358 768 1809 1651 1574 1587 39 105 1290 814 1747 108 1834 1320 1319 833 492 1244 313 1980 323 510 769 613 289 629 1879 527 826 577 1342 284 1702 1718...
result:
ok Accepted with 1071+4000 operations,sum of size(s)=1071+2142
Test #42:
score: 5.67076
Acceptable Answer
time: 12ms
memory: 4660kb
input:
5 777230405 50000 4000 200000 100000 999 3830467265 3830466694 1849159126 1849158949 2825053043 2825052212 2761591040 2761591070 939276197 939275664 3367167096 3367167288 3727731406 3727730932 406701926 406701618 530187802 530186715 3962995171 3962996546 1787609584 1787609620 993000803 993000542 158...
output:
Succeeded 68200 3996 68200 136400 962 525 1053 85 320 971 830 998 437 782 549 1593 540 1812 55 122 589 256 207 1501 799 499 1204 1600 944 34 991 730 1220 878 1442 1269 18 823 866 1912 355 843 597 791 591 1509 1437 1789 117 141 1756 1217 1477 1977 307 289 205 303 223 267 1955 950 32 909 1087 230 502 ...
result:
points 0.5155240 Accepted with 68200+3996 operations,sum of size(s)=68200+136400
Test #43:
score: 11
Accepted
time: 7ms
memory: 4436kb
input:
5 97972513 50000 4000 200000 100000 999 654921388 654921281 3336987454 3336987177 439399097 439398662 1551555981 1551555288 3555879532 3555880729 2903638861 2903639277 257794283 257794433 3826111358 3826111966 1708274143 1708274017 3746235685 3746236123 907908447 907908765 4116365217 4116364822 1582...
output:
Succeeded 25996 3996 25996 51992 644 473 52 680 725 1090 928 932 1236 1814 1485 1836 1131 942 1733 312 510 552 48 373 1047 1932 25 1301 157 1928 230 1401 1822 1157 4 1613 797 165 494 1053 527 582 568 858 1586 1609 200 1775 1522 1592 1359 639 609 660 355 425 302 1021 95 606 1369 380 574 1790 888 1590...
result:
ok Accepted with 25996+3996 operations,sum of size(s)=25996+51992
Test #44:
score: 11
Accepted
time: 7ms
memory: 4628kb
input:
5 397162223 50000 4000 200000 100000 1000 2103775764 2103775539 3507938589 3507938863 4080657108 4080657210 2492592687 2492593001 111756474 111755329 3545417212 3545415789 3115563885 3115563458 2404092040 2404092248 1717324095 1717323827 2910355772 2910355898 40550063 40549395 1332934233 1332933830 ...
output:
Succeeded 27643 4000 27643 55286 1449 1435 1281 1175 1243 1373 967 882 1121 530 1731 1975 846 1996 751 561 1919 63 1548 1405 1105 473 1815 933 684 15 1108 124 1496 970 241 187 1311 1498 1649 1948 677 1359 814 1927 11 1987 891 614 41 376 1006 527 1513 1751 1216 427 1271 1394 550 791 647 726 981 189 1...
result:
ok Accepted with 27643+4000 operations,sum of size(s)=27643+55286
Test #45:
score: 11
Accepted
time: 2ms
memory: 4680kb
input:
5 1695502059 50000 4000 200000 100000 1000 700852541 700853138 286392703 286393228 862046288 862047179 1594299681 1594299408 3210366802 3210366961 1413959809 1413960445 3698437765 3698437869 1377184122 1377184197 281217513 281217619 145372596 145373148 502398350 502398463 2741843047 2741843594 34564...
output:
Succeeded 0 4000 0 0 1551 1171 1879 1323 1027 1452 1185 1414 1513 1943 1794 1775 1356 1799 1703 1803 1476 1228 1041 1327 1853 1674 1366 1595 1809 1326 1539 1899 1549 1436 1813 1328 1723 1147 1747 1206 1804 1043 1375 1756 1462 1096 1573 1529 1754 1307 1428 1415 1504 1969 1710 1220 1240 1212 1197 1555...
result:
ok Accepted with 0+4000 operations,sum of size(s)=0+0
Test #46:
score: 11
Accepted
time: 3ms
memory: 4624kb
input:
5 1256148136 50000 4000 200000 100000 999 2016310630 2016310917 2107471344 2107470258 3472709132 3472709188 289824693 289824187 968116627 968117102 254957789 254959335 3918543752 3918543310 3679196968 3679195694 2994473794 2994473552 4244660702 4244660526 1565613257 1565613765 4153244320 4153244472 ...
output:
Succeeded 0 3996 0 0 1119 254 1348 894 140 115 382 1312 1968 1018 1197 1662 1523 1153 1223 1773 407 1100 896 1185 1752 587 231 1353 1281 156 1621 130 333 1292 1593 1990 256 1898 688 1565 1286 1564 1913 86 1317 409 142 1933 512 1884 1649 1098 742 749 1665 437 288 1924 422 997 945 1421 1447 1605 1554 ...
result:
ok Accepted with 0+3996 operations,sum of size(s)=0+0
Test #47:
score: 11
Accepted
time: 2ms
memory: 4648kb
input:
5 174080677 50000 4000 200000 100000 1000 3686639308 3686638800 2896535064 2896534994 942582287 942582342 1036404485 1036404700 2240524876 2240525002 885623407 885623800 2908065975 2908066813 132144926 132144327 4212166510 4212165968 2576925241 2576925211 2854923688 2854924082 4019207120 4019206802 ...
output:
Succeeded 0 4000 0 0 826 15 722 1642 700 588 170 383 827 63 622 480 245 87 894 392 777 893 1295 354 364 682 365 729 519 471 780 1905 528 586 806 306 246 937 410 872 96 264 183 548 376 786 229 317 19 415 860 982 986 116 598 808 418 745 212 862 214 201 581 854 730 497 422 393 458 483 635 571 1699 204 ...
result:
ok Accepted with 0+4000 operations,sum of size(s)=0+0
Test #48:
score: 11
Accepted
time: 9ms
memory: 4368kb
input:
5 1245824305 50000 4000 200000 100000 1000 3667004853 3667004169 2287697139 2287696730 2209822990 2209823892 4121239467 4121237803 1095196087 1095194911 1774546551 1774545134 1362722072 1362721338 1986032138 1986033160 3134483043 3134484458 3770232965 3770233774 4150800332 4150798469 444018341 44401...
output:
Succeeded 40287 4000 40287 80574 206 1036 559 1071 378 1534 718 1509 538 1822 600 1735 522 1287 440 1951 12 1819 815 1189 845 1199 530 1851 417 1003 623 1714 658 1732 931 1875 820 1520 580 1131 696 1243 462 1669 404 1195 790 1125 166 1584 692 1806 579 1415 783 1212 982 1501 905 1879 364 1549 599 165...
result:
ok Accepted with 40287+4000 operations,sum of size(s)=40287+80574
Test #49:
score: 11
Accepted
time: 9ms
memory: 4372kb
input:
5 1416201142 50000 4000 200000 100000 999 2694326229 2694325190 3006267026 3006266271 3590771525 3590772511 382357401 382355920 3477874958 3477875914 653232151 653234151 4226125318 4226123972 2278771395 2278772384 2110222591 2110223909 3320640593 3320639898 2013976833 2013977782 2032673776 203267476...
output:
Succeeded 43198 3996 43198 86396 90 1134 259 1725 650 1097 119 1122 964 1189 152 1443 716 1146 121 1180 687 1739 691 1073 74 1195 80 1568 351 1699 504 1454 593 1511 434 1518 598 1112 555 1452 457 1713 724 1440 980 1576 57 1280 849 1674 171 1792 615 1457 82 1880 167 1973 538 1796 396 1781 765 1136 34...
result:
ok Accepted with 43198+3996 operations,sum of size(s)=43198+86396
Subtask #6:
score: 8.83397
Acceptable Answer
Test #50:
score: 12
Accepted
time: 5ms
memory: 4428kb
input:
6 889180297 25000 4000 200000 100000 998 3680334935 3680334330 2957217208 2957215867 3096097757 3096097331 2843029536 2843030717 2270437916 2270437982 1841161075 1841160444 3671823118 3671823208 2166904224 2166903071 2760262295 2760263328 880472976 880472564 3147819342 3147820514 3366602035 33666019...
output:
Succeeded 16843 3992 16843 33686 82 268 1655 28 893 426 1071 126 1535 24 1946 1075 1865 242 40 90 1061 198 1253 1959 1520 442 1850 951 152 543 55 838 1924 1058 140 616 665 926 1898 1677 1150 1810 1975 1301 968 115 1073 1415 684 1168 1345 105 1734 1737 569 738 401 501 780 107 1054 133 312 41 896 1882...
result:
ok Accepted with 16843+3992 operations,sum of size(s)=16843+33686
Test #51:
score: 12
Accepted
time: 5ms
memory: 4624kb
input:
6 1393953829 25000 4000 200000 100000 999 945306191 945306676 862749063 862750710 1587703663 1587703760 2321904837 2321905131 3322741249 3322741330 128629140 128628755 4061072808 4061073316 3009230812 3009229891 3626184675 3626183179 3701144497 3701145089 1334455826 1334454368 3195102134 3195101407 ...
output:
Succeeded 20061 3996 20061 40122 226 1473 150 341 1287 1727 1762 1072 1492 1123 1326 1808 509 1969 1050 1138 1466 360 20 141 1479 1165 207 1000 303 598 1012 1902 107 1174 1468 103 1271 202 1108 1623 1470 1379 1541 1855 301 687 735 1833 146 928 302 705 1207 1899 1753 1305 219 817 67 1230 1700 548 570...
result:
ok Accepted with 20061+3996 operations,sum of size(s)=20061+40122
Test #52:
score: 12
Accepted
time: 4ms
memory: 4680kb
input:
6 2137907583 25000 4000 200000 100000 1000 99249012 99249101 3089074242 3089075163 3142929261 3142928885 3509452069 3509452074 4100326210 4100325388 2027856240 2027856707 1667832698 1667832002 239393593 239393607 3323558397 3323558267 87270863 87271227 2749644672 2749644377 3753692402 3753692989 671...
output:
Succeeded 7563 4000 7563 15126 188 210 304 315 16 234 34 104 146 156 168 227 250 267 299 310 64 147 154 241 251 272 343 425 1 57 75 171 200 202 322 413 292 334 872 316 361 545 559 581 640 667 694 709 731 922 1473 1317 1129 1216 1585 1062 1790 1955 1278 1746 1788 991 956 471 789 145 112 163 177 333 3...
result:
ok Accepted with 7563+4000 operations,sum of size(s)=7563+15126
Test #53:
score: 12
Accepted
time: 4ms
memory: 4428kb
input:
6 620581501 25000 4000 200000 100000 999 2430495051 2430494760 2342044260 2342044349 4168624383 4168624716 4153034330 4153033041 113541062 113539588 3734354027 3734355235 204355212 204355044 2304848470 2304848423 2783072361 2783073753 431065913 431066151 800004122 800004842 3667276533 3667275783 229...
output:
Succeeded 9629 3996 9629 19258 1612 1054 1019 1629 1101 1772 1496 1320 1861 1888 1237 1556 1140 1024 1257 1402 1302 1485 1880 1666 1 3 18 44 106 156 395 857 109 168 695 174 185 240 250 268 273 301 354 361 427 718 595 651 655 798 543 621 570 244 127 490 717 604 728 727 547 257 149 697 371 379 16 19 1...
result:
ok Accepted with 9629+3996 operations,sum of size(s)=9629+19258
Test #54:
score: 12
Accepted
time: 5ms
memory: 4420kb
input:
6 1540179210 25000 4000 200000 100000 998 908025469 908025772 4110515646 4110516139 1434161137 1434160239 4210047633 4210047681 2756906765 2756906979 773613891 773613906 3984390566 3984390788 1117864605 1117864853 379534092 379533510 3317517762 3317518164 1919343058 1919344136 1048781877 1048782644 ...
output:
Succeeded 17272 3992 17272 34544 87 172 203 256 320 425 428 590 613 791 17 27 199 534 119 128 258 262 264 278 9 16 48 51 99 152 170 215 251 255 284 286 345 353 387 403 413 435 81 156 312 360 445 521 639 644 742 744 755 762 1422 1159 1587 1211 1016 1625 1512 1314 1036 1197 1722 1786 1269 1903 1091 15...
result:
ok Accepted with 17272+3992 operations,sum of size(s)=17272+34544
Test #55:
score: 12
Accepted
time: 4ms
memory: 4676kb
input:
6 218843024 25000 4000 200000 100000 1000 4003665165 4003664581 989541263 989541162 1710766055 1710765338 3659822362 3659822800 2654208269 2654208393 1491873748 1491873450 1160537498 1160536441 3762298781 3762298020 3903551469 3903551390 4248337091 4248336400 1517118005 1517118186 399918797 39991852...
output:
Succeeded 15248 4000 15248 30496 1954 1418 1065 1648 1708 1564 1116 1667 1872 1364 1817 1970 1686 1015 1071 1977 1462 1458 1735 1382 1214 1804 1649 1587 1787 1174 511 556 741 501 10 72 457 227 946 843 21 657 889 834 936 892 472 821 623 68 614 559 83 168 124 81 74 159 208 310 325 584 594 708 714 748 ...
result:
ok Accepted with 15248+4000 operations,sum of size(s)=15248+30496
Test #56:
score: 12
Accepted
time: 5ms
memory: 4448kb
input:
6 846170590 25000 4000 200000 100000 998 1218684893 1218683879 1552665572 1552664853 3443478269 3443477570 1790763876 1790763016 1025362073 1025360149 2654707482 2654705839 1494316579 1494316380 2068116991 2068116277 331974024 331973737 1788075132 1788074334 953158534 953158009 586401169 586400597 2...
output:
Succeeded 18242 3992 18242 36484 1392 1046 1687 1472 1401 1842 1495 1959 1431 1659 1153 1511 1126 1219 1241 1217 1399 1120 1003 1722 1730 1457 1801 1578 1411 1014 1010 1327 1182 1425 1601 1405 1068 1531 1023 1949 1591 1432 7 19 22 51 223 227 234 292 303 305 352 392 395 415 421 433 462 483 695 1269 1...
result:
ok Accepted with 18242+3992 operations,sum of size(s)=18242+36484
Test #57:
score: 8.8785
Acceptable Answer
time: 3ms
memory: 4416kb
input:
6 681304959 25000 4000 200000 100000 999 2726760615 2726761129 4070002268 4070002314 2698967410 2698967313 3149535258 3149536218 3426049564 3426049397 1255425746 1255425945 273472210 273471617 432940843 432940957 539629098 539628555 625817515 625817025 2355613233 2355613594 10360141 10360443 3239718...
output:
Succeeded 26992 3996 26992 53984 1145 1991 1403 1982 1110 1747 1206 1547 1240 1614 1698 1026 1574 1303 1304 1035 1418 1700 1591 1911 1288 1438 1882 1951 1756 1969 1122 1287 1657 1864 1775 1019 1498 1266 1557 1955 1569 1475 1168 1463 1589 1739 1976 1743 1036 1581 1638 1673 1857 1805 1192 1459 1280 11...
result:
points 0.73987522560 Accepted with 26992+3996 operations,sum of size(s)=26992+53984
Test #58:
score: 8.83397
Acceptable Answer
time: 3ms
memory: 4360kb
input:
6 1240372772 25000 4000 200000 100000 1000 1759289079 1759288926 1933352834 1933352077 347838835 347839028 2202749992 2202750871 3939036060 3939035178 3009870817 3009869983 3748040393 3748040424 864310002 864310105 1129152802 1129153119 718780908 718780600 1884330497 1884330296 2050569859 2050569350...
output:
Succeeded 27100 4000 27100 54200 1983 1500 1121 1209 1105 1689 1026 1292 1456 1926 1296 1461 1350 1671 1079 1818 1603 1146 1190 1822 1485 1443 1130 1424 1368 1615 1519 1868 1293 1728 1085 1096 1436 1956 1198 1285 1594 1462 1320 1781 1012 1684 1616 1040 1174 1187 1685 1016 1364 1474 1435 1555 1912 10...
result:
points 0.7361640 Accepted with 27100+4000 operations,sum of size(s)=27100+54200
Subtask #7:
score: 0
Wrong Answer
Test #59:
score: 7.27495
Acceptable Answer
time: 8ms
memory: 4588kb
input:
7 1561772597 25000 4000 200000 100000 1000 834919143 834919090 162625904 162627303 1067517190 1067517712 3410644901 3410644677 2728503196 2728502622 4133685425 4133685598 976760503 976760426 2101358026 2101358499 3583017242 3583017016 1743218912 1743220527 2609984627 2609985177 3915259025 3915259188...
output:
Succeeded 33957 4000 33957 67914 969 1590 336 427 1920 1361 223 343 354 918 865 94 680 1951 50 1750 1986 185 763 1342 730 1537 1311 1601 1849 143 741 980 1783 924 721 1136 629 1571 63 914 606 1300 1743 174 1898 710 179 1580 25 119 214 789 623 693 931 937 419 473 11 28 10 113 1268 952 1490 964 655 10...
result:
points 0.51963913960 Accepted with 33957+4000 operations,sum of size(s)=33957+67914
Test #60:
score: 14
Accepted
time: 0ms
memory: 4656kb
input:
7 1336630764 25000 4000 200000 100000 999 3754204676 3754204263 661669146 661669691 3383866850 3383866634 4286058306 4286058462 275363558 275362939 490879941 490879205 3048247936 3048247911 60895431 60895902 2012261918 2012261908 2305570243 2305570248 2756619485 2756618373 766927763 766927449 261527...
output:
Succeeded 1 3996 1 2 671 1787 232 899 994 457 290 819 42 455 416 607 904 550 225 726 477 449 909 952 369 916 269 727 563 661 1548 364 889 742 375 850 54 339 108 303 917 805 468 927 892 217 444 543 176 1288 475 554 564 721 267 857 395 160 1975 183 351 708 995 409 948 185 415 144 408 26 320 373 466 41...
result:
ok Accepted with 1+3996 operations,sum of size(s)=1+2
Test #61:
score: 14
Accepted
time: 4ms
memory: 4536kb
input:
7 1779405874 25000 4000 200000 100000 1000 4131992564 4131991606 1062232027 1062231506 3582875319 3582875068 1679869647 1679869620 3772280193 3772280538 4214125072 4214124839 2659083848 2659083347 1373877441 1373877158 1844973250 1844972076 3526061965 3526060499 2547082343 2547083157 1838200915 1838...
output:
Succeeded 329 4000 329 658 284 1524 970 1339 1905 1021 1299 1480 785 387 3 845 1895 727 355 1235 737 1619 311 1604 732 402 1189 494 1808 300 1008 1551 1820 23 1776 448 1669 1674 959 1153 1826 1749 353 1417 1630 107 304 1459 234 139 571 1896 741 994 616 216 1408 1747 1027 1512 179 1842 1698 1445 1603...
result:
ok Accepted with 329+4000 operations,sum of size(s)=329+658
Test #62:
score: 0
Wrong Answer
time: 9ms
memory: 4144kb
input:
7 1570401939 25000 4000 200000 100000 998 3148646883 3148647333 3472091054 3472090123 278894780 278894651 57610944 57610331 1860420864 1860420782 2989090556 2989090327 4158835568 4158834777 196113056 196114393 2109982628 2109981735 3313427840 3313427593 1791526870 1791526564 871045252 871046635 1321...
output:
Failed Limit of C1 exceeded
result:
wrong answer Limit of C1 exceeded
Subtask #8:
score: 0
Wrong Answer
Test #70:
score: 0
Wrong Answer
time: 30ms
memory: 5672kb
input:
8 1311447458 50000 100000 500000 200000 4999 173190562 173182163 1078196947 1078197142 1215565665 1215571165 1186082670 1186081354 2422459084 2422459806 2626070241 2626074599 207492448 207494582 2266700305 2266695214 1679673055 1679672568 3879988278 3879982030 254940475 254941572 3919251618 39192495...
output:
Failed Limit of C1 exceeded
result:
wrong answer Limit of C1 exceeded
Subtask #9:
score: 0
Wrong Answer
Test #81:
score: 0
Wrong Answer
time: 10ms
memory: 5616kb
input:
9 574951428 15000 10000 200000 50000 5000 1781472251 1781466624 803445324 803444785 3544280892 3544283003 3151400420 3151403948 3250864128 3250871501 4189507543 4189510374 3483519516 3483520446 1003612935 1003617460 1101934749 1101931586 1948046579 1948042301 4151407804 4151401951 424123439 42412196...
output:
Failed Limit of C1 exceeded
result:
wrong answer Limit of C1 exceeded