結果

問題 No.812 Change of Class
ユーザー aa
提出日時 2019-04-13 12:25:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 175 ms / 4,000 ms
コード長 1,369 bytes
コンパイル時間 1,730 ms
コンパイル使用メモリ 177,108 KB
実行使用メモリ 10,256 KB
最終ジャッジ日時 2024-06-12 20:31:58
合計ジャッジ時間 7,035 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
8,760 KB
testcase_01 AC 13 ms
6,944 KB
testcase_02 AC 39 ms
6,940 KB
testcase_03 AC 84 ms
9,856 KB
testcase_04 AC 75 ms
8,960 KB
testcase_05 AC 175 ms
9,064 KB
testcase_06 AC 145 ms
7,680 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 158 ms
9,760 KB
testcase_10 AC 155 ms
9,892 KB
testcase_11 AC 15 ms
7,820 KB
testcase_12 AC 104 ms
9,412 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 110 ms
7,660 KB
testcase_16 AC 8 ms
6,944 KB
testcase_17 AC 104 ms
8,092 KB
testcase_18 AC 76 ms
6,944 KB
testcase_19 AC 88 ms
7,296 KB
testcase_20 AC 162 ms
9,568 KB
testcase_21 AC 73 ms
6,944 KB
testcase_22 AC 34 ms
6,944 KB
testcase_23 AC 7 ms
6,940 KB
testcase_24 AC 10 ms
6,944 KB
testcase_25 AC 28 ms
6,944 KB
testcase_26 AC 137 ms
8,576 KB
testcase_27 AC 122 ms
7,940 KB
testcase_28 AC 88 ms
7,168 KB
testcase_29 AC 21 ms
6,944 KB
testcase_30 AC 109 ms
7,808 KB
testcase_31 AC 97 ms
7,040 KB
testcase_32 AC 44 ms
6,940 KB
testcase_33 AC 114 ms
8,392 KB
testcase_34 AC 9 ms
6,940 KB
testcase_35 AC 21 ms
6,940 KB
testcase_36 AC 9 ms
6,940 KB
testcase_37 AC 51 ms
6,940 KB
testcase_38 AC 6 ms
6,944 KB
testcase_39 AC 53 ms
6,944 KB
testcase_40 AC 15 ms
6,940 KB
testcase_41 AC 5 ms
6,944 KB
testcase_42 AC 107 ms
7,728 KB
testcase_43 AC 31 ms
6,944 KB
testcase_44 AC 75 ms
6,940 KB
testcase_45 AC 9 ms
6,944 KB
testcase_46 AC 27 ms
6,944 KB
testcase_47 AC 73 ms
6,944 KB
testcase_48 AC 82 ms
7,424 KB
testcase_49 AC 23 ms
6,944 KB
testcase_50 AC 2 ms
6,940 KB
testcase_51 AC 25 ms
6,940 KB
testcase_52 AC 50 ms
7,040 KB
testcase_53 AC 16 ms
6,940 KB
testcase_54 AC 13 ms
6,944 KB
testcase_55 AC 56 ms
8,228 KB
testcase_56 AC 66 ms
9,184 KB
testcase_57 AC 81 ms
9,444 KB
testcase_58 AC 32 ms
6,940 KB
testcase_59 AC 80 ms
10,256 KB
testcase_60 AC 2 ms
6,940 KB
testcase_61 AC 2 ms
6,944 KB
testcase_62 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"

using namespace std;

struct unionfind
{
	//rankのオーバーフローに注意
	vector<int> par, rank;
	unionfind(int n)
	{
		par.resize(n);
		rank.resize(n);
		for (int i = 0; i < n; i++)
		{
			par[i] = i;
			rank[i] = 1;
		}
	}

	bool same(int u, int v)
	{
		return root(u) == root(v);
	}

	void unite(int u, int v)
	{
		if (same(u, v))
			return;
		u = root(u), v = root(v);
		if (rank[u] > rank[v])
			swap(u, v);
		par[u] = v;
		rank[v] += rank[u];
	}

	int root(int v)
	{
		if (par[v] == v)
			return v;
		return par[v] = root(par[v]);
	}
};

void solve()
{
	int n, m, q;
	cin >> n >> m;
	unionfind uf(n);
	vector<int> g[n];
	while (m--)
	{
		int u, v;
		cin >> u >> v;
		u--, v--;
		uf.unite(u, v);
		g[u].push_back(v);
		g[v].push_back(u);
	}
	cin >> q;
	while(q--)
	{
		int a, s;
		cin >> a;
		a--;
		s = uf.rank[uf.root(a)] - 1;
		cout << s << ' ';
		vector<int> d(n, -1);
		d[a] = 0;
		queue<int> q;
		q.push(a);
		int maxi = 0;
		while (!q.empty())
		{
			int v = q.front();
			q.pop();
			for (int nv : g[v])
			{
				if (d[nv] != -1) continue;
				d[nv] = d[v] + 1;
				q.push(nv);
				maxi = max(maxi, d[nv]);
			}
		}
		int l = -1, r = 20;
		while(l+1<r)
		{
			int m = (l + r) / 2;
			(pow(2, m) >= maxi ? r : l) = m;
		}
		cout << r << endl;
	}
}

int main()
{
	solve();
	//cout << "yui(*-v・)yui" << endl;
	return 0;
}
0