結果

問題 No.812 Change of Class
ユーザー ahe100ahe100
提出日時 2019-04-12 22:26:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 158 ms / 4,000 ms
コード長 1,275 bytes
コンパイル時間 1,745 ms
コンパイル使用メモリ 175,276 KB
実行使用メモリ 14,724 KB
最終ジャッジ日時 2024-06-12 19:11:29
合計ジャッジ時間 6,445 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
13,140 KB
testcase_01 AC 12 ms
9,668 KB
testcase_02 AC 36 ms
11,076 KB
testcase_03 AC 77 ms
13,568 KB
testcase_04 AC 68 ms
13,128 KB
testcase_05 AC 158 ms
13,768 KB
testcase_06 AC 134 ms
13,120 KB
testcase_07 AC 7 ms
10,436 KB
testcase_08 AC 4 ms
9,924 KB
testcase_09 AC 143 ms
14,296 KB
testcase_10 AC 145 ms
14,164 KB
testcase_11 AC 23 ms
13,256 KB
testcase_12 AC 98 ms
13,848 KB
testcase_13 AC 3 ms
9,768 KB
testcase_14 AC 3 ms
9,160 KB
testcase_15 AC 99 ms
12,180 KB
testcase_16 AC 10 ms
9,540 KB
testcase_17 AC 95 ms
12,560 KB
testcase_18 AC 72 ms
11,984 KB
testcase_19 AC 82 ms
11,888 KB
testcase_20 AC 148 ms
14,140 KB
testcase_21 AC 68 ms
11,720 KB
testcase_22 AC 33 ms
10,600 KB
testcase_23 AC 7 ms
9,800 KB
testcase_24 AC 11 ms
9,152 KB
testcase_25 AC 25 ms
10,672 KB
testcase_26 AC 121 ms
13,476 KB
testcase_27 AC 109 ms
12,716 KB
testcase_28 AC 79 ms
11,804 KB
testcase_29 AC 20 ms
9,416 KB
testcase_30 AC 102 ms
12,204 KB
testcase_31 AC 87 ms
11,704 KB
testcase_32 AC 40 ms
10,180 KB
testcase_33 AC 114 ms
12,708 KB
testcase_34 AC 10 ms
9,668 KB
testcase_35 AC 21 ms
10,052 KB
testcase_36 AC 9 ms
10,044 KB
testcase_37 AC 48 ms
10,328 KB
testcase_38 AC 10 ms
11,276 KB
testcase_39 AC 51 ms
10,712 KB
testcase_40 AC 14 ms
9,540 KB
testcase_41 AC 9 ms
10,820 KB
testcase_42 AC 99 ms
12,264 KB
testcase_43 AC 32 ms
11,972 KB
testcase_44 AC 70 ms
11,076 KB
testcase_45 AC 10 ms
9,544 KB
testcase_46 AC 29 ms
11,592 KB
testcase_47 AC 71 ms
11,460 KB
testcase_48 AC 79 ms
11,880 KB
testcase_49 AC 21 ms
9,412 KB
testcase_50 AC 4 ms
9,540 KB
testcase_51 AC 24 ms
10,308 KB
testcase_52 AC 47 ms
11,800 KB
testcase_53 AC 15 ms
10,176 KB
testcase_54 AC 12 ms
9,412 KB
testcase_55 AC 51 ms
12,944 KB
testcase_56 AC 56 ms
13,696 KB
testcase_57 AC 66 ms
14,248 KB
testcase_58 AC 33 ms
12,652 KB
testcase_59 AC 64 ms
14,724 KB
testcase_60 AC 3 ms
8,776 KB
testcase_61 AC 3 ms
9,740 KB
testcase_62 AC 3 ms
8,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0;i<((int)(n));i++)
#define reg(i,a,b) for(int i = ((int)(a));i<=((int)(b));i++)
#define irep(i,n) for(int i = ((int)(n)-1);i>=0;i--)
#define ireg(i,a,b) for(int i = ((int)(b));i>=((int)(a));i--)
typedef long long ll;

/*
日数:log(最長距離)
*/

ll n,m,Q,a[100010],g[100010],d[100010];
vector<ll> v[100010],c[100010];

void init(){
	cin>>n>>m;
	rep(i,m){
		ll x,y;
		cin>>x>>y;
		v[x].push_back(y);
		v[y].push_back(x);
	}
	reg(i,1,n)g[i]=-1;
	reg(i,1,n)d[i]=1e18;
	cin>>Q;
	rep(i,Q)cin>>a[i];
}

int main(void){
	init();
	reg(i,1,n){
		if(g[i]==-1){
			g[i]=i;
			c[i].push_back(i);
			queue<ll> Q;
			Q.push(i);
			while(!Q.empty()){
				ll p = Q.front();Q.pop();
				for(ll q:v[p]){
					if(g[q]==-1){
						g[q]=i;
						Q.push(q);
						c[i].push_back(q);
					}
				}
			}
		}
	}
	rep(i,Q){
		//距離の最大値
		ll ans=0,ans2=0;
		rep(j,c[g[a[i]]].size()){
			d[c[g[a[i]]][j]]=1e18;
		}
		d[a[i]]=0;
		queue<ll> Q;
		Q.push(a[i]);
		while(!Q.empty()){
			ll p = Q.front();Q.pop();
			ans=max(ans,d[p]);
			for(ll q:v[p]){
				if(d[q]>d[p]+1){
					d[q]=d[p]+1;
					Q.push(q);
				}
			}
		}
		while(ans>(1<<ans2))ans2++;
		cout<<c[g[a[i]]].size()-1<<" "<<ans2<<endl;
	}
	return 0;
}
0