QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#115111 | #6329. Colorful Graph | NTRLover# | AC ✓ | 939ms | 6096kb | C++20 | 4.8kb | 2023-06-24 16:53:58 | 2023-06-24 16:54:00 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
struct Tarjan_SCC {
int n, edg_id, _t, sc_id;
vector<vector<int>> E;
// vector<pair<int, int>> edges;
vector<int> dfn, low, in_scc;
stack<int> st;
vector<bool> in_st;
Tarjan_SCC(int _n)
: n(_n), E(_n), dfn(_n, -1), low(_n), in_scc(_n, -1), in_st(_n, false) {
sc_id = edg_id = _t = 0;
}
void addEdge(int u, int v) {
E[u].emplace_back(v);
// E[v].emplace_back(edg_id);
// edg_id++;
}
void dfs(int u) {
low[u] = dfn[u] = _t++;
st.emplace(u), in_st[u] = true;
for (auto v : E[u]) {
// auto v = edges[id].second;
if (dfn[v] == -1) {
dfs(v);
low[u] = min(low[u], low[v]);
} else if (in_st[v]) {
low[u] = min(low[u], dfn[v]);
}
}
if (dfn[u] == low[u]) {
// vector<int> _scc;
// _scc.clear();
while (st.top() != u) {
auto v = st.top();
in_scc[v] = sc_id, in_st[v] = false;
st.pop();
}
in_scc[u] = sc_id;
// scc.emplace_back(_scc);
sc_id++;
st.pop(), in_st[u] = false;
}
}
void solve() {
for (int i = 0; i < n; ++i) {
if (dfn[i] == -1) {
dfs(i);
}
}
}
};
template <class Flow> struct dinic {
struct edge {
int u, v;
Flow f;
edge(int _u, int _v, Flow _f) : u(_u), v(_v), f(_f){};
};
vector<vector<int>> E;
vector<edge> edg;
vector<int> d, cur;
int n;
dinic(int _n) : E(_n), d(_n), cur(_n), n(_n) {}
void addEdge(int u, int v, Flow w) {
int id = (int)edg.size();
edg.emplace_back(u, v, w), edg.emplace_back(v, u, 0);
E[u].emplace_back(id), E[v].emplace_back(id ^ 1);
}
auto dfs(int u, int t, Flow flow) {
if (u == t)
return flow;
Flow sum = 0;
while (cur[u] < (int)E[u].size()) {
auto id = E[u][cur[u]];
auto [_, v, f] = edg[id];
auto c = min(flow, f);
if (d[u] + 1 == d[v] && c > 0) {
auto add = dfs(v, t, c);
sum += add, flow -= add, edg[id].f -= add, edg[id ^ 1].f += add;
}
if (!flow)
break;
cur[u]++;
}
if (!sum)
d[u] = -1;
return sum;
}
bool level(int s, int t) {
fill(d.begin(), d.end(), -1), fill(cur.begin(), cur.end(), 0);
queue<int> Q;
Q.emplace(s), d[s] = 0;
while (!Q.empty()) {
int u = Q.front();
Q.pop();
for (auto id : E[u]) {
auto v = edg[id].v;
if (d[v] == -1 && edg[id].f != 0)
Q.emplace(v), d[v] = d[u] + 1;
}
}
return d[t] != -1;
}
auto solve(int s, int t) {
Flow ans = 0;
while (level(s, t))
ans += dfs(s, t, 1e9);
return ans;
}
};
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr), cout.tie(nullptr);
int n, m;
cin >> n >> m;
Tarjan_SCC G(n);
for (int i = 0; i < m; ++i) {
int u, v;
cin >> u >> v;
u--, v--;
G.addEdge(u, v);
}
G.solve();
int new_n = G.sc_id;
dinic<int> H(new_n * 2 + 2);
int S = new_n * 2, T = new_n * 2 + 1;
// for (int i = 0; i < n; ++i) {
// cout << G.in_scc[i] << ' ';
// }
// cout << "\n";
for (int u = 0; u < n; ++u) {
for (auto v : G.E[u]) {
int i = G.in_scc[u], j = G.in_scc[v];
if (i != j) {
H.addEdge(i + new_n, j, 1e9);
// cout << i << " " << j << "\n";
}
}
}
int id = (int)H.edg.size();
for (int i = 0; i < new_n; ++i) {
H.addEdge(S, i + new_n, 1);
H.addEdge(i, T, 1);
H.addEdge(i, i + new_n, 1e9);
}
auto ans = H.solve(S, T);
vector<int> col(new_n, -1);
vector<vector<pair<int, int>>> E(new_n);
vector<int> in(new_n, 0), out(new_n, 0);
for (int i = 0; i < id; i += 2) {
auto [u, v, f] = H.edg[i];
u -= new_n;
f = int(1e9) - f;
if (f != 0) {
// connect u->v
// u and v is in the same color
E[u].emplace_back(v, f);
in[v] += f;
out[u] += f;
}
}
int c = 0;
for (int t = 0; t < new_n; ++t) {
for (int x = 0; x < new_n; ++x) {
while (out[x] > in[x]) {
int u = x;
col[u] = c;
while (out[u]) {
auto it = prev(E[u].end());
it->second--;
auto nxt = it->first;
if (it->second == 0) {
E[u].pop_back();
}
out[u]--;
col[nxt] = c;
in[nxt]--;
u = nxt;
}
c++;
}
}
}
for (int i = 0; i < new_n; ++i) {
if (col[i] == -1) {
col[i] = c++;
}
}
// cerr << c << " " << ans << endl;
assert(c == new_n - ans);
// cout << ans << '\n';
// cout << new_n - ans << "\n";
for (int i = 0; i < n; ++i) {
cout << col[G.in_scc[i]] + 1 << ' ';
}
cout << "\n";
}
详细
Test #1:
score: 100
Accepted
time: 1ms
memory: 3524kb
input:
5 5 1 4 2 3 1 3 2 5 5 1
output:
1 2 2 1 1
result:
ok AC
Test #2:
score: 0
Accepted
time: 1ms
memory: 3528kb
input:
5 7 1 2 2 1 4 3 5 1 5 4 4 1 4 5
output:
2 2 1 1 1
result:
ok AC
Test #3:
score: 0
Accepted
time: 1ms
memory: 3452kb
input:
8 6 6 1 3 4 3 6 2 3 4 1 6 4
output:
1 1 1 1 2 1 3 4
result:
ok AC
Test #4:
score: 0
Accepted
time: 803ms
memory: 5908kb
input:
7000 6999 4365 4296 2980 3141 6820 4995 4781 24 2416 5844 2940 2675 3293 2163 3853 5356 262 6706 1985 1497 5241 3803 353 1624 5838 4708 5452 3019 2029 6161 3849 4219 1095 1453 4268 4567 1184 1857 2911 3977 1662 2751 6353 6496 2002 6628 1407 4623 425 1331 4445 4277 1259 3165 4994 1044 2756 5788 5496 ...
output:
1 1644 1337 1548 1746 2 3 1374 1096 246 1750 1750 4 1750 1519 5 1235 6 1049 1726 1253 1166 1747 1498 1649 7 8 1730 1417 9 580 1185 10 11 1366 1366 1465 12 1747 13 226 1137 14 1217 15 1064 16 1747 17 18 872 19 459 1746 1629 1564 1747 20 720 21 1176 1746 1746 1747 1593 22 1747 1747 1508 23 24 1041 25 ...
result:
ok AC
Test #5:
score: 0
Accepted
time: 939ms
memory: 5824kb
input:
7000 6999 4832 1603 5984 6985 5355 3687 6007 2170 5984 3486 3267 2189 538 2123 4343 4553 5855 6168 5984 257 4239 2304 5984 2063 3298 1869 5984 6353 5984 2018 5984 5387 5984 3382 3164 3978 2690 2816 4810 2638 5984 3773 5984 1634 5984 2786 5984 3671 5984 5140 2943 5721 5984 414 1105 4060 3093 796 5984...
output:
2332 2332 1716 1869 611 2332 1448 1663 2332 2324 2324 2332 2332 1060 2333 1 2332 2332 2332 4 2 621 239 1102 2332 2332 1486 438 1552 766 670 2332 2332 2332 3 4 963 2332 2217 2199 5 2097 1147 6 488 7 2313 8 9 761 2316 801 31 2130 523 2332 10 11 12 13 2332 2332 14 2324 1529 776 2332 1717 2332 70 15 233...
result:
ok AC
Test #6:
score: 0
Accepted
time: 893ms
memory: 5856kb
input:
7000 6999 1649 5337 1701 3344 4394 2172 3330 39 5932 1141 5381 5340 5453 3300 125 2172 6810 5263 804 2172 6635 2172 676 4740 3015 1183 1710 5769 611 5915 3419 1581 2094 2172 4508 2172 6604 2433 6113 1466 1604 696 1518 1123 1287 2940 4825 2172 5130 4524 2693 2172 106 2172 5157 2172 3693 2172 5198 217...
output:
1 2 1870 2015 2231 3 2169 1250 614 4 1186 5 6 1432 1702 1805 7 1949 1176 644 1633 8 9 888 1783 2068 1603 1921 10 11 542 12 1000 1582 924 13 1923 1913 2240 14 2097 261 593 15 1949 1159 1649 2031 16 2289 1957 17 662 796 1640 2011 2011 18 1751 2329 19 2272 20 151 507 440 2113 1521 21 22 23 24 25 1256 1...
result:
ok AC
Test #7:
score: 0
Accepted
time: 301ms
memory: 6096kb
input:
7000 6999 2896 6321 881 2623 5058 2623 4833 2623 4669 2623 4781 5007 1447 2623 4781 4768 4781 3834 2758 4792 797 5055 3784 2623 4781 5510 6606 3040 597 3459 4136 2037 1291 3989 4781 837 4781 4379 5637 2053 1642 2665 4781 4664 4781 952 4924 2511 4781 4201 4781 2352 4781 5362 3901 197 137 2623 2706 19...
output:
1 1750 1750 1750 1750 1750 1750 2 1397 3 1750 1750 1750 1750 1750 308 203 1750 1750 4 406 1750 956 1144 384 247 323 744 5 6 1750 7 1750 1750 1750 1750 215 1525 1750 1052 1750 1750 872 1750 8 1750 9 1750 10 1750 1750 1750 11 12 1750 13 1750 1750 968 1750 14 1750 1750 1638 1750 15 1479 252 1750 8 1750...
result:
ok AC
Test #8:
score: 0
Accepted
time: 30ms
memory: 5600kb
input:
6999 6998 1269 3969 1269 2429 1269 2609 1269 2515 1269 6166 1269 6614 3108 1269 2105 1269 4670 1269 578 1269 4661 1269 1421 1269 2576 1269 6152 1269 1269 6636 3011 1269 305 1269 5189 1269 1683 1269 6861 1269 1269 5798 1499 1269 282 1269 914 1269 80 1269 677 1269 701 1269 1269 359 6521 1269 1269 1754...
output:
1 2 3 4 2427 5 6 833 2455 255 196 554 7 3066 8 9 10 2524 11 12 3375 13 14 808 15 16 17 18 19 1825 20 2433 21 22 306 23 1886 3041 24 2985 2529 25 26 2296 412 27 28 29 30 31 978 1948 7 32 3237 1105 33 34 35 36 37 2923 3480 38 104 667 163 39 40 41 2975 42 2770 1755 1397 43 44 708 45 46 1405 47 1120 193...
result:
ok AC
Test #9:
score: 0
Accepted
time: 32ms
memory: 4928kb
input:
7000 0
output:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 ...
result:
ok AC
Test #10:
score: 0
Accepted
time: 34ms
memory: 5832kb
input:
7000 6999 3138 1903 3285 5919 6182 1430 1164 961 1577 6445 1390 3384 935 5723 6614 6387 4799 2877 3915 5128 5366 5455 2287 3941 2053 2326 4022 6993 488 2922 4327 4701 4674 3221 1666 4773 4356 3232 3888 937 4318 6942 577 1299 4491 1938 5154 1254 790 5532 4286 5478 2918 6725 2853 304 2554 5207 5140 77...
output:
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
result:
ok AC
Test #11:
score: 0
Accepted
time: 9ms
memory: 4832kb
input:
7000 6999 33 3147 5877 4807 3116 4168 1651 2456 624 1740 6440 3058 6414 489 1023 2523 706 93 5523 598 4211 6063 3570 6840 6566 2971 6614 1907 5893 4389 4022 2527 5096 2345 4682 2134 188 5597 695 4285 1344 3832 3534 879 6574 6252 3759 3444 2167 85 5630 6600 3158 4404 6389 689 4871 6719 4295 6008 3437...
output:
1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 4 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 5 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
result:
ok AC
Test #12:
score: 0
Accepted
time: 7ms
memory: 4936kb
input:
7000 6999 1247 5150 3318 2013 5686 1615 6145 6521 5717 94 2787 3443 2648 4875 5332 5934 1897 1651 4640 2183 1750 6964 148 5228 745 2814 474 1165 496 6735 180 3412 2723 3374 6200 4361 497 5328 1928 5998 5648 1261 5090 4723 1715 706 2499 897 6569 6204 6039 2787 2882 5044 5767 4256 975 1877 1857 4453 6...
output:
1 1 1 1 1 1 8 1 8 1 8 1 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 8 9 1 1 1 1 1 1 8 1 8 1 1 1 8 1 1 1 1 1 1 1 1 10 1 1 1 1 1 8 8 1 1 8 1 1 1 1 1 1 8 8 1 8 8 1 1 1 1 1 11 1 1 1 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 1 1 1 8 1 1 1 8 1 1 1 1 1 8 1 1 1 1 8 1 1 8 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 1 12 1 1 1 1 8 1 1 1 8 8...
result:
ok AC
Test #13:
score: 0
Accepted
time: 18ms
memory: 5300kb
input:
7000 6999 2349 199 5295 2831 6143 2006 3212 3198 6956 3807 732 4838 5069 1027 5744 3479 6 5301 5687 4452 4201 1151 1353 4884 548 3506 6094 4799 4950 6939 5234 817 652 1314 979 6984 5771 1851 398 1322 2294 4298 847 3929 6833 183 2904 6745 4797 3874 94 315 4282 582 6591 5037 962 147 799 908 2593 5547 ...
output:
1 1 7 1 1 7 7 7 7 7 7 1 7 7 7 1 7 7 72 7 7 1 1 73 7 1 1 74 7 1 7 7 7 7 1 7 1 7 7 7 7 1 7 7 1 75 7 1 1 76 7 7 77 78 7 79 7 7 80 7 1 1 7 1 1 7 7 7 7 7 1 1 1 1 7 1 7 1 7 7 1 1 1 7 2 7 1 7 1 7 7 7 1 81 7 1 7 7 7 1 7 1 7 7 7 7 1 1 1 1 1 7 7 82 83 7 7 7 7 1 7 7 7 7 7 1 1 1 1 7 7 7 84 85 1 1 86 1 7 44 7 7 ...
result:
ok AC
Test #14:
score: 0
Accepted
time: 23ms
memory: 5648kb
input:
7000 6999 3409 1629 2076 6412 4997 1078 6320 626 4501 1104 4173 1774 5507 2375 2299 5115 4321 127 1192 6635 1909 3398 2972 499 862 5024 421 2931 861 1536 902 3813 659 4514 1843 3035 3669 1228 1724 1880 34 706 133 3468 6116 585 5073 1461 5667 3405 715 4834 6915 3007 1736 6108 3264 2870 2393 6474 2108...
output:
8 8 1 8 8 2 8 8 8 711 8 712 8 713 3 8 8 8 8 8 8 714 8 8 4 8 5 715 716 6 8 7 8 717 8 8 8 427 718 8 8 380 105 8 8 8 8 157 8 8 187 8 8 8 8 665 8 8 719 720 8 8 8 9 8 721 8 722 8 723 218 8 10 426 8 11 8 8 724 725 575 726 15 8 8 727 8 12 8 8 2 8 8 728 13 729 8 730 8 8 8 8 8 14 47 8 8 731 15 16 732 8 733 1...
result:
ok AC
Test #15:
score: 0
Accepted
time: 38ms
memory: 5584kb
input:
7000 7000 2048 5882 6801 2408 3225 2608 1441 5079 497 6253 557 5589 2535 6257 4800 2595 4713 1286 4759 6636 4303 4296 6195 2048 6994 2987 1249 3044 1036 10 6472 2076 1996 1086 1279 1486 6100 369 4797 3437 2493 4576 2944 5601 197 5582 5488 5035 4023 659 2651 5024 2257 5710 1001 3941 446 4815 687 702 ...
output:
1624 1369 1 1625 1626 2 1098 1629 1630 322 3 1013 5 1262 1523 1251 10 1639 1426 1577 576 11 434 419 12 1296 264 908 14 738 18 19 1398 875 882 20 1270 1645 787 1646 21 22 1647 629 593 23 1648 396 772 147 1650 100 24 1026 25 814 1652 1098 27 1333 1653 578 118 28 495 29 1490 1570 270 788 30 396 987 300...
result:
ok AC
Test #16:
score: 0
Accepted
time: 47ms
memory: 5540kb
input:
6993 7000 6927 2941 6385 1428 6914 2553 2474 4268 2068 1640 2298 6960 6201 1806 4912 59 4407 5504 1595 6868 6378 2515 3713 3724 2995 2589 2314 2932 4042 431 6322 4178 5947 6850 6192 735 3802 1043 4982 1575 311 6496 5006 3191 6473 3084 2387 4706 6632 5901 5113 3066 5248 1274 5671 717 1311 4261 1960 3...
output:
1015 701 6 1418 1053 1644 1389 8 1038 9 810 392 1354 441 12 14 1628 15 931 786 16 17 1651 410 257 765 573 25 1556 553 19 20 1652 499 21 22 817 1216 23 776 31 32 728 1565 38 125 742 1653 33 1523 1654 1495 37 241 1657 38 39 103 1604 1658 1592 1050 200 8 1659 685 596 41 42 1277 43 505 44 1479 57 1090 1...
result:
ok AC
Test #17:
score: 0
Accepted
time: 40ms
memory: 5248kb
input:
6930 7000 3746 2945 3523 6758 4109 1106 2732 5415 2423 844 3702 6309 6503 5362 5997 6294 5688 1396 4842 1764 4780 4521 1254 826 37 4653 2138 2358 6345 1223 1385 2341 5261 5867 4815 2918 4209 696 4235 2314 3680 2919 5605 5155 6643 3391 2691 1418 6289 2093 1970 1804 828 5237 4025 1111 1164 5519 5889 2...
output:
1618 1058 2 1470 1071 800 5 6 1527 7 385 299 1421 8 9 460 12 860 953 1363 627 13 1127 890 14 1621 1561 718 793 15 1084 16 17 452 1227 1509 18 1624 39 179 837 19 1510 1625 1626 1136 1627 1349 739 91 1440 1630 1243 1631 26 27 28 29 340 30 57 31 435 1247 786 33 1129 817 658 1391 36 37 1635 266 1636 116...
result:
ok AC
Test #18:
score: 0
Accepted
time: 36ms
memory: 5212kb
input:
6300 7000 5921 5466 723 5843 1084 3134 3865 5742 5492 2885 328 4408 6055 4074 3702 2240 1342 2353 295 734 553 48 4454 2980 1248 4460 5023 19 2784 441 105 844 6048 1773 4840 5260 3910 1292 5578 2864 4978 3116 6182 4962 2575 1661 5030 435 5861 4709 5033 358 1746 5816 5877 3921 2678 5679 1784 33 207 59...
output:
190 1 1277 1204 957 2 893 702 1410 132 453 1411 1412 1413 3 4 5 8 175 200 9 1415 1315 10 1401 1416 1034 11 1307 748 359 697 1391 392 1329 13 325 419 828 509 803 1243 1367 247 34 14 1004 723 855 650 1109 1113 1420 12 1183 18 19 753 931 22 305 1406 1423 23 24 25 26 1218 1305 35 644 1424 1425 672 27 12...
result:
ok AC
Test #19:
score: 0
Accepted
time: 0ms
memory: 3972kb
input:
2800 7000 218 2670 1436 2268 38 2781 55 783 549 1627 660 1609 2268 2645 1376 1395 2747 71 785 1451 1096 2633 2655 2557 1569 307 16 56 1993 2751 1154 2760 478 2452 1841 2764 155 1781 215 1432 1788 2548 193 2665 167 1038 2425 2314 439 1615 269 1187 1222 245 1638 2016 2352 1511 2333 1564 1667 2576 1751...
output:
1 231 231 231 13 231 231 2 231 231 231 231 231 231 231 231 231 231 121 231 231 231 231 26 231 231 231 231 231 231 17 3 231 231 231 218 231 231 231 231 231 231 231 231 54 231 231 231 231 4 231 38 231 231 231 231 231 231 231 231 231 5 231 6 231 231 27 160 63 231 231 231 7 231 231 8 231 231 231 231 231...
result:
ok AC
Test #20:
score: 0
Accepted
time: 37ms
memory: 5580kb
input:
7000 7000 4828 3840 4148 2678 1645 2954 5516 1204 4664 285 904 1978 1434 1688 1902 5205 1324 4512 1722 1246 6724 5227 524 196 937 6286 6609 4724 5408 5610 4405 2463 5493 1567 2625 2894 2378 3685 5399 6872 6475 6546 5697 1265 1811 1314 2347 3005 6245 271 2414 434 3492 6948 4447 599 793 6107 464 5353 ...
output:
1 1506 1425 1971 1036 478 1315 1044 2 2059 1253 961 1147 1597 3 1833 1692 410 4 841 747 2061 1681 5 1047 1047 974 1082 2062 6 192 770 7 1317 1914 8 2064 1395 9 266 10 1291 11 13 463 2065 14 1652 2066 1146 2067 15 2068 1596 2069 16 264 2070 1629 17 2071 1458 265 1185 1406 19 20 1419 21 776 2073 2074 ...
result:
ok AC
Test #21:
score: 0
Accepted
time: 34ms
memory: 5608kb
input:
6993 7000 1576 5558 2853 3183 212 2572 1001 75 3386 6483 401 22 489 6768 6520 1684 6439 6188 3810 6414 4088 1924 371 1666 2822 410 5664 1676 1043 1365 384 2688 4179 6357 6466 4630 2829 4371 116 6817 1535 6172 751 5740 499 2484 2013 4576 6556 670 6177 3847 5344 4280 6103 1055 496 4934 6639 217 6606 4...
output:
19 1 3 714 2048 649 407 1148 4 822 5 2049 6 2050 1346 1747 666 1613 2034 1185 7 1042 475 1549 1454 1230 8 2007 2051 9 10 2052 11 12 13 1740 422 1897 576 14 1173 1795 15 483 621 2053 16 17 1530 18 2054 2 2000 19 2055 20 340 563 908 630 2056 21 22 1638 1233 23 167 24 1602 1823 782 25 26 957 382 27 205...
result:
ok AC
Test #22:
score: 0
Accepted
time: 37ms
memory: 5268kb
input:
6930 7000 2378 5636 2953 3870 897 2126 112 1756 3302 5114 4591 5593 5408 4899 1204 6313 6254 2214 5360 6680 2354 5865 5959 5969 1628 5317 6396 1006 2402 1767 1921 3373 3758 312 2167 5711 4119 6585 19 3951 1714 1206 3754 4376 4516 307 6312 165 5721 2470 4828 4842 4520 4310 1922 4946 2006 3856 1218 58...
output:
1153 2022 1136 1 2023 928 2 1433 308 3 1408 1983 801 5 6 7 9 1603 10 11 1503 1859 12 297 13 1114 1507 1748 2024 14 15 16 1758 1037 892 1063 2025 1733 17 2026 19 2027 1992 2028 1054 691 20 22 2031 2032 1974 1291 450 23 839 2034 24 25 26 2035 1571 496 189 2036 2037 1473 2039 66 27 28 62 2041 1328 245 ...
result:
ok AC
Test #23:
score: 0
Accepted
time: 32ms
memory: 5168kb
input:
6300 7000 1562 45 1716 2699 5291 4828 5063 4588 5888 4130 5901 6109 1476 921 3390 5892 5425 3782 824 5679 2278 6102 6146 5556 4874 2115 2842 2803 1963 5131 3736 2611 320 5272 758 5667 4087 228 5139 760 1812 2968 2897 6117 277 387 336 1322 4319 4597 608 4481 6182 3050 4333 3570 401 1662 3085 3197 537...
output:
1865 1 765 1064 81 442 1866 2 1232 3 1372 4 6 1093 861 7 1014 1454 1500 8 9 1869 10 11 623 1870 1184 13 1238 1680 1871 403 14 16 1292 856 17 18 1155 581 19 481 20 1875 614 862 1089 21 22 576 23 754 1536 24 38 25 1876 26 1073 27 28 258 107 29 1097 1191 30 31 400 1879 35 1880 36 37 1110 1883 38 39 165...
result:
ok AC
Test #24:
score: 0
Accepted
time: 9ms
memory: 4228kb
input:
2800 7000 931 1154 1783 1159 2515 1596 1734 1277 825 430 938 208 288 684 970 2075 618 2411 2690 500 223 2162 2093 2765 172 1029 832 1571 89 2333 2301 981 1354 1094 1989 137 2340 1804 2600 1249 1714 2343 1043 2738 1375 1239 804 2578 424 1572 568 1945 2233 297 1890 519 1475 944 2732 1123 2012 927 2232...
output:
348 56 520 2 437 4 5 6 345 7 129 376 530 464 8 476 115 694 636 731 43 197 625 11 489 14 565 609 420 151 12 13 241 14 17 575 404 177 356 18 663 485 632 233 19 636 22 482 70 422 375 23 485 139 78 24 458 327 25 26 590 27 165 482 389 28 29 188 671 663 709 257 625 33 547 42 72 466 34 236 47 35 82 148 702...
result:
ok AC
Test #25:
score: 0
Accepted
time: 1ms
memory: 3488kb
input:
52 41 18 31 2 5 22 32 1 50 50 29 9 32 44 27 45 17 26 24 18 30 28 25 38 28 5 47 49 38 23 50 8 3 16 24 29 46 7 52 30 38 33 32 39 32 3 18 50 44 1 35 49 37 18 24 29 6 20 39 40 45 33 28 51 52 26 40 38 43 52 45 39 40 42 34 6 45 32 19 20 52 34 28
output:
3 4 7 15 4 1 6 7 8 16 17 18 19 20 21 9 1 7 8 10 22 23 11 9 12 24 2 12 11 5 7 8 12 13 3 25 14 5 10 10 26 13 5 2 1 11 4 27 14 11 28 6
result:
ok AC
Test #26:
score: 0
Accepted
time: 1ms
memory: 3540kb
input:
291 56 117 283 21 277 128 22 245 45 8 223 150 129 16 15 224 163 288 76 218 238 25 233 100 262 244 101 76 207 286 80 164 238 165 283 133 251 23 235 22 280 65 205 8 30 66 76 232 90 251 287 80 62 58 218 285 225 247 199 149 34 219 16 286 221 174 248 20 58 169 69 229 119 178 216 152 147 148 189 116 207 7...
output:
36 7 37 38 39 40 41 1 43 44 45 46 47 48 28 28 49 50 51 2 12 17 3 52 4 53 54 55 56 42 57 58 5 27 59 60 61 62 63 6 64 65 66 67 31 68 69 70 71 7 72 73 74 75 76 77 78 2 79 80 81 35 82 83 8 9 84 85 23 86 87 10 11 89 90 9 91 92 93 35 94 95 96 97 98 99 12 100 101 29 102 103 104 105 13 106 10 107 108 14 33 ...
result:
ok AC
Test #27:
score: 0
Accepted
time: 1ms
memory: 3472kb
input:
26 295 19 5 19 13 10 2 14 13 19 24 20 13 9 3 18 11 13 25 13 14 24 6 1 2 25 6 6 13 7 25 1 9 2 8 6 8 13 18 2 7 11 9 14 12 21 19 17 23 8 14 3 5 22 8 8 3 25 5 24 21 10 3 23 13 24 20 3 21 23 18 7 15 24 18 18 21 18 4 8 12 13 9 12 1 14 9 18 20 9 22 10 25 3 26 2 14 5 20 1 24 24 1 23 6 18 6 21 11 19 4 24 25 ...
output:
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
result:
ok AC
Test #28:
score: 0
Accepted
time: 1ms
memory: 3432kb
input:
63 1000 22 9 25 11 52 54 34 30 18 8 24 3 42 30 61 51 34 17 36 52 58 9 41 53 19 12 40 3 54 47 23 51 44 59 10 21 35 52 34 56 43 15 39 41 12 37 13 21 55 48 16 57 39 25 26 25 22 57 54 34 63 55 11 27 60 40 41 1 24 59 20 53 14 6 51 35 44 9 47 35 32 39 40 28 9 49 29 27 16 25 56 53 28 56 5 39 35 57 61 37 22...
output:
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
result:
ok AC
Test #29:
score: 0
Accepted
time: 1ms
memory: 3476kb
input:
42 113 29 15 21 15 28 13 30 42 7 33 4 31 16 18 11 36 38 13 33 6 28 27 17 19 21 25 42 4 19 16 8 37 38 4 4 19 20 22 33 27 26 42 31 39 14 29 6 32 20 12 40 6 32 28 23 18 41 22 10 4 7 28 31 13 14 24 37 40 9 20 26 32 13 18 35 29 9 29 34 26 19 32 20 25 34 39 33 23 28 35 35 22 7 16 40 13 39 24 24 20 18 24 4...
output:
1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1
result:
ok AC
Test #30:
score: 0
Accepted
time: 1ms
memory: 3492kb
input:
6 8 5 1 1 5 6 5 4 1 4 3 2 4 5 3 3 4
output:
1 1 1 1 1 2
result:
ok AC
Test #31:
score: 0
Accepted
time: 34ms
memory: 5564kb
input:
7000 6999 6253 1991 6253 4600 1137 6253 1764 6253 6253 908 6253 2205 6253 213 6253 4399 6300 6253 4601 6253 6253 4884 6937 6253 6253 4070 2646 6253 1007 6253 6552 6253 6253 2115 6253 922 6223 6253 6253 2496 3522 6253 2050 6253 6253 763 6803 6253 6253 3847 2816 6253 6253 6297 6253 471 6253 3211 3203 ...
output:
1 2 1032 225 3 1685 4 3403 1721 5 6 560 2163 302 7 3123 8 9 622 10 11 3341 322 12 13 1252 14 2414 3426 905 2331 2453 15 16 17 1085 18 3079 3136 2914 2597 19 1344 20 2614 21 2763 22 23 24 2796 1064 25 26 27 3352 2139 1306 2334 1480 28 2877 2553 29 1215 30 31 198 3004 32 2571 33 34 2488 673 35 1815 36...
result:
ok AC