QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#690744#9525. Welcome to Join the Online Meeting!UfowoqqqoAC ✓297ms32760kbC++141.5kb2024-10-31 01:39:412024-10-31 01:39:42

Judging History

This is the latest submission verdict.

  • [2024-10-31 01:39:42]
  • Judged
  • Verdict: AC
  • Time: 297ms
  • Memory: 32760kb
  • [2024-10-31 01:39:41]
  • Submitted

answer

#include<bits/stdc++.h>
using namespace std;
const int N=2e5+5;
int pr[N];
int find(int x)
{
	return pr[x]==x?x:pr[x]=find(pr[x]);
}
int main()
{
	int n,m,k;
	cin>>n>>m>>k;
	vector<bool>a(n+1),fa(n+1);
	for(int i=1;i<=k;i++)
	{
		int x;
		cin>>x;
		a[x]=true;
	}
	vector<int>deg(n+1);
	vector<vector<int>>e(n+1),g(n+1);
	for(int i=1;i<=n;i++)
		pr[i]=i;
	for(int i=0;i<m;i++)
	{
		int p,q;
		cin>>p>>q;
		if(a[p]&&a[q])continue;
		if(a[p])
		{
			if(fa[p])continue;
			fa[p]=true;
			e[q].push_back(p);
		}
		else if(a[q])
		{
			if(fa[q])continue;
			fa[q]=true;
			e[p].push_back(q);
		}
		else
		{
			if(find(p)!=find(q))pr[find(q)]=find(p);
			g[p].push_back(q);
			g[q].push_back(p);
		}
	}
	bool ok=true;
	int cnt=0,rt;
	for(int i=1;i<=n;i++)
		if(a[i])
		{
			if(!fa[i])ok=false;
		}
		else
		{
			if(find(i)!=i)continue;
			++cnt;
			rt=i;
		}
	if(!ok||cnt!=1)
	{
		cout<<"No"<<endl;
		return 0;
	}
	vector<vector<int>>res;
	queue<int>q;
	vector<bool>vis(n+1);
	q.push(rt);
	vis[rt]=true;
	while(!q.empty())
	{
		int x=q.front();
		q.pop();
		vector<int>cur;
		for(auto &y:e[x])
			cur.push_back(y);
		for(auto &y:g[x])
		{
			if(vis[y])continue;
			cur.push_back(y);
			q.push(y);
			vis[y]=true;
		}
		if(cur.empty())continue;
		cur.push_back(cur.size());
		cur.push_back(x);
		reverse(cur.begin(),cur.end());
		res.push_back(cur);
	}
	cout<<"Yes"<<endl;
	cout<<res.size()<<endl;
	for(auto &v:res)
	{
		for(auto &x:v)
			cout<<x<<" ";
		cout<<endl;
	}
	return 0;
}

这程序好像有点Bug,我给组数据试试?

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

4 5 2
3 4
1 2
1 3
2 3
3 4
2 4

output:

Yes
2
1 2 2 3 
2 1 4 

result:

ok ok

Test #2:

score: 0
Accepted
time: 0ms
memory: 3492kb

input:

4 5 3
2 4 3
1 2
1 3
2 3
3 4
2 4

output:

No

result:

ok ok

Test #3:

score: 0
Accepted
time: 0ms
memory: 3840kb

input:

4 6 2
3 4
1 3
1 4
2 3
2 4
1 2
3 4

output:

Yes
1
1 3 2 4 3 

result:

ok ok

Test #4:

score: 0
Accepted
time: 0ms
memory: 3832kb

input:

6 6 0

1 2
2 3
3 1
4 5
5 6
6 4

output:

No

result:

ok ok

Test #5:

score: 0
Accepted
time: 160ms
memory: 31988kb

input:

200000 199999 2
142330 49798
49798 116486
116486 64386
64386 192793
192793 61212
61212 138489
138489 83788
83788 89573
89573 8596
8596 156548
156548 41800
41800 14478
14478 27908
27908 82806
82806 9353
9353 160166
160166 92308
92308 36265
36265 126943
126943 190578
190578 191148
191148 177381
177381...

output:

Yes
199998
116486 2 64386 49798 
64386 1 192793 
192793 1 61212 
61212 1 138489 
138489 1 83788 
83788 1 89573 
89573 1 8596 
8596 1 156548 
156548 1 41800 
41800 1 14478 
14478 1 27908 
27908 1 82806 
82806 1 9353 
9353 1 160166 
160166 1 92308 
92308 1 36265 
36265 1 126943 
126943 1 190578 
19057...

result:

ok ok

Test #6:

score: 0
Accepted
time: 168ms
memory: 32468kb

input:

199999 199998 1
136702
159826 166341
166341 59559
59559 169672
169672 102084
102084 136269
136269 57057
57057 59116
59116 119963
119963 85663
85663 33942
33942 84604
84604 189395
189395 154906
154906 22175
22175 144902
144902 198523
198523 35993
35993 35690
35690 47504
47504 104458
104458 68253
6825...

output:

Yes
199998
159826 1 166341 
166341 1 59559 
59559 1 169672 
169672 1 102084 
102084 1 136269 
136269 1 57057 
57057 1 59116 
59116 1 119963 
119963 1 85663 
85663 1 33942 
33942 1 84604 
84604 1 189395 
189395 1 154906 
154906 1 22175 
22175 1 144902 
144902 1 198523 
198523 1 35993 
35993 1 35690 
...

result:

ok ok

Test #7:

score: 0
Accepted
time: 184ms
memory: 32760kb

input:

199998 199997 0

67665 130538
130538 101337
101337 73749
73749 138128
138128 1274
1274 108069
108069 50961
50961 7039
7039 109946
109946 170551
170551 193330
193330 113590
113590 92775
92775 2146
2146 43591
43591 125033
125033 75583
75583 173991
173991 46820
46820 3986
3986 163272
163272 91657
91657...

output:

Yes
199997
67665 1 130538 
130538 1 101337 
101337 1 73749 
73749 1 138128 
138128 1 1274 
1274 1 108069 
108069 1 50961 
50961 1 7039 
7039 1 109946 
109946 1 170551 
170551 1 193330 
193330 1 113590 
113590 1 92775 
92775 1 2146 
2146 1 43591 
43591 1 125033 
125033 1 75583 
75583 1 173991 
173991...

result:

ok ok

Test #8:

score: 0
Accepted
time: 83ms
memory: 20372kb

input:

199997 199996 1
158877
35837 79489
79489 72932
72932 14238
14238 73007
73007 66909
66909 49015
49015 129581
129581 138449
138449 94774
94774 189625
189625 23578
23578 31043
31043 146625
146625 161587
161587 136966
136966 184859
184859 27587
27587 155616
155616 72392
72392 195320
195320 75551
75551 1...

output:

No

result:

ok ok

Test #9:

score: 0
Accepted
time: 67ms
memory: 14288kb

input:

200000 199999 1
29111
29111 80079
29111 131587
29111 197066
29111 125194
29111 156736
50697 29111
29111 74382
113595 29111
29111 26046
29111 172868
178564 29111
174875 29111
93471 29111
88216 29111
29111 147893
29111 145746
29111 34038
146500 29111
67862 29111
29111 19222
29111 121535
29111 49102
29...

output:

No

result:

ok ok

Test #10:

score: 0
Accepted
time: 93ms
memory: 24736kb

input:

199999 199998 2
52512 104330
130511 66864
139434 66864
92884 66864
66864 185580
184115 66864
137395 66864
66864 43463
118395 66864
111697 66864
66864 133237
66864 112507
66864 140264
66864 10
66864 151082
155779 66864
107988 66864
148839 66864
66864 40909
172685 66864
66864 189374
180054 66864
49 66...

output:

Yes
2
114634 1 66864 
66864 199997 152191 139293 174586 166708 148083 113473 51973 40621 24729 76417 61418 8724 198149 133889 48404 16570 71892 189896 124248 97342 29065 127677 122933 54921 187274 29825 42364 38058 57622 184269 136390 73229 94147 195417 121369 139089 119860 191448 131894 139973 5888...

result:

ok ok

Test #11:

score: 0
Accepted
time: 104ms
memory: 24168kb

input:

199998 199997 0

77056 67665
130538 77056
77056 101337
73749 77056
77056 138128
1274 77056
77056 108069
50961 77056
77056 7039
77056 109946
77056 170551
193330 77056
113590 77056
77056 92775
2146 77056
43591 77056
77056 125033
75583 77056
173991 77056
46820 77056
77056 3986
77056 163272
91657 77056
...

output:

Yes
2
162420 1 77056 
77056 199996 108040 130135 168898 4125 67434 132013 36554 114001 171315 14656 37474 46087 66480 161076 103822 131635 148656 136590 125073 111510 124527 62120 126154 40223 33351 140740 48401 168088 47 53313 116117 151667 51110 55915 195842 151790 175746 63508 8461 184584 111196 ...

result:

ok ok

Test #12:

score: 0
Accepted
time: 116ms
memory: 3900kb

input:

1000 499500 999
458 720 932 821 847 788 447 593 430 896 257 238 380 924 968 30 389 306 278 824 83 342 329 513 476 313 714 348 602 105 758 777 663 1000 20 756 546 256 123 340 69 244 772 625 390 557 911 272 496 127 409 436 845 574 958 921 24 17 770 630 851 147 178 976 77 181 230 723 974 345 501 683 24...

output:

Yes
1
987 999 422 67 813 291 807 123 296 89 197 428 396 13 499 402 102 796 607 254 889 483 777 761 956 233 490 913 609 147 149 163 789 574 648 753 783 107 379 129 427 184 627 313 852 409 470 856 504 774 756 90 403 532 20 672 932 924 634 495 876 649 232 457 942 885 890 16 307 337 693 599 850 755 863 ...

result:

ok ok

Test #13:

score: 0
Accepted
time: 124ms
memory: 3904kb

input:

1000 499000 765
622 257 281 601 593 967 704 173 609 700 782 592 356 595 431 307 933 886 213 478 8 832 877 606 335 253 420 631 345 179 961 437 238 641 513 997 192 483 152 951 580 331 401 122 155 814 228 633 372 918 346 464 3 992 416 953 650 668 971 899 76 575 880 85 194 541 26 348 93 815 554 64 850 5...

output:

Yes
227
387 239 867 20 455 696 944 421 915 924 799 756 343 143 894 429 493 803 124 1 479 37 749 28 945 67 996 954 720 663 294 200 871 156 172 863 300 596 500 337 582 44 60 488 373 504 776 499 737 297 201 857 31 236 762 495 75 713 359 268 369 710 588 7 364 489 524 430 608 473 948 542 453 412 527 133 ...

result:

ok ok

Test #14:

score: 0
Accepted
time: 78ms
memory: 7468kb

input:

999 300000 98
544 367 966 146 474 309 291 482 953 116 340 59 765 566 227 176 371 672 170 739 120 931 23 858 153 884 258 842 763 405 104 957 596 978 732 515 497 269 174 551 653 690 755 808 288 574 17 356 500 665 827 172 987 240 154 824 220 430 722 950 534 400 413 908 671 12 427 818 187 335 572 644 52...

output:

Yes
100
409 546 8 750 483 449 394 887 799 467 543 444 518 130 896 705 294 428 30 927 689 11 857 553 793 967 758 184 314 879 126 361 844 129 143 634 708 283 646 255 124 468 228 635 581 27 527 695 628 601 946 617 2 914 817 999 245 102 900 541 711 990 327 461 40 72 384 230 921 823 968 893 451 470 211 9...

result:

ok ok

Test #15:

score: 0
Accepted
time: 136ms
memory: 3700kb

input:

10000 500000 10000
1905 4872 6021 8458 3220 7251 6356 3194 996 2320 298 7850 3567 2244 4361 7462 8058 9852 3057 6409 2288 9712 8533 5380 7131 970 2261 134 1179 1665 7329 442 8996 8203 7168 5946 7893 8282 9474 2445 1762 4900 101 6631 4588 7670 7716 7010 6113 5654 5308 3451 130 3205 2959 4898 374 6178...

output:

No

result:

ok ok

Test #16:

score: 0
Accepted
time: 136ms
memory: 3912kb

input:

10000 500000 9998
5272 7519 3021 7043 2522 2940 9960 3860 7595 3760 8035 2085 572 234 8292 3636 9619 6749 884 6669 8536 570 9353 2803 160 6085 5838 2812 7764 8722 2431 8854 2183 2032 7731 5404 5516 1574 4864 1431 8527 5506 1012 5713 8665 26 976 6010 4888 5975 6993 3187 7227 8438 6812 5903 1738 6467 ...

output:

No

result:

ok ok

Test #17:

score: 0
Accepted
time: 162ms
memory: 9000kb

input:

10000 500000 1234
7096 8517 9305 874 7758 730 2653 6237 2494 4290 2280 892 9081 2308 6418 3258 1690 103 9850 6778 9724 1914 1561 1361 3776 160 1892 1394 7981 3050 6013 5452 8769 7341 3259 6011 8672 4500 1930 8758 5103 4509 2782 1354 1583 8663 1088 2156 3254 7150 3824 4768 8230 7533 3277 8910 8135 19...

output:

Yes
1587
8490 62 1552 7384 2422 9946 491 7965 9458 361 5670 1254 3489 1424 7097 699 8496 7319 1189 8365 9270 8302 4460 994 7058 7120 727 9661 2003 8917 2157 3091 7670 2802 3603 7597 1716 502 1041 5393 4037 6561 958 9836 3724 5674 525 3255 5979 6199 9869 9358 1228 7913 6155 4286 5324 7483 1331 9140 5...

result:

ok ok

Test #18:

score: 0
Accepted
time: 148ms
memory: 9460kb

input:

10000 500000 0

6605 3715
1237 3040
3617 2124
4550 1766
8159 4808
7027 9779
7053 1803
3973 6790
8233 2873
7636 6894
6821 9714
8280 8440
261 6160
1279 3627
5816 9131
8167 1332
6763 3029
9605 4045
921 9926
6547 4760
3618 7832
5961 6497
1255 5646
5567 621
5732 2860
88 3501
3866 6046
7188 6203
3337 2873...

output:

Yes
512
9474 102 7222 7634 5103 9651 6030 8301 8191 655 5764 2940 4020 8402 985 4140 5318 8034 119 2256 5564 2639 6799 7626 5684 6395 4930 8738 2173 7482 8606 4964 151 8282 3600 6611 1882 9569 2522 3930 9919 9334 848 7819 569 1177 4321 4822 8985 1312 1704 8713 4417 2124 7031 3847 9154 3823 8043 1622...

result:

ok ok

Test #19:

score: 0
Accepted
time: 186ms
memory: 10512kb

input:

20000 499999 321
13495 16729 10971 3389 7920 17768 11943 12054 6426 13331 6453 15959 6842 12610 18437 12930 4597 7386 8506 52 17373 2492 18849 19694 8432 12552 8663 4836 5370 3125 4323 15529 5916 14378 13756 15147 19826 7961 3188 4919 14256 5230 16288 13867 6039 13451 12861 9057 12645 19486 16719 19...

output:

Yes
2056
14092 41 9843 2067 2809 19617 9418 1304 126 11208 7705 11227 16946 19083 12045 11117 11505 5960 6911 2584 16776 3957 13834 13149 16181 15350 17691 4118 19678 15685 2644 11925 10316 17039 14226 7315 12150 15786 3750 812 706 14900 9106 
9106 49 4382 8805 3395 15968 7958 3063 18582 5417 759 20...

result:

ok ok

Test #20:

score: 0
Accepted
time: 182ms
memory: 10536kb

input:

20000 499998 456
17380 3548 17148 12088 15694 2886 15042 15060 4903 3288 13810 5360 7487 15472 1934 6496 19753 7795 9485 16913 17980 18738 18003 3795 5186 18128 15284 3276 16833 13161 6707 8941 947 5088 4974 13222 1790 14903 14837 4315 17583 12119 15871 6961 11561 3674 18427 2207 1556 19736 719 2326...

output:

Yes
2218
14365 35 13 15296 15774 17795 7293 18937 1537 6412 14879 526 9515 4754 7734 17262 14053 6896 2254 17206 10872 13202 18944 7779 5253 1107 5836 17123 15927 2568 1506 341 3058 3299 14005 13856 17852 
17852 48 9909 456 18346 15812 17640 1910 5132 13070 5359 3064 8673 6804 12841 6928 568 11958 1...

result:

ok ok

Test #21:

score: 0
Accepted
time: 220ms
memory: 16596kb

input:

100000 500000 1235
3510 14575 57589 88714 29299 62839 6733 25039 17686 8112 24858 274 16916 83976 25181 57773 49758 65223 33663 47471 12200 8551 57927 21092 67375 77093 76589 91355 94075 17071 50791 43800 72672 54280 19504 106 10971 87577 40091 88380 81937 27327 24188 78489 92382 43581 8875 22402 41...

output:

No

result:

ok ok

Test #22:

score: 0
Accepted
time: 244ms
memory: 17788kb

input:

100000 500000 9
34008 13155 90342 28233 23089 86546 14071 6854 11360
3498 65486
65603 70184
14269 18649
79366 11163
66926 49216
4445 76420
50121 20493
2808 43301
18218 44910
92999 97448
13760 37138
15100 36649
34074 1879
72027 68411
54611 87760
1896 60316
43650 8286
34285 74403
21309 96104
49344 941...

output:

Yes
28711
42477 2 13105 9027 
9027 14 71600 1161 43975 65448 75319 34925 31386 60272 14850 2006 95859 74780 66951 15806 
13105 11 61089 29011 93319 44285 41180 62003 21656 8841 18091 60265 88789 
15806 14 43109 28592 6837 17328 65179 75680 70761 97940 10510 61951 31079 2851 23716 14573 
66951 15 744...

result:

ok ok

Test #23:

score: 0
Accepted
time: 229ms
memory: 17952kb

input:

100000 500000 1
75076
9583 32552
72566 77581
74823 25463
58197 78380
62002 94563
99622 60434
39479 68180
1722 38894
43269 85989
33777 78513
5464 79304
57968 37134
88958 60066
61043 23394
50002 93317
59516 46962
55978 3705
2504 341
70466 21789
42193 45686
1370 18780
91444 2274
93546 66571
97443 53551...

output:

Yes
28677
82857 1 35776 
35776 7 79316 20173 11945 16396 80401 96959 38365 
38365 7 81855 12593 86417 27561 77613 93734 49513 
96959 4 27503 34503 93736 42527 
80401 10 10167 28764 42176 65762 61101 87295 7654 83081 16434 25541 
16396 10 49413 48424 94309 94392 22527 35684 77674 17454 6606 33703 
11...

result:

ok ok

Test #24:

score: 0
Accepted
time: 244ms
memory: 17852kb

input:

100000 500000 0

39862 49976
22596 40406
37185 98022
80733 93561
81387 94842
25064 61254
42694 16911
22623 87861
89266 37654
59510 12230
43457 79569
73883 19406
63275 92754
22177 11799
5763 44974
1570 83476
79123 73330
45165 77314
63415 32676
70388 8398
22032 77785
63620 61574
23429 41486
30923 1236...

output:

Yes
28753
74377 3 10523 79284 72514 
72514 8 20477 47888 41781 48162 8960 81624 29710 58651 
79284 6 7507 21313 66705 34079 1650 42548 
10523 12 81725 13516 1950 62040 46216 38822 892 89802 54955 12352 79104 59360 
58651 10 36890 97090 89801 37530 13446 4123 93902 89790 46272 87563 
29710 9 85045 44...

result:

ok ok

Test #25:

score: 0
Accepted
time: 97ms
memory: 20480kb

input:

199999 200000 10
162044 184301 102211 174303 129412 46215 153004 13679 113247 194319
100393 176945
52810 193834
159859 44467
119931 61763
196292 30856
21297 175055
20174 1882
11250 184866
74000 1054
74272 134956
41299 186242
162575 63218
119189 12678
29884 5001
148164 16567
24612 169902
77735 135002...

output:

No

result:

ok ok

Test #26:

score: 0
Accepted
time: 96ms
memory: 20492kb

input:

200000 199999 0

142790 145621
180161 104270
112230 88214
154000 63048
188285 141046
185739 50230
142683 197737
141276 49672
41219 95859
175530 171250
171226 174408
151297 88982
28928 71368
199034 63185
116370 106685
192890 167797
132366 79091
78160 89965
177169 151554
172583 127365
9032 60583
78786...

output:

No

result:

ok ok

Test #27:

score: 0
Accepted
time: 242ms
memory: 23840kb

input:

200000 500000 245
193722 185527 109052 75916 93935 24076 79627 20964 180786 120016 132778 186582 144529 16308 58727 114586 130490 34200 113593 7386 151039 39324 175706 195617 169880 139107 160903 183556 167931 124336 92216 181943 41472 98648 191217 191760 19769 86540 4125 65866 133876 106754 96372 1...

output:

No

result:

ok ok

Test #28:

score: 0
Accepted
time: 245ms
memory: 23780kb

input:

200000 500000 14
142703 65403 129451 151977 165363 20230 132897 87039 9024 158327 31353 194121 16577 146056
139648 187616
8050 35431
127655 35285
195736 80740
3874 174224
168938 136840
97592 176911
12210 58008
85816 66096
61709 179153
69540 1567
86595 14951
182066 29930
183615 37773
166329 61767
167...

output:

No

result:

ok ok

Test #29:

score: 0
Accepted
time: 297ms
memory: 29280kb

input:

200000 500000 1
5880
85775 146428
142622 151159
88421 138441
169300 66421
147351 32187
62008 74476
82579 109015
176101 15964
50525 172923
142682 150232
178015 197099
29910 154380
124900 65984
825 137825
194984 139256
31396 65802
141485 14608
126721 85235
193397 167129
98424 54611
63857 8244
68507 68...

output:

Yes
87504
194193 1 163305 
163305 5 157126 122352 90939 95888 133441 
133441 2 50367 167098 
95888 2 86153 50879 
90939 8 157728 173064 166655 37743 163560 196373 75439 153836 
122352 6 152245 196690 166260 63897 137186 102404 
157126 4 190376 19550 141214 115410 
167098 2 6295 68606 
50367 7 125764...

result:

ok ok

Test #30:

score: 0
Accepted
time: 171ms
memory: 27016kb

input:

199999 199998 73589
144387 49530 75323 115971 116495 141238 92902 186288 75011 21274 196 62128 161581 112516 16226 166382 73692 120539 170346 127146 153896 57832 23870 56030 110186 132465 101619 681 13908 5901 194116 151154 160650 78720 87497 131676 94642 65227 153151 67720 61825 132140 114363 76085...

output:

Yes
126410
144674 2 144396 144963 
144963 2 145238 145237 
144396 2 144102 144675 
145238 1 145479 
144102 2 143782 144397 
144397 1 144676 
143782 2 143468 144101 
143468 3 143134 143781 143780 
143781 1 144100 
143134 4 143466 142798 143467 143465 
144100 3 144395 144393 144394 
142798 1 142469 
1...

result:

ok ok

Test #31:

score: 0
Accepted
time: 0ms
memory: 3604kb

input:

2 1 1
1
1 2

output:

Yes
1
2 1 1 

result:

ok ok

Test #32:

score: 0
Accepted
time: 0ms
memory: 3824kb

input:

2 1 0

1 2

output:

Yes
1
1 1 2 

result:

ok ok

Extra Test:

score: 0
Extra Test Passed