QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#135176#6634. Central Subsetwhsyhyyh#WA 122ms24416kbC++141.3kb2023-08-05 12:28:522023-08-05 12:28:54

Judging History

你现在查看的是最新测评结果

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-08-05 12:28:54]
  • 评测
  • 测评结果:WA
  • 用时:122ms
  • 内存:24416kb
  • [2023-08-05 12:28:52]
  • 提交

answer

#pragma GCC optimize("Ofast","unroll-loops","omit-frame-pointer","inline")
#pragma GCC option("arch=native","tune=native","no-zero-upper")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,avx2")
#pragma GCC optimize(3)
#include<bits/stdc++.h>
#define N 200010
#define inf 0x3f3f3f3f
#define rep(i,l,r) for(int i=l;i<=r;i++)
#define drep(i,r,l) for(int i=r;i>=l;i--)
using namespace std;
int rd() {
	int res=0,f=1;char ch=getchar();
	while(ch<'0'||ch>'9') {if(ch=='-') f*=-1;ch=getchar();}
	while(ch>='0'&&ch<='9') res=(res<<1)+(res<<3)+(ch^48),ch=getchar();
	return res*f;
}
int T,n,m,B,dis[N],st[N],top;
vector<int>G[N];
queue<int>qu;
void bfs(int s) {
	qu.push(s),dis[s]=0;
	int x;
	while(!qu.empty()) {
		x=qu.front(),qu.pop();
		for(auto v:G[x]) {
			if(dis[v]>dis[x]+1&&dis[x]+1<=B) qu.push(v),dis[v]=dis[x]+1;
		}
	}
}
int main() {
	T=rd();
	while(T--) {
		n=rd(),m=rd();
		B=sqrt(n);if(B*B<n)B++;
		rep(i,1,n) G[i].clear();
		for(int i=1,u,v;i<=m;i++) {
			u=rd(),v=rd();
			G[u].push_back(v),G[v].push_back(u);
		}
		rep(i,1,n) dis[i]=inf;
		drep(i,n,1) if(dis[i]==inf&&top<=B) bfs(i),st[++top]=i;
		if(top<=B) {
			printf("%d\n",top);
			while(top) printf("%d ",st[top]),top--;
			puts("");
		}
		else puts("-1");
	}
	return 0;
}

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 8760kb

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:

2
1 4 
1
6 

result:

ok correct (2 test cases)

Test #2:

score: 0
Accepted
time: 10ms
memory: 9084kb

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 10 15 
2
5 6 
2
7 10 
1
2 
1
2 
3
1 5 9 
1
2 
2
11 14 
3
2 11 16 
1
16 
4
2 8 14 20 
2
5 8 
2
7 10 
2
9 17 
1
5 
3
5 10 15 
2
6 7 
1
2 
2
5 9 
1
19 
2
1 4 
2
7 8 
2
11 14 
2
12 18 
1
6 
3
5 10 15 
2
4 6 
3
10 13 16 
1
3 
1
8 
4
3 9 15 21 
2
12 13 
2
11 14 
3
5 14 16 
1
6 
2
2 6 
3
1 6 7 
2
9 12 ...

result:

ok correct (10000 test cases)

Test #3:

score: 0
Accepted
time: 9ms
memory: 9112kb

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:

44
22 68 114 160 206 252 298 344 390 436 482 528 574 620 666 712 758 804 850 896 942 988 1034 1080 1126 1172 1218 1264 1310 1356 1402 1448 1494 1540 1586 1632 1678 1724 1770 1816 1862 1908 1954 2000 
1
2000 
23
1032 1076 1120 1164 1208 1252 1296 1340 1384 1428 1472 1516 1560 1604 1648 1692 1736 1780...

result:

ok correct (100 test cases)

Test #4:

score: 0
Accepted
time: 16ms
memory: 9088kb

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
34 158 282 406 530 654 778 902 1026 1150 1274 1398 1522 1646 1770 1894 2018 2142 2266 2390 2514 2638 2762 2886 3010 3134 3258 3382 3506 3630 3754 3878 4002 4126 4250 4374 4498 4622 4746 4870 4994 5118 5242 5366 5490 5614 5738 5862 5986 6110 6234 6358 6482 6606 6730 6854 6978 7102 7226 7350 7474 ...

result:

ok correct (10 test cases)

Test #5:

score: 0
Accepted
time: 13ms
memory: 10208kb

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:

13
2307 2557 3654 6991 7289 11213 14597 15162 18322 19094 19941 19977 20000 
13
4228 5867 6022 9523 10826 11087 11159 11555 18840 19318 19460 19871 20000 
12
2979 6416 7393 7494 7752 10923 15331 16490 18476 19502 19819 20000 
12
2009 3680 10313 11461 11541 11966 14902 16429 17112 19786 19966 20000 
...

result:

ok correct (10 test cases)

Test #6:

score: 0
Accepted
time: 50ms
memory: 16128kb

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:

446
195 644 1093 1542 1991 2440 2889 3338 3787 4236 4685 5134 5583 6032 6481 6930 7379 7828 8277 8726 9175 9624 10073 10522 10971 11420 11869 12318 12767 13216 13665 14114 14563 15012 15461 15910 16359 16808 17257 17706 18155 18604 19053 19502 19951 20400 20849 21298 21747 22196 22645 23094 23543 23...

result:

ok correct (1 test case)

Test #7:

score: 0
Accepted
time: 38ms
memory: 15364kb

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:

224
100319 100766 101213 101660 102107 102554 103001 103448 103895 104342 104789 105236 105683 106130 106577 107024 107471 107918 108365 108812 109259 109706 110153 110600 111047 111494 111941 112388 112835 113282 113729 114176 114623 115070 115517 115964 116411 116858 117305 117752 118199 118646 11...

result:

ok correct (1 test case)

Test #8:

score: 0
Accepted
time: 36ms
memory: 16228kb

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:

16
63486 65085 78900 79691 80806 94488 103024 123183 132573 133959 153146 172036 176521 178642 199002 200000 

result:

ok correct (1 test case)

Test #9:

score: 0
Accepted
time: 6ms
memory: 8772kb

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
11 
1
70 
1
26 
1
91 
1
59 
1
15 
1
44 
1
55 
1
95 
1
81 
1
24 
2
89 93 
1
4 
1
46 
1
51 
2
18 19 
1
18 
1
4 
1
67 
1
64 
1
35 
1
35 
1
38 
1
98 
1
69 
1
74 
1
43 
3
45 81 87 
2
27 49 
1
74 
1
47 
1
77 
2
76 77 
1
47 
1
68 
1
30 
3
44 47 48 
1
91 
1
36 
2
34 43 
2
34 37 
1
72 
1
37 
3
75 91 95 
1
...

result:

ok correct (1000 test cases)

Test #10:

score: 0
Accepted
time: 1ms
memory: 8520kb

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:

2
31 76 
1
91 
1
56 
1
64 
1
76 
2
38 55 
2
55 58 
1
52 
1
86 
2
41 58 
2
18 82 
1
93 
1
88 
1
95 
1
93 
1
96 
1
66 
1
52 
1
88 
1
73 
1
92 
1
60 
1
58 
1
59 
1
64 
1
59 
3
44 55 56 
1
97 
1
59 
1
58 
2
51 52 
1
82 
3
41 51 54 
1
65 
3
69 81 82 
1
72 
1
62 
1
97 
1
63 
1
85 
1
87 
2
17 74 
1
59 
1
7...

result:

ok correct (100 test cases)

Test #11:

score: 0
Accepted
time: 122ms
memory: 24416kb

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:

1
100000 

result:

ok correct (1 test case)

Test #12:

score: 0
Accepted
time: 37ms
memory: 16132kb

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:

328
15602 145288 160814 171976 174694 176654 185094 188114 189826 190924 194408 195031 195185 195920 196154 196194 196387 196394 196414 196637 196671 196768 196803 196970 197034 197067 197424 197451 197474 197483 197673 197701 197829 197859 198060 198083 198108 198158 198333 198448 198454 198460 198...

result:

ok correct (1 test case)

Test #13:

score: 0
Accepted
time: 37ms
memory: 16256kb

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:

446
32965 33190 33301 33804 34725 35338 35638 35972 36644 36957 37245 37818 38278 38751 39300 39673 39771 40722 41131 41607 41785 41826 42835 43281 43851 44277 44594 44845 45566 45850 46232 46901 47272 47654 48109 48590 48648 49464 49509 50495 50529 50979 51925 52140 52592 52907 53508 54011 54162 54...

result:

ok correct (1 test case)

Test #14:

score: 0
Accepted
time: 20ms
memory: 9272kb

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:

2
90 961 
2
79 961 
2
63 961 
2
32 961 
2
156 961 
2
123 961 
2
36 961 
2
92 961 
2
81 961 
2
146 961 
2
71 961 
2
63 961 
2
207 961 
2
37 961 
2
101 961 
2
181 961 
2
66 961 
2
259 961 
2
292 961 
2
240 961 
2
88 961 
2
60 961 
2
46 961 
2
59 961 
2
125 961 
2
89 961 
2
65 961 
7
533 705 931 944 95...

result:

ok correct (200 test cases)

Test #15:

score: -100
Wrong Answer
time: 5ms
memory: 14576kb

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:

-1

result:

wrong answer Integer -1 violates the range [1, 400] (test case 1)