QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#456925#860. We apologize for any inconvenienceKevin5307AC ✓2699ms14104kbC++231.8kb2024-06-28 17:23:342024-06-28 17:23:34

Judging History

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

  • [2024-06-28 17:23:34]
  • 评测
  • 测评结果:AC
  • 用时:2699ms
  • 内存:14104kb
  • [2024-06-28 17:23:34]
  • 提交

answer

//Author: Kevin
#include<bits/stdc++.h>
//#pragma GCC optimize("O2")
using namespace std;
#define ll long long
#define ull unsigned ll
#define pb emplace_back
#define mp make_pair
#define ALL(x) (x).begin(),(x).end()
#define rALL(x) (x).rbegin(),(x).rend()
#define srt(x) sort(ALL(x))
#define rev(x) reverse(ALL(x))
#define rsrt(x) sort(rALL(x))
#define sz(x) (int)(x.size())
#define inf 0x3f3f3f3f
#define pii pair<int,int>
#define lb(v,x) (int)(lower_bound(ALL(v),x)-v.begin())
#define ub(v,x) (int)(upper_bound(ALL(v),x)-v.begin())
#define uni(v) v.resize(unique(ALL(v))-v.begin())
#define longer __int128_t
void die(string S){puts(S.c_str());exit(0);}
int n,k;
int dist[1505][1505];
vector<int> vec[808];
int ind[808];
int main()
{
	ios_base::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
	int t;
	cin>>t;
	while(t--)
	{
		cin>>n>>k;
		memset(dist,0x3f,sizeof(dist));
		for(int i=1;i<=n+k;i++)
			dist[i][i]=0;
		for(int i=1;i<=k;i++)
		{
			int s;
			cin>>s;
			vec[i].resize(s);
			for(auto &x:vec[i])
			{
				cin>>x;
				dist[x][i+n]=dist[i+n][x]=1;
			}
		}
		int s;
		cin>>s;
		for(int i=1;i<=k;i++)
			ind[i]=s+1;
		for(int i=1;i<=s;i++)
		{
			int x;
			cin>>x;
			ind[x]=i;
		}
		vector<pii> v;
		for(int i=1;i<=k;i++)
			v.pb(ind[i],i);
		rsrt(v);
		int p=0;
		vector<int> vans;
		auto floyd=[&](int x)
		{
			for(int i=1;i<=n+k;i++)
				for(int j=1;j<=n+k;j++)
					dist[i][j]=min(dist[i][j],dist[i][x]+dist[x][j]);
		};
		for(int i=1;i<=n;i++)
			floyd(i);
		for(int i=s+1;i;i--)
		{
			while(p<sz(v)&&v[p].first>=i)
			{
				floyd(n+v[p].second);
				p++;
			}
			int ans=0;
			for(int j=1;j<=n;j++)
				for(int k=1;k<=n;k++)
					if(dist[j][k]!=inf)
						ans=max(ans,dist[j][k]);
			vans.pb(max(0,ans/2-1));
		}
		rev(vans);
		for(auto x:vans)
			cout<<x<<'\n';
	}
	return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 3ms
memory: 12484kb

input:

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

output:

1
2
0
0

result:

ok 4 number(s): "1 2 0 0"

Test #2:

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

input:

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

output:

1
1
1
1
0
0
0
1
1
1
1
1
1
1
1
1
1
1
1
0
1
1
1
1
1
1
1
1
1
1
1
2
2
2
2
2
2
1
1
0
1
1
1
1
1
1
1
1
2
2
2
2
2
2
2
1
0
0
0
0
1
1
1
1
1
1
1
0
0
0
0
0
0
0
0
0
0
0
1
0
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0
2
1
1
1
1
1
0
0
0
0
0
0
0
0
0
0
1
1
1
0
2
2
2
2
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0
1
1
1
1
1
1
1
0
0
0
...

result:

ok 893 numbers

Test #3:

score: 0
Accepted
time: 2694ms
memory: 13584kb

input:

2
750 750
2 47 500
2 51 145
2 22 531
2 22 354
2 22 727
2 25 700
2 7 159
2 42 356
2 57 727
2 28 237
2 57 714
2 68 511
2 29 81
2 65 318
2 43 91
2 65 488
2 68 549
2 16 310
2 30 618
2 6 105
2 7 468
2 34 253
2 51 155
2 21 205
2 22 470
2 36 642
2 17 649
2 66 229
2 10 409
2 65 105
2 21 395
2 51 552
2 25 55...

output:

2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
...

result:

ok 1000 numbers

Test #4:

score: 0
Accepted
time: 2621ms
memory: 12472kb

input:

4
750 750
2 511 512
2 649 650
2 154 155
2 128 129
2 344 345
2 453 454
2 613 614
2 10 11
2 491 492
2 356 357
2 299 300
2 294 295
2 699 700
2 441 442
2 13 14
2 78 79
2 583 584
2 430 431
2 342 343
2 63 64
2 547 548
2 100 101
2 584 585
2 14 15
2 33 34
2 619 620
2 2 3
2 392 393
2 383 384
2 631 632
2 614 ...

output:

748
695
444
444
444
444
326
326
326
257
257
257
162
162
162
152
152
152
152
152
93
93
93
93
93
93
93
93
93
93
93
93
93
72
72
72
72
72
72
62
62
62
62
62
62
62
62
62
62
62
62
62
62
62
49
49
48
48
48
48
48
48
48
48
48
48
48
48
48
48
42
37
37
37
37
37
37
37
37
37
37
37
37
37
37
37
37
33
26
26
26
26
26
2...

result:

ok 997 numbers

Test #5:

score: 0
Accepted
time: 2699ms
memory: 14104kb

input:

2
750 750
540 514 18 412 670 208 26 633 215 378 588 530 101 563 276 247 697 596 328 83 129 494 13 298 582 269 222 649 57 14 365 325 419 679 579 747 583 97 571 744 632 61 622 681 67 127 624 524 399 216 589 275 644 271 442 447 444 460 184 118 542 290 746 613 704 25 353 477 364 715 292 294 224 201 512 ...

output:

2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
...

result:

ok 1000 numbers

Test #6:

score: 0
Accepted
time: 1550ms
memory: 12980kb

input:

2
498 498
164 139 208 482 253 14 37 20 228 198 467 39 174 48 288 353 155 190 246 119 455 76 149 167 128 375 183 415 373 212 425 36 161 304 348 310 204 497 231 399 490 324 211 475 340 309 24 58 151 166 471 443 321 286 67 473 251 219 383 277 176 142 171 82 86 136 427 235 278 498 343 23 391 85 60 110 2...

output:

3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
2
...

result:

ok 996 numbers

Test #7:

score: 0
Accepted
time: 1580ms
memory: 13000kb

input:

2
500 500
2 1 2
2 2 1
2 3 4
2 4 3
2 5 6
2 6 5
2 7 8
2 8 7
2 9 10
2 10 9
2 11 12
2 12 11
2 13 14
2 14 13
2 15 16
2 16 15
2 17 18
2 18 17
2 19 20
2 20 19
2 21 22
2 22 21
2 23 24
2 24 23
2 25 26
2 26 25
2 27 28
2 28 27
2 29 30
2 30 29
2 31 32
2 32 31
2 33 34
2 34 33
2 35 36
2 36 35
2 37 38
2 38 37
2 39...

output:

1
1
1
1
1
1
1
1
1
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
...

result:

ok 1000 numbers