QOJ.ac
QOJ
The 2nd Universal Cup Finals is coming! Check out our event page, schedule, and competition rules!
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#594920 | #6634. Central Subset | UESTC_DECAYALI# | AC ✓ | 254ms | 50080kb | C++20 | 2.6kb | 2024-09-28 11:13:49 | 2024-09-28 11:13:49 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
const int N = 2e5+5;
int n, m, deg[N], dis[N]; //dis1[N], dis2[N];
int que[N], ed=-1, fr=0;
bool vis[N];
vector<int> G[N], nG[N];
void dfs1(int x) {
vis[x] = true;
for (auto v : G[x]) {
if (vis[v]) continue;
nG[x].push_back(v);
nG[v].push_back(x);
++deg[x]; ++deg[v];
dfs1(v);
}
}
// int dfs2(int x, int f, int dis[]) {
// int res = x;
// for (auto v : nG[x]) {
// if (v==f) continue;
// dis[v] = dis[x] + 1;
// int tmp = dfs2(v, x, dis);
// if (dis[tmp] > dis[res]) res = tmp;
// }
// return res;
// }
void solve() {
cin >> n >> m;
for (int i=1; i<=n; ++i) G[i].clear(), nG[i].clear(), vis[i]=false, dis[i]=0, deg[i]=0;
for (int i=1; i<=m; ++i) {
int u, v; cin >> u >> v;
G[u].push_back(v); G[v].push_back(u);
}
dfs1(1);
// printf("deg:"); for (int i=1; i<=n; ++i) printf("%d ", deg[i]); puts("");
ed=-1, fr=0;
for (int i=1; i<=n; ++i) {
if (1==deg[i]) que[++ed] = i;
vis[i] = false;
}
int sqr = (int)sqrtl(n);
// printf("sqr=%d\n", sqr);
if (sqr*sqr < n) ++sqr;
vector<int> ans;
while (fr<=ed) {
int x = que[fr++]; vis[x]=true;
if (dis[x]==sqr) ans.push_back(x), dis[x]=-1;
bool ok=false;
for (int v : nG[x]) if (!vis[v]) {
ok=true;
--deg[v], --deg[x];
dis[v] = max(dis[v], dis[x]+1);
if (1==deg[v]) que[++ed] = v;
}
if (!ok) ans.push_back(x);
// printf("x=%d vis:", x); for (int i=1; i<=n; ++i) printf("%d ", vis[i]); puts("");
// printf("x=%d dis:", x); for (int i=1; i<=n; ++i) printf("%d ", dis[i]); puts("");
// printf("x=%d deg:", x); for (int i=1; i<=n; ++i) printf("%d ", deg[i]); puts("");
}
// puts("111111");
// dis1[1] = 0; int x = dfs2(1, -1, dis1);
// dis1[x] = 0; int y = dfs2(x, -1, dis1);
// dis2[y] = 0; dfs2(y, -1, dis2);
// printf("x=%d y=%d\n", x, y);
// printf("dis2:"); for (int i=1; i<=n; ++i) printf("%d ", dis2[i]); puts("");
// for (int i=1; i<=n; ++i) {
// if (dis1[i]+dis2[i]==dis1[y] && dis1[i]%sqr==0) ans.push_back(i);
// }
sort(ans.begin(), ans.end());
ans.erase(unique(ans.begin(), ans.end()), ans.end());
cout << ans.size() << '\n';
for (int x : ans) cout << x << ' '; cout << '\n';
}
signed main() {
ios::sync_with_stdio(0); cin.tie(0);
int t; cin >> t; while (t--) solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 2ms
memory: 5796kb
input:
2 4 3 1 2 2 3 3 4 6 7 1 2 2 3 3 1 1 4 4 5 5 6 6 4
output:
1 3 1 4
result:
ok correct (2 test cases)
Test #2:
score: 0
Accepted
time: 13ms
memory: 5912kb
input:
10000 15 14 13 12 5 4 9 8 11 12 15 14 10 9 14 13 2 3 2 1 6 5 10 11 3 4 7 6 8 7 6 5 2 1 2 4 4 6 2 3 3 5 10 9 8 3 9 4 5 6 5 10 3 2 5 4 2 7 1 2 4 3 2 1 2 1 2 1 2 1 9 8 9 8 5 4 1 2 6 5 3 4 3 2 7 8 7 6 2 1 1 2 14 13 3 10 5 6 2 9 11 4 2 3 2 1 8 7 13 6 5 4 5 12 6 7 4 3 7 14 16 15 2 3 2 1 6 10 6 9 6 4 9 11 ...
output:
3 5 8 11 1 2 1 4 1 2 1 2 3 4 5 6 1 2 1 5 2 6 10 1 2 3 6 11 15 1 4 1 4 1 8 1 2 3 5 8 11 1 2 1 2 1 4 1 2 1 3 1 4 1 5 1 8 1 2 3 5 8 11 1 2 1 5 1 2 1 2 3 6 11 16 1 3 1 5 2 6 7 1 2 1 4 1 3 1 4 3 5 6 7 1 2 3 5 7 8 1 2 1 4 1 3 1 2 2 5 6 1 6 1 4 1 7 1 2 3 6 ...
result:
ok correct (10000 test cases)
Test #3:
score: 0
Accepted
time: 19ms
memory: 6220kb
input:
100 2000 1999 529 528 885 884 1221 1222 375 374 245 244 758 757 711 710 1521 1522 1875 1874 749 750 823 822 1959 1958 1767 1766 155 154 631 632 825 824 1330 1331 457 456 1344 1343 1817 1818 413 414 582 583 1828 1827 1335 1336 654 655 162 161 1668 1667 1966 1967 1472 1471 1185 1184 518 517 1509 1510 ...
output:
43 46 92 138 184 230 276 322 368 414 460 506 552 598 644 690 736 782 828 874 920 966 1001 1035 1081 1127 1173 1219 1265 1311 1357 1403 1449 1495 1541 1587 1633 1679 1725 1771 1817 1863 1909 1955 1 5 23 46 91 136 181 226 271 316 361 406 451 496 501 506 551 596 641 686 731 776 821 866 911 956 6 86 ...
result:
ok correct (100 test cases)
Test #4:
score: 0
Accepted
time: 28ms
memory: 12060kb
input:
10 14914 14913 13959 13958 3643 3642 4582 4581 13378 13379 981 980 12901 12902 12355 12356 14692 14691 9670 9669 14632 14631 1441 1440 1367 1368 6237 6238 8297 8298 1021 1020 5096 5097 4773 4774 7778 7779 3013 3014 5536 5535 11621 11620 13904 13903 3050 3049 14179 14178 7471 7472 13380 13381 7403 74...
output:
121 124 248 372 496 620 744 868 992 1116 1240 1364 1488 1612 1736 1860 1984 2108 2232 2356 2480 2604 2728 2852 2976 3100 3224 3348 3472 3596 3720 3844 3968 4092 4216 4340 4464 4588 4712 4836 4960 5084 5208 5332 5456 5580 5704 5828 5952 6076 6200 6324 6448 6572 6696 6820 6944 7068 7192 7316 7440 7458...
result:
ok correct (10 test cases)
Test #5:
score: 0
Accepted
time: 31ms
memory: 10468kb
input:
10 20000 19999 6831 6760 15763 15900 10362 10184 5821 5880 17555 17389 16708 16574 11592 11436 186 209 19380 19313 8867 8718 12100 12237 16245 16110 18464 18568 4713 4665 17412 17578 18666 18750 4360 4322 12350 12502 4054 4103 2874 2849 8097 8202 14489 14639 1056 1016 13500 13581 2435 2391 199 173 8...
output:
4 1143 1938 3269 6126 5 176 2729 4585 8283 10809 4 3724 7546 8040 11257 5 2703 3718 3873 9863 10584 6 1288 2337 8665 8672 14623 15169 5 2326 4075 5857 6159 15046 6 547 972 6581 7594 8593 15985 5 1662 2418 5415 6192 7843 5 27 1025 1588 5754 14312 4 3363 7775 8799 8901
result:
ok correct (10 test cases)
Test #6:
score: 0
Accepted
time: 79ms
memory: 50000kb
input:
1 200000 199999 136649 136648 44943 44944 7148 7149 50332 50333 149967 149966 28976 28975 78549 78550 178698 178697 96434 96433 7859 7858 88976 88977 23348 23347 161682 161681 125393 125392 67892 67893 73592 73593 179054 179055 110841 110842 163714 163715 7982 7981 56309 56310 196486 196485 19176 19...
output:
445 449 898 1347 1796 2245 2694 3143 3592 4041 4490 4939 5388 5837 6286 6735 7184 7633 8082 8531 8980 9429 9878 10327 10776 11225 11674 12123 12572 13021 13470 13919 14368 14817 15266 15715 16164 16613 17062 17511 17960 18409 18858 19307 19756 20205 20654 21103 21552 22001 22450 22899 23348 23797 24...
result:
ok correct (1 test case)
Test #7:
score: 0
Accepted
time: 74ms
memory: 38980kb
input:
1 200000 199999 58280 58281 132016 32016 45157 45158 35446 35445 158979 58979 185831 85831 74289 174289 195645 95645 31857 131857 168766 68766 95607 95606 39817 39818 58215 158215 74893 74894 18897 118897 63013 163013 58501 58502 94475 194475 77574 77573 152977 52977 3731 103731 20407 20408 186570 8...
output:
223 449 897 1345 1793 2241 2689 3137 3585 4033 4481 4929 5377 5825 6273 6721 7169 7617 8065 8513 8961 9409 9857 10305 10753 11201 11649 12097 12545 12993 13441 13889 14337 14785 15233 15681 16129 16577 17025 17473 17921 18369 18817 19265 19713 20161 20609 21057 21505 21953 22401 22849 23297 23745 24...
result:
ok correct (1 test case)
Test #8:
score: 0
Accepted
time: 74ms
memory: 28304kb
input:
1 200000 199999 84088 84001 74829 74679 40726 41179 113019 113238 112813 113025 77336 77177 60908 61208 4521 4639 144249 144094 102763 102692 112856 113070 2428 2356 114005 113754 168454 168270 114538 114311 36802 36341 170182 170306 31641 32012 92503 92395 143570 143702 6871 6715 51503 51997 140883...
output:
6 55837 96840 102765 107919 118805 149019
result:
ok correct (1 test case)
Test #9:
score: 0
Accepted
time: 9ms
memory: 7692kb
input:
1000 11 19 8 11 4 11 2 11 2 3 8 3 6 1 6 4 11 5 5 3 10 8 7 10 4 7 3 9 5 1 5 7 3 6 10 1 11 7 2 9 70 109 32 69 26 15 65 46 70 62 50 23 17 16 15 31 2 23 18 11 48 57 19 29 52 42 26 31 7 1 53 66 5 69 58 20 59 38 3 4 9 53 7 56 52 66 66 28 22 51 2 6 22 35 5 28 25 51 27 13 26 56 10 50 53 56 60 48 67 33 61 23...
output:
1 8 5 4 13 16 23 52 3 4 7 22 6 12 14 23 39 46 72 5 2 32 33 47 58 3 3 4 14 5 20 24 33 36 40 5 11 21 29 50 51 6 3 14 56 66 69 86 6 19 22 33 42 72 73 3 8 18 19 3 13 65 67 1 4 3 2 44 45 3 4 21 26 3 2 3 12 2 8 17 1 3 5 19 21 28 37 39 5 13 17 43 57 60 4 8 18 22 26 3 3 9 30 3 6 17 35 ...
result:
ok correct (1000 test cases)
Test #10:
score: 0
Accepted
time: 3ms
memory: 5848kb
input:
100 76 104 30 11 26 40 4 59 35 21 13 44 3 73 25 39 33 35 63 9 9 19 42 47 22 32 44 35 74 68 53 12 50 41 53 52 69 40 31 49 21 14 23 21 11 48 53 67 48 74 15 24 73 47 6 62 17 33 67 48 7 22 68 46 41 39 20 1 9 71 15 67 65 56 38 68 30 9 54 26 8 47 62 56 14 61 59 20 46 64 75 46 50 49 26 25 10 70 36 27 14 29...
output:
5 30 40 48 69 73 5 2 3 20 46 81 3 2 4 24 5 8 9 41 51 56 5 13 29 44 57 61 3 13 32 36 3 7 28 49 5 15 30 35 43 48 5 13 17 27 48 50 3 10 29 42 5 8 43 50 74 75 5 13 28 42 48 85 7 19 38 64 73 75 79 88 5 34 40 45 59 78 6 4 17 32 49 53 86 6 17 35 45 59 70 76 4 4 12 14 45 5 26 33 46 48 50 5...
result:
ok correct (100 test cases)
Test #11:
score: 0
Accepted
time: 254ms
memory: 37664kb
input:
1 100000 1000000 70376 68374 69858 95507 48028 59467 27775 34161 858 86059 31468 25048 21313 82671 10952 18093 89665 50624 52742 11128 33566 41507 25913 22268 72131 67543 31387 42274 37347 75248 88261 56182 98982 47735 90574 62875 51228 53905 25218 4567 78201 22017 59613 68982 37239 43727 67620 9064...
output:
289 161 727 793 964 975 1181 1862 2883 3079 3320 3701 3846 4100 4419 4823 4867 5161 5324 5399 5765 5799 5979 6246 6476 7240 7547 7713 7730 7937 8344 8762 9012 9112 9935 10255 10421 10447 10621 10743 10843 11069 11658 12454 13643 13996 14107 14317 14683 14823 14834 15512 15709 15926 15997 17211 17497...
result:
ok correct (1 test case)
Test #12:
score: 0
Accepted
time: 95ms
memory: 50080kb
input:
1 200000 200000 89381 101645 141954 180063 180085 158544 12185 82120 161570 175869 36911 151360 49966 148400 135100 143084 145185 33970 82150 111213 93727 145916 42620 157053 26848 66273 178649 76101 5033 162413 173225 34259 30781 78979 9908 187256 87177 127185 7086 26040 178611 119947 198142 154140...
output:
445 348 1262 2018 2076 2082 2811 3171 3741 4006 4220 4629 4857 4959 5311 5316 5697 5794 6350 6405 6979 7198 7413 7861 10503 11227 12523 12922 13734 14634 14647 16205 16245 17176 17196 17634 18212 18298 18559 18910 18963 19015 19140 20202 20391 20692 20802 21369 22848 23080 23272 24262 25084 25135 25...
result:
ok correct (1 test case)
Test #13:
score: 0
Accepted
time: 60ms
memory: 28108kb
input:
1 199809 199808 197381 136472 136472 160228 160228 128766 128766 197225 197225 160133 160133 105707 105707 66465 66465 199512 199512 185463 185463 176514 176514 175293 175293 178768 178768 158873 158873 199518 199518 161400 161400 172476 172476 188761 188761 197795 197795 152286 152286 177332 177332...
output:
447 792 1169 1389 1434 1473 1721 2964 3448 4328 4438 5015 6076 6436 7028 8723 8775 8843 8903 9107 10348 10983 12048 12288 12883 13326 13980 14927 14982 15316 15404 15618 15767 15852 15935 16599 16947 17209 17685 17769 18582 18631 18999 19178 20576 21016 21189 21224 22050 22246 22680 23064 23361 2382...
result:
ok correct (1 test case)
Test #14:
score: 0
Accepted
time: 29ms
memory: 5804kb
input:
200 961 1663 2 1 3 1 3 20 4 1 4 7 5 1 5 41 5 60 6 1 7 1 7 49 8 1 9 1 10 1 11 1 12 1 12 32 13 1 13 59 14 1 14 3 15 1 15 12 15 52 16 1 16 12 16 63 17 1 17 10 18 1 18 36 19 1 19 26 19 29 20 1 20 60 20 63 21 1 22 1 23 1 23 3 23 27 23 39 24 1 25 1 26 1 26 58 26 60 27 1 27 22 27 36 28 1 29 1 30 1 31 1 31 ...
output:
19 12 73 117 238 267 341 360 413 470 505 511 546 557 625 755 756 781 827 865 17 28 131 159 251 279 361 377 434 453 505 582 597 605 660 693 769 812 21 45 97 124 184 227 278 294 354 380 438 444 488 494 587 621 658 712 736 750 850 858 19 71 107 141 179 226 286 315 360 440 474 539 561 613 632 684 749...
result:
ok correct (200 test cases)
Test #15:
score: 0
Accepted
time: 27ms
memory: 23452kb
input:
1 160000 159999 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 5...
output:
2 1 2
result:
ok correct (1 test case)
Test #16:
score: 0
Accepted
time: 37ms
memory: 9876kb
input:
1 1000 499500 605 964 559 738 492 518 943 284 96 23 214 486 487 262 347 436 394 422 270 113 984 149 134 203 881 328 316 643 610 922 802 67 903 194 600 584 629 62 692 370 420 442 600 563 438 452 556 785 112 809 555 241 937 635 178 746 67 900 777 247 490 842 971 12 315 60 703 467 201 13 872 503 24 201...
output:
31 3 108 126 153 197 215 230 237 268 276 350 376 505 507 526 566 606 617 625 653 669 700 702 781 831 851 873 925 938 942 946
result:
ok correct (1 test case)
Test #17:
score: 0
Accepted
time: 19ms
memory: 5664kb
input:
4081 49 48 39 7 7 45 45 25 25 31 31 26 26 4 4 11 4 19 4 37 4 8 4 16 4 22 4 33 11 14 39 6 6 12 12 46 46 49 49 48 48 29 29 27 39 41 41 15 15 34 34 24 39 3 3 13 13 20 20 47 39 9 9 36 36 5 5 43 39 40 40 21 21 2 2 38 39 35 35 42 42 23 23 28 39 1 1 32 32 10 10 17 39 30 30 18 18 44 49 48 37 29 29 33 33 19 ...
output:
2 7 39 2 29 37 2 9 44 2 36 43 2 16 37 2 43 46 2 28 30 2 34 43 2 21 39 2 11 27 2 11 43 2 7 19 2 8 28 2 6 14 2 30 44 2 5 17 2 37 43 2 4 41 2 8 44 2 9 30 2 8 23 2 21 35 2 6 19 2 4 19 2 17 35 2 2 3 2 18 26 2 39 47 2 33 35 2 2 25 2 6 7 2 41 44 2 22 42 2 14 28 2 36 41 2 ...
result:
ok correct (4081 test cases)