結果

問題 No.812 Change of Class
ユーザー tkmst201tkmst201
提出日時 2021-02-25 15:02:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 146 ms / 4,000 ms
コード長 1,405 bytes
コンパイル時間 2,107 ms
コンパイル使用メモリ 210,120 KB
実行使用メモリ 9,452 KB
最終ジャッジ日時 2024-10-01 06:02:37
合計ジャッジ時間 7,166 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
8,136 KB
testcase_01 AC 9 ms
6,820 KB
testcase_02 AC 28 ms
6,820 KB
testcase_03 AC 59 ms
8,908 KB
testcase_04 AC 51 ms
8,160 KB
testcase_05 AC 146 ms
8,404 KB
testcase_06 AC 118 ms
7,116 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 129 ms
9,108 KB
testcase_10 AC 124 ms
9,108 KB
testcase_11 AC 10 ms
6,912 KB
testcase_12 AC 81 ms
8,764 KB
testcase_13 AC 1 ms
6,820 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 89 ms
7,148 KB
testcase_16 AC 7 ms
6,816 KB
testcase_17 AC 81 ms
7,424 KB
testcase_18 AC 60 ms
6,820 KB
testcase_19 AC 69 ms
6,820 KB
testcase_20 AC 137 ms
8,924 KB
testcase_21 AC 61 ms
6,816 KB
testcase_22 AC 27 ms
6,820 KB
testcase_23 AC 6 ms
6,816 KB
testcase_24 AC 9 ms
6,816 KB
testcase_25 AC 22 ms
6,820 KB
testcase_26 AC 111 ms
8,064 KB
testcase_27 AC 102 ms
7,376 KB
testcase_28 AC 68 ms
6,816 KB
testcase_29 AC 17 ms
6,816 KB
testcase_30 AC 87 ms
7,328 KB
testcase_31 AC 75 ms
6,816 KB
testcase_32 AC 34 ms
6,820 KB
testcase_33 AC 88 ms
7,788 KB
testcase_34 AC 8 ms
6,820 KB
testcase_35 AC 18 ms
6,820 KB
testcase_36 AC 8 ms
6,820 KB
testcase_37 AC 43 ms
6,816 KB
testcase_38 AC 5 ms
6,816 KB
testcase_39 AC 46 ms
6,820 KB
testcase_40 AC 12 ms
6,816 KB
testcase_41 AC 4 ms
6,816 KB
testcase_42 AC 93 ms
7,208 KB
testcase_43 AC 18 ms
6,820 KB
testcase_44 AC 64 ms
6,816 KB
testcase_45 AC 8 ms
6,820 KB
testcase_46 AC 17 ms
6,816 KB
testcase_47 AC 64 ms
6,824 KB
testcase_48 AC 71 ms
6,816 KB
testcase_49 AC 19 ms
6,820 KB
testcase_50 AC 3 ms
6,816 KB
testcase_51 AC 20 ms
6,816 KB
testcase_52 AC 38 ms
6,820 KB
testcase_53 AC 12 ms
6,824 KB
testcase_54 AC 10 ms
6,820 KB
testcase_55 AC 41 ms
7,720 KB
testcase_56 AC 48 ms
8,588 KB
testcase_57 AC 50 ms
8,808 KB
testcase_58 AC 27 ms
6,820 KB
testcase_59 AC 57 ms
9,452 KB
testcase_60 AC 2 ms
6,816 KB
testcase_61 AC 2 ms
6,820 KB
testcase_62 AC 2 ms
6,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) begin(v),end(v)
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }
using ll = long long;
using pii = pair<int, int>;
constexpr ll INF = 1ll<<30;
constexpr ll longINF = 1ll<<60;
constexpr ll MOD = 1000000007;
constexpr bool debug = false;
//---------------------------------//

int main() {
	int N, M;
	cin >> N >> M;
	vector<vector<int>> g(N);
	REP(i, M) {
		int p, q;
		scanf("%d %d", &p, &q);
		--p; --q;
		g[p].emplace_back(q);
		g[q].emplace_back(p);
	}
	
	auto func = [&](int st) -> pii {
		vector<int> dist(N, INF);
		queue<int> que;
		dist[st] = 0;
		que.emplace(st);
		int cnt = 0, mxd = 0;
		while (!que.empty()) {
			int u = que.front(); que.pop();
			++cnt;
			chmax(mxd, dist[u]);
			for (int v : g[u]) if (chmin(dist[v], dist[u] + 1)) que.emplace(v);
		}
		return {cnt, mxd};
	};
	
	int Q;
	cin >> Q;
	while (Q--) {
		int A;
		scanf("%d", &A);
		--A;
		auto [cnt, mxd] = func(A);
		--cnt;
		
		if (mxd <= 1) printf("%d %d\n", cnt, 0);
		else {
			for (int i = 16; i >= 0; --i) if ((mxd - 1) >> i & 1) {
				printf("%d %d\n", cnt, i + 1);
				break;
			}
		}
	}
}
0