QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#464109#3561. Capital CityRafi22#11 1797ms523376kbC++203.1kb2024-07-05 19:59:112024-07-05 19:59:11

Judging History

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

  • [2024-07-05 19:59:11]
  • 评测
  • 测评结果:11
  • 用时:1797ms
  • 内存:523376kb
  • [2024-07-05 19:59:11]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;

#ifdef DEBUG
auto&operator<<(auto&o,pair<auto,auto>p){return o<<"("<<p.first<<", "<<p.second<<")";}
auto operator<<(auto&o,auto x)->decltype(x.end(),o){o<<"{";int i=0;for(auto e:x)o<<","+!i++<<e;return o<<"}";}
#define debug(X...)cerr<<"["#X"]: ",[](auto...$){((cerr<<$<<"; "),...)<<endl;}(X)
#else
#define debug(...){}
#endif

#define ll long long
#define ld long double
#define endl '\n'
#define st first
#define nd second
#define pb push_back
#define sz(x) (int)(x).size()
#define all(x) (x).begin(), (x).end()
#define FOR(i,l,r) for(int i=(l);i<=(r);i++)
#define ROF(i,r,l) for(int i=(r);i>=(l);i--)
int inf=1000000007;
ll infl=1000000000000000007;
ll mod=1000000007;

const int N=200007,L=18;

vector<int>G1[N];
int pre[N],post[N],it;
int skok[N][L];

vector<int>G[N*(L+1)+7],RG[N*(L+1)+7];

int aaa;

void edge(int u,int v)
{
	aaa++;
	G[u].pb(v);
	RG[v].pb(u);
}

void dfs(int v,int o)
{
	pre[v]=++it;
	skok[v][0]=o;
	edge(v*(L+1)+1,o*(L+1));
	FOR(i,1,L-1) 
	{
		//edge(v*(L+1)+i+1,v*(L+1)+i);
		edge(v*(L+1)+i+1,skok[v][i-1]*(L+1)+i);
		skok[v][i]=skok[skok[v][i-1]][i-1];
	}
	for(auto u:G1[v]) if(u!=o) dfs(u,v);
	post[v]=it;
}

bool anc(int u,int v)
{
	return pre[u]<=pre[v]&&post[u]>=post[v];
}
int lca(int u,int v)
{
	if(anc(u,v)) return u;
	ROF(i,L-1,0) if(!anc(skok[u][i],v)) u=skok[u][i];
	return skok[u][0];
}

vector<int>X[N];

void add(int u,int v)
{
	edge(u*(L+1),v*(L+1));
	edge(v*(L+1),u*(L+1));
	int l=lca(u,v);
	edge(u*(L+1),l*(L+1));
	int U=u,V=v;
	ROF(i,L-1,0)
	{
		if(!anc(skok[u][i],V))
		{
			edge(U*(L+1),u*(L+1)+i+1);
			u=skok[u][i];
		}
	}
	ROF(i,L-1,0)
	{
		if(!anc(skok[v][i],U))
		{
			edge(V*(L+1),v*(L+1)+i+1);
			v=skok[v][i];
		}
	}
}

bool odw[N*(L+1)+7];
int scc[N*(L+1)+7];
vector<int>ord;

int ile[N*(L+1)+7];
bool ok[N*(L+1)+7];

void dfs2(int v)
{
	odw[v]=1;
	for(auto u:G[v]) if(!odw[u]) dfs2(u);
	if(v%(L+1)>1&&!odw[v-1])  dfs2(v-1);
	ord.pb(v);
}

int ans=inf,C;

int c[N];
bool is[N];
vector<int>xd;

void dfs3(int v)
{
	scc[v]=C;
	if(v%(L+1)==0&&!is[c[v/(L+1)]])
	{
		xd.pb(c[v/(L+1)]);
		is[c[v/(L+1)]]=1;
	} 
	for(auto u:RG[v]) 
	{
		if(!scc[u]) dfs3(u);
		else if(scc[u]!=C) ok[scc[u]]=0;
	}
	if(v%(L+1)!=0&&v%(L+1)<18) 
	{
		int u=v+1;
		if(!scc[u]) dfs3(u);
		else if(scc[u]!=C) ok[scc[u]]=0;
	}
}


signed main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int n,k;
    cin>>n>>k;
    FOR(i,1,n-1)
    {
		int a,b;
		cin>>a>>b;
		G1[a].pb(b);
		G1[b].pb(a);
	}
	dfs(1,1);
	FOR(i,1,n)
	{
		cin>>c[i];
		X[c[i]].pb(i);
	}
	debug(aaa);
	FOR(i,1,k)
	{
		for(int j=1;j<sz(X[i]);j++) add(X[i][j-1],X[i][j]);
	}
    for(int i=L+1;i<=n*(L+1)+L;i++) if(!odw[i]) dfs2(i);
    reverse(all(ord));
    for(auto i:ord)
    {
		if(scc[i]) continue;
		C++;
		ok[C]=1;
		dfs3(i);
		ile[C]=sz(xd);
		for(auto x:xd) is[x]=0;
		xd.clear();
	}
	for(int i=1;i<=C;i++) if(ok[i]) ans=min(ans,ile[i]);
	cout<<ans-1<<endl;
	debug(aaa);
    

    return 0;
}

详细

Subtask #1:

score: 1
Accepted

Test #1:

score: 1
Accepted
time: 4ms
memory: 11924kb

input:

20 3
16 10
10 3
18 2
4 5
8 6
11 12
2 14
1 2
6 3
1 11
1 4
7 20
3 2
9 7
3 13
15 19
5 7
17 6
12 15
2
2
1
1
1
2
2
1
3
3
1
3
1
3
2
2
1
2
2
3

output:

2

result:

ok single line: '2'

Test #2:

score: 0
Accepted
time: 4ms
memory: 11860kb

input:

20 3
13 1
5 17
14 1
15 2
19 17
7 9
4 6
12 5
15 18
1 2
16 20
3 4
11 8
2 7
9 16
5 1
3 2
5 8
7 10
1
2
3
2
1
3
3
3
2
3
3
3
3
2
2
1
3
1
2
3

output:

2

result:

ok single line: '2'

Test #3:

score: 0
Accepted
time: 4ms
memory: 11868kb

input:

20 3
7 6
9 13
12 11
16 6
20 8
14 17
2 3
9 11
4 2
2 1
12 14
15 8
18 16
9 19
10 4
2 9
8 3
4 5
5 6
2
2
2
3
2
3
3
1
2
2
1
2
1
1
1
2
3
2
3
3

output:

2

result:

ok single line: '2'

Test #4:

score: 0
Accepted
time: 4ms
memory: 11868kb

input:

20 10
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
10
9
8
5
6
7
1
2
3
4
5
6
7
1
2
3
4
8
9
10

output:

6

result:

ok single line: '6'

Test #5:

score: 0
Accepted
time: 8ms
memory: 11932kb

input:

20 10
19 6
6 3
3 18
18 20
20 11
11 7
7 17
17 14
14 9
9 13
13 5
5 12
12 4
4 10
10 2
2 16
16 15
15 8
8 1
8
3
2
6
7
5
7
5
1
1
4
9
4
6
2
10
9
10
8
3

output:

4

result:

ok single line: '4'

Test #6:

score: 0
Accepted
time: 8ms
memory: 11932kb

input:

20 10
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
10
9
8
7
6
5
4
3
2
1
2
1
3
4
5
6
7
8
9
10

output:

1

result:

ok single line: '1'

Test #7:

score: 0
Accepted
time: 8ms
memory: 9796kb

input:

20 10
20 9
9 17
17 4
15 4
15 16
3 19
3 16
19 6
19 2
19 7
6 11
11 8
8 13
13 10
10 5
5 14
14 12
12 1
1 18
10
2
7
9
10
3
2
3
7
1
4
1
4
8
5
9
6
8
6
5

output:

1

result:

ok single line: '1'

Test #8:

score: 0
Accepted
time: 7ms
memory: 9816kb

input:

20 10
18 12
12 11
9 11
9 19
8 7
8 19
16 7
16 20
3 6
3 20
6 15
15 2
2 14
14 10
10 13
13 4
4 5
5 17
17 1
9
8
6
9
2
8
4
3
6
2
5
10
7
1
1
10
7
3
5
4

output:

1

result:

ok single line: '1'

Test #9:

score: 0
Accepted
time: 3ms
memory: 11940kb

input:

20 10
13 15
15 12
15 17
15 5
12 16
16 4
18 4
18 11
2 14
2 11
14 3
3 9
9 8
8 6
6 1
1 7
7 19
19 10
10 20
9
6
5
7
8
1
3
5
4
9
7
6
2
4
10
2
8
10
1
3

output:

1

result:

ok single line: '1'

Test #10:

score: 0
Accepted
time: 8ms
memory: 11912kb

input:

1 1
1

output:

0

result:

ok single line: '0'

Subtask #2:

score: 10
Accepted

Dependency #1:

100%
Accepted

Test #11:

score: 10
Accepted
time: 13ms
memory: 14980kb

input:

2000 250
1875 208
1788 262
675 397
779 1033
185 238
469 70
650 1600
146 1093
248 1604
167 504
914 1041
1263 1427
131 68
1759 81
114 170
676 923
489 95
1747 107
133 91
582 164
35 1315
592 740
888 475
1230 117
818 522
1108 52
1276 1891
4 1
212 1917
1298 662
642 391
7 5
1035 1804
856 656
119 99
385 355...

output:

244

result:

ok single line: '244'

Test #12:

score: 0
Accepted
time: 4ms
memory: 12964kb

input:

2000 250
37 10
1592 1517
607 125
77 194
56 1371
1470 1162
1004 323
309 567
925 188
389 509
1644 1619
286 1000
144 1539
244 900
644 28
528 26
251 140
183 81
764 248
21 775
191 25
1178 819
29 94
1166 934
271 1066
3 27
316 1063
901 91
219 64
853 983
13 5
180 70
394 992
1537 1193
188 1557
618 1613
116 7...

output:

246

result:

ok single line: '246'

Test #13:

score: 0
Accepted
time: 12ms
memory: 12944kb

input:

2000 250
1155 1655
183 259
19 685
845 610
1139 1514
665 549
199 272
516 1425
510 499
721 1497
316 497
452 1417
136 379
12 10
99 281
1850 1671
275 356
786 306
108 1833
1216 238
1914 210
1908 1158
771 893
41 635
67 988
202 726
16 55
671 577
199 306
731 1723
281 293
115 106
1365 374
1239 658
106 194
47...

output:

245

result:

ok single line: '245'

Test #14:

score: 0
Accepted
time: 12ms
memory: 12956kb

input:

2000 250
1580 249
640 178
2 1
615 1054
112 816
949 22
57 793
407 950
865 416
1903 1229
975 365
455 1355
1494 98
1565 497
1244 780
1323 1074
1588 138
1503 1145
447 352
1264 1880
951 1564
821 393
232 569
1023 572
158 255
571 1257
1693 704
1816 309
726 255
570 528
284 471
1430 569
26 1408
357 1902
452 ...

output:

245

result:

ok single line: '245'

Test #15:

score: 0
Accepted
time: 8ms
memory: 12960kb

input:

2000 758
1645 394
394 842
842 1368
1368 89
89 805
805 351
351 811
811 1752
1752 1787
1787 1219
1219 1299
1299 822
822 878
878 1582
1582 807
807 1371
1371 1142
1645 924
1645 282
282 834
282 74
74 1744
74 1834
1834 1309
1834 1009
1009 870
1009 1163
1163 1879
1163 25
25 1967
25 1779
1779 1974
1779 268
...

output:

7

result:

ok single line: '7'

Test #16:

score: 0
Accepted
time: 4ms
memory: 12904kb

input:

2000 884
178 1218
1218 1351
1351 1815
1815 98
98 343
343 1095
1095 862
862 719
719 1071
1071 1231
1231 1366
1366 72
72 816
178 1470
178 1696
1696 298
1696 1448
1448 1172
1448 1006
1006 514
1006 647
647 544
647 1707
1707 872
1707 563
563 1049
563 1428
1428 665
1428 716
716 734
716 1195
1195 935
1195 ...

output:

6

result:

ok single line: '6'

Test #17:

score: 0
Accepted
time: 8ms
memory: 13440kb

input:

2000 503
32 1635
1635 1645
1645 557
557 40
40 126
126 1165
1165 888
888 567
567 913
913 702
702 1242
1242 1385
1385 12
12 1224
1224 1688
1688 1189
1189 620
620 1778
1778 989
989 1914
1914 727
727 17
17 921
921 728
728 1601
1601 941
941 29
29 1692
1692 945
945 815
815 757
757 1413
1413 1539
1539 161
...

output:

1

result:

ok single line: '1'

Test #18:

score: 0
Accepted
time: 4ms
memory: 15588kb

input:

2000 505
393 839
839 134
134 1135
1135 288
288 1769
1769 1658
1658 147
147 523
523 276
276 779
779 263
263 1152
1152 1858
1858 1556
1556 1353
1353 1724
1724 1951
1951 1903
1903 1761
1761 1775
1775 122
122 355
355 43
43 368
368 300
300 175
175 947
947 1239
1239 1653
1653 373
373 1448
1448 1621
1621 7...

output:

3

result:

ok single line: '3'

Test #19:

score: 0
Accepted
time: 8ms
memory: 13376kb

input:

2000 511
16 767
767 1917
1917 555
555 815
815 629
629 211
211 101
101 128
128 543
543 1548
1548 1909
1909 958
958 841
841 43
43 910
910 881
881 148
148 1263
1263 1117
1117 1710
1710 1860
1860 1395
1395 1
1 1740
1740 107
107 1717
1717 1553
1553 1397
1397 552
552 1355
1355 1569
1569 567
567 1265
1265 ...

output:

9

result:

ok single line: '9'

Test #20:

score: 0
Accepted
time: 8ms
memory: 15392kb

input:

2000 503
788 1186
1186 1179
1179 1230
1230 1639
1639 838
838 522
522 227
227 1293
1293 1710
1710 1976
1976 558
558 1559
1559 1167
1167 1429
1429 733
733 346
346 1476
1476 220
220 764
764 898
898 790
790 1868
1868 90
90 271
271 787
787 294
294 1087
1087 215
215 342
342 636
636 350
350 646
646 1335
13...

output:

1

result:

ok single line: '1'

Test #21:

score: 0
Accepted
time: 12ms
memory: 13464kb

input:

2000 506
1456 192
192 699
699 1473
1473 101
101 1798
1798 1708
1708 1185
1185 1850
1850 961
961 471
471 1866
1866 662
662 562
562 88
88 831
831 601
601 893
893 860
860 1951
1951 362
362 434
434 1879
1879 255
255 304
304 1181
1181 957
957 213
213 1902
1902 173
173 743
743 417
417 48
48 1262
1262 1121...

output:

4

result:

ok single line: '4'

Test #22:

score: 0
Accepted
time: 12ms
memory: 13484kb

input:

2000 1000
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
51 52
5...

output:

3

result:

ok single line: '3'

Test #23:

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

input:

2000 961
396 15
15 401
401 1074
1074 1431
1431 775
775 428
428 278
278 1762
1762 402
402 156
156 1303
1303 1897
1897 460
460 212
212 165
165 318
318 1094
1094 1865
1865 977
977 588
588 580
580 41
41 1127
1127 1010
1010 1035
1035 1319
1319 1078
1078 1059
1059 1210
1210 518
518 1077
1077 79
79 556
556...

output:

10

result:

ok single line: '10'

Test #24:

score: 0
Accepted
time: 8ms
memory: 13640kb

input:

2000 999
1747 1211
1211 1085
1085 1457
1457 1761
1761 420
420 565
565 1624
1624 1920
1920 1859
1859 1924
1924 1572
1572 1092
1092 1642
1642 218
218 1728
1728 417
417 603
603 145
145 374
1747 1243
1747 903
1243 658
1243 1180
658 1552
658 245
1552 148
1552 228
148 1498
148 1168
1498 1599
1498 1578
159...

output:

9

result:

ok single line: '9'

Test #25:

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

input:

2000 526
1376 1751
1751 1728
1728 145
1987 145
1987 517
1864 557
1864 517
557 718
112 718
112 1859
1703 1859
1703 1193
726 1193
726 1031
34 443
34 1031
1662 941
1662 1855
379 643
379 1018
769 491
769 643
348 491
348 366
1909 453
1909 366
116 453
116 581
1270 94
1270 581
94 1351
1351 1139
1934 1863
1...

output:

7

result:

ok single line: '7'

Test #26:

score: 0
Accepted
time: 3ms
memory: 17480kb

input:

2000 508
100 1383
1383 82
82 676
1055 676
1055 974
1105 1776
1105 974
1776 571
571 84
1856 84
1856 932
678 1805
678 27
1093 347
1093 354
651 520
651 68
1165 733
1165 68
733 621
1313 1404
1313 1936
1231 766
1231 1297
766 1815
1815 323
323 1434
1628 1434
1628 753
1205 124
1205 1523
272 1516
272 1186
5...

output:

1

result:

ok single line: '1'

Test #27:

score: 0
Accepted
time: 7ms
memory: 15940kb

input:

2000 528
398 366
128 1316
128 320
838 18
838 1755
18 411
537 411
537 740
1869 740
1869 750
1096 750
1096 863
321 597
321 926
877 1892
877 564
1835 1197
1835 186
573 1810
573 1197
1810 25
25 292
675 1730
675 257
624 1218
624 886
1448 1326
1448 1469
1384 410
1384 1469
410 785
785 1555
610 1555
610 548...

output:

7

result:

ok single line: '7'

Test #28:

score: 0
Accepted
time: 14ms
memory: 15804kb

input:

2000 511
997 1974
997 472
1974 900
1974 285
1974 309
900 475
900 1254
900 383
475 1500
475 1948
1500 1080
1080 26
26 1656
1656 213
1656 1978
213 447
213 956
213 1278
447 1175
447 651
447 1797
447 1245
1175 1515
1175 72
1515 1892
1515 957
1515 567
1892 1319
1319 1130
1990 1130
1990 186
1650 64
1650 1...

output:

2

result:

ok single line: '2'

Test #29:

score: 0
Accepted
time: 8ms
memory: 15292kb

input:

2000 520
1361 533
1361 1936
533 984
984 156
1580 156
1580 924
1986 812
1986 924
812 988
988 1309
988 1450
988 1062
1309 1845
1845 1625
1625 297
1625 1970
1625 1711
297 1372
297 333
1372 1546
619 1546
619 1029
24 1029
24 1512
24 1539
627 302
627 965
850 1388
850 1789
1719 1213
1719 1789
1719 1777
172...

output:

5

result:

ok single line: '5'

Test #30:

score: 0
Accepted
time: 7ms
memory: 13940kb

input:

2000 509
1760 737
1760 1465
1760 376
1760 1433
737 1269
737 1204
1269 1106
1269 1326
1269 1081
1106 255
895 255
895 1983
1496 48
1496 1361
1496 186
1518 1959
1518 1361
1959 1585
1585 218
218 1980
1980 568
568 1004
1004 663
1643 1511
1643 663
1643 838
1209 1336
1209 838
278 1336
278 1847
1830 1652
18...

output:

0

result:

ok single line: '0'

Subtask #3:

score: 0
Memory Limit Exceeded

Test #31:

score: 30
Accepted
time: 1797ms
memory: 520736kb

input:

200000 100000
185785 19011
19011 181550
181550 117972
117972 192238
192238 137685
137685 10126
10126 193657
193657 130856
130856 119980
119980 37122
37122 24497
24497 162102
162102 104298
104298 61332
61332 103789
103789 71060
71060 54044
54044 12075
12075 55296
55296 70106
70106 27512
27512 190160
...

output:

4

result:

ok single line: '4'

Test #32:

score: 0
Accepted
time: 1137ms
memory: 522820kb

input:

200000 100000
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
51 ...

output:

8

result:

ok single line: '8'

Test #33:

score: 0
Accepted
time: 1694ms
memory: 522416kb

input:

200000 100000
16998 125645
125645 171820
171820 114276
114276 56649
56649 79575
79575 12368
12368 165362
165362 121507
121507 97604
97604 95803
95803 166064
166064 34692
34692 79122
79122 196245
196245 118382
118382 23706
23706 5613
5613 79967
79967 189807
189807 22420
22420 91378
91378 163988
16398...

output:

6

result:

ok single line: '6'

Test #34:

score: 0
Accepted
time: 1087ms
memory: 523376kb

input:

200000 100000
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
51 ...

output:

2

result:

ok single line: '2'

Test #35:

score: 0
Accepted
time: 1708ms
memory: 515216kb

input:

200000 92212
154665 186755
186755 34426
34426 62560
62560 102764
102764 146653
146653 10601
10601 57489
57489 175122
175122 106567
106567 17032
17032 143043
143043 144788
144788 80662
80662 23840
23840 22198
22198 187257
187257 102646
102646 119845
119845 1996
1996 166213
166213 164599
164599 198625...

output:

8

result:

ok single line: '8'

Test #36:

score: 0
Accepted
time: 1083ms
memory: 522448kb

input:

200000 98538
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
51 5...

output:

10

result:

ok single line: '10'

Test #37:

score: 0
Accepted
time: 1780ms
memory: 518460kb

input:

200000 85796
134991 80269
80269 173185
173185 27752
27752 29879
29879 39943
39943 89030
89030 19246
19246 189377
189377 32595
32595 25167
25167 124720
124720 111123
111123 92985
92985 93436
93436 127124
127124 67035
67035 156339
156339 29358
29358 92195
92195 103104
103104 72646
72646 124927
124927 ...

output:

9

result:

ok single line: '9'

Test #38:

score: 0
Accepted
time: 1035ms
memory: 521148kb

input:

200000 82396
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
51 5...

output:

7

result:

ok single line: '7'

Test #39:

score: -30
Memory Limit Exceeded

input:

200000 50013
170581 23186
23186 177134
163331 177134
163331 132181
194751 35470
194751 132181
35470 65283
28070 65283
28070 781
180242 143138
180242 143600
48463 148936
48463 100936
148936 96574
96574 78505
78505 63572
194815 63572
194815 48573
152482 167917
152482 48573
167917 87036
87036 85202
160...

output:

2

result:


Subtask #4:

score: 0
Skipped

Dependency #1:

100%
Accepted

Dependency #2:

100%
Accepted

Dependency #3:

0%