結果

問題 No.812 Change of Class
ユーザー BwambocosBwambocos
提出日時 2019-04-12 22:55:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 530 ms / 4,000 ms
コード長 1,396 bytes
コンパイル時間 1,924 ms
コンパイル使用メモリ 182,236 KB
実行使用メモリ 15,372 KB
最終ジャッジ日時 2024-06-12 19:49:45
合計ジャッジ時間 13,973 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
10,624 KB
testcase_01 AC 19 ms
6,940 KB
testcase_02 AC 67 ms
7,296 KB
testcase_03 AC 149 ms
12,160 KB
testcase_04 AC 131 ms
11,008 KB
testcase_05 AC 530 ms
13,516 KB
testcase_06 AC 418 ms
12,592 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 460 ms
13,488 KB
testcase_10 AC 483 ms
13,480 KB
testcase_11 AC 17 ms
7,424 KB
testcase_12 AC 288 ms
12,032 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 408 ms
10,032 KB
testcase_16 AC 20 ms
6,944 KB
testcase_17 AC 293 ms
10,568 KB
testcase_18 AC 216 ms
8,448 KB
testcase_19 AC 242 ms
9,496 KB
testcase_20 AC 498 ms
13,248 KB
testcase_21 AC 208 ms
8,320 KB
testcase_22 AC 88 ms
6,940 KB
testcase_23 AC 16 ms
6,944 KB
testcase_24 AC 24 ms
6,944 KB
testcase_25 AC 70 ms
6,940 KB
testcase_26 AC 394 ms
11,696 KB
testcase_27 AC 356 ms
10,684 KB
testcase_28 AC 234 ms
9,452 KB
testcase_29 AC 55 ms
6,944 KB
testcase_30 AC 308 ms
10,364 KB
testcase_31 AC 263 ms
9,228 KB
testcase_32 AC 111 ms
6,944 KB
testcase_33 AC 311 ms
11,220 KB
testcase_34 AC 21 ms
6,940 KB
testcase_35 AC 56 ms
6,944 KB
testcase_36 AC 26 ms
6,940 KB
testcase_37 AC 161 ms
6,944 KB
testcase_38 AC 8 ms
6,940 KB
testcase_39 AC 167 ms
6,944 KB
testcase_40 AC 37 ms
6,944 KB
testcase_41 AC 6 ms
6,940 KB
testcase_42 AC 346 ms
9,600 KB
testcase_43 AC 40 ms
7,424 KB
testcase_44 AC 237 ms
7,808 KB
testcase_45 AC 29 ms
6,944 KB
testcase_46 AC 35 ms
7,424 KB
testcase_47 AC 239 ms
7,808 KB
testcase_48 AC 232 ms
8,704 KB
testcase_49 AC 73 ms
6,944 KB
testcase_50 AC 6 ms
6,940 KB
testcase_51 AC 60 ms
6,944 KB
testcase_52 AC 110 ms
7,936 KB
testcase_53 AC 45 ms
6,944 KB
testcase_54 AC 44 ms
6,944 KB
testcase_55 AC 292 ms
11,268 KB
testcase_56 AC 355 ms
13,656 KB
testcase_57 AC 379 ms
14,192 KB
testcase_58 AC 190 ms
9,032 KB
testcase_59 AC 412 ms
15,372 KB
testcase_60 AC 2 ms
6,940 KB
testcase_61 AC 2 ms
6,940 KB
testcase_62 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
#define in std::cin
#define out std::cout
#define rep(i,N) for(LL i=0;i<N;++i)
typedef long long int LL;
typedef std::pair<LL, LL> P;
struct edge { LL to, cost; };

const LL inf = 1123456789;
std::vector<LL>dist;
std::vector<std::vector<edge>>G;

void dijkstra(LL s)
{
	std::priority_queue<P, std::vector<P>, std::greater<P>>que;
	std::fill(dist.begin(), dist.end(), inf);
	dist[s] = 0;
	que.push(P(0, s));
	while (!que.empty())
	{
		P p = que.top(); que.pop();
		LL v = p.second;
		if (dist[v] < p.first) continue;
		rep(i, G[v].size())
		{
			edge e = G[v][i];
			if (dist[e.to] > dist[v] + e.cost)
			{
				dist[e.to] = dist[v] + e.cost;
				que.push(P(dist[e.to], e.to));
			}
		}
	}
}

int main()
{
	LL N, M, Q;
	in >> N >> M;
	std::vector<LL>p(M), q(M);
	rep(i, M) in >> p[i] >> q[i];
	in >> Q;
	std::vector<LL>A(Q);
	rep(i, Q) in >> A[i];

	G.resize(N + 1);
	rep(i, M)
	{
		G[p[i]].push_back({ q[i],1 });
		G[q[i]].push_back({ p[i],1 });
	}
	rep(i, Q)
	{
		dist.clear();
		dist.resize(N + 1);
		dijkstra(A[i]);

		LL ans1 = 0, ans2 = 0;
		for (LL j = 1; j <= N; ++j)
		{
			if (A[i] == j) continue;
			if (dist[j] < inf)
			{
				++ans1;
				if (dist[j] > 1)
				{
					LL temp = dist[j] - 1, res = 0;
					while (temp > 0)
					{
						temp /= 2;
						++res;
					}
					ans2 = std::max(ans2, res);
				}
			}
		}
		out << ans1 << " " << ans2 << std::endl;
	}
}
0