結果

問題 No.812 Change of Class
ユーザー leaf_1415leaf_1415
提出日時 2019-04-13 00:07:16
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 185 ms / 4,000 ms
コード長 943 bytes
コンパイル時間 641 ms
コンパイル使用メモリ 66,348 KB
実行使用メモリ 9,468 KB
最終ジャッジ日時 2024-06-12 19:59:18
合計ジャッジ時間 6,643 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
8,448 KB
testcase_01 AC 14 ms
6,940 KB
testcase_02 AC 42 ms
7,168 KB
testcase_03 AC 90 ms
8,960 KB
testcase_04 AC 79 ms
8,576 KB
testcase_05 AC 185 ms
8,448 KB
testcase_06 AC 157 ms
8,192 KB
testcase_07 AC 5 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 162 ms
8,960 KB
testcase_10 AC 171 ms
9,088 KB
testcase_11 AC 20 ms
6,944 KB
testcase_12 AC 117 ms
8,704 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 119 ms
7,808 KB
testcase_16 AC 10 ms
6,940 KB
testcase_17 AC 111 ms
7,936 KB
testcase_18 AC 86 ms
7,424 KB
testcase_19 AC 96 ms
7,808 KB
testcase_20 AC 175 ms
8,832 KB
testcase_21 AC 84 ms
7,296 KB
testcase_22 AC 40 ms
6,940 KB
testcase_23 AC 9 ms
6,944 KB
testcase_24 AC 12 ms
6,940 KB
testcase_25 AC 31 ms
6,940 KB
testcase_26 AC 144 ms
8,388 KB
testcase_27 AC 132 ms
8,128 KB
testcase_28 AC 94 ms
7,628 KB
testcase_29 AC 23 ms
6,944 KB
testcase_30 AC 115 ms
8,064 KB
testcase_31 AC 103 ms
7,680 KB
testcase_32 AC 49 ms
6,940 KB
testcase_33 AC 128 ms
8,320 KB
testcase_34 AC 11 ms
6,940 KB
testcase_35 AC 25 ms
6,944 KB
testcase_36 AC 11 ms
6,940 KB
testcase_37 AC 55 ms
6,980 KB
testcase_38 AC 8 ms
6,944 KB
testcase_39 AC 57 ms
7,040 KB
testcase_40 AC 17 ms
6,940 KB
testcase_41 AC 7 ms
6,944 KB
testcase_42 AC 118 ms
8,192 KB
testcase_43 AC 34 ms
7,296 KB
testcase_44 AC 82 ms
7,424 KB
testcase_45 AC 11 ms
6,940 KB
testcase_46 AC 30 ms
7,296 KB
testcase_47 AC 80 ms
7,296 KB
testcase_48 AC 89 ms
7,680 KB
testcase_49 AC 24 ms
6,940 KB
testcase_50 AC 4 ms
6,940 KB
testcase_51 AC 28 ms
6,940 KB
testcase_52 AC 53 ms
7,296 KB
testcase_53 AC 18 ms
6,940 KB
testcase_54 AC 16 ms
6,940 KB
testcase_55 AC 55 ms
8,316 KB
testcase_56 AC 62 ms
8,884 KB
testcase_57 AC 66 ms
8,956 KB
testcase_58 AC 37 ms
7,500 KB
testcase_59 AC 78 ms
9,468 KB
testcase_60 AC 3 ms
6,940 KB
testcase_61 AC 2 ms
6,940 KB
testcase_62 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <queue>
#define inf 1000000000

using namespace std;

int n, m;
vector<int> G[100005];
int dist[100005];

void bfs(int s)
{
	dist[s] = 0;
	queue<int> Q;
	Q.push(s);
	
	int v;
	while(Q.size()){
		v = Q.front();
		Q.pop();
		for(int i = 0; i < G[v].size(); i++){
			if(dist[G[v][i]] < inf) continue;
			dist[G[v][i]] = dist[v] + 1;
			Q.push(G[v][i]);
		}
	}
}

int main(void)
{
	cin >> n >> m;
	int u, v;
	for(int i = 1; i <= m; i++){
		cin >> u >> v;
		G[u].push_back(v);
		G[v].push_back(u);
	}
	
	int Q, a;
	cin >> Q;
	for(int q = 0; q < Q; q++){
		cin >> a;
		for(int i = 1; i <= n; i++) dist[i] = inf;
		bfs(a);
		int cnt = 0, mx = 0;
		for(int i = 1; i <= n; i++) if(dist[i] < inf) cnt++;
		cout << cnt-1 << " ";
		for(int i = 1; i <= n; i++) if(dist[i] < inf) mx = max(mx, dist[i]);
		
		for(int i = 0; ; i++){
			if(mx <= (1<<i)){
				cout << i << endl;
				break;
			}
		}
	}
	return 0;
}
0