結果

問題 No.812 Change of Class
ユーザー kotatsugamekotatsugame
提出日時 2019-10-12 19:41:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 173 ms / 4,000 ms
コード長 673 bytes
コンパイル時間 703 ms
コンパイル使用メモリ 79,500 KB
実行使用メモリ 10,320 KB
最終ジャッジ日時 2024-06-12 21:23:51
合計ジャッジ時間 6,257 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
9,224 KB
testcase_01 AC 15 ms
6,940 KB
testcase_02 AC 44 ms
8,064 KB
testcase_03 AC 87 ms
9,788 KB
testcase_04 AC 75 ms
9,436 KB
testcase_05 AC 173 ms
9,508 KB
testcase_06 AC 145 ms
8,928 KB
testcase_07 AC 5 ms
6,944 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 157 ms
9,832 KB
testcase_10 AC 154 ms
9,836 KB
testcase_11 AC 19 ms
7,640 KB
testcase_12 AC 110 ms
9,468 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 106 ms
8,652 KB
testcase_16 AC 10 ms
6,940 KB
testcase_17 AC 102 ms
8,720 KB
testcase_18 AC 78 ms
8,060 KB
testcase_19 AC 91 ms
8,420 KB
testcase_20 AC 166 ms
9,708 KB
testcase_21 AC 81 ms
8,064 KB
testcase_22 AC 37 ms
7,296 KB
testcase_23 AC 9 ms
6,940 KB
testcase_24 AC 12 ms
6,944 KB
testcase_25 AC 30 ms
7,168 KB
testcase_26 AC 135 ms
9,200 KB
testcase_27 AC 123 ms
8,900 KB
testcase_28 AC 87 ms
8,408 KB
testcase_29 AC 23 ms
6,940 KB
testcase_30 AC 108 ms
8,804 KB
testcase_31 AC 92 ms
8,348 KB
testcase_32 AC 45 ms
7,552 KB
testcase_33 AC 115 ms
9,056 KB
testcase_34 AC 11 ms
6,940 KB
testcase_35 AC 24 ms
7,128 KB
testcase_36 AC 10 ms
6,944 KB
testcase_37 AC 51 ms
7,680 KB
testcase_38 AC 8 ms
6,944 KB
testcase_39 AC 53 ms
7,560 KB
testcase_40 AC 16 ms
6,944 KB
testcase_41 AC 8 ms
6,948 KB
testcase_42 AC 107 ms
8,860 KB
testcase_43 AC 32 ms
8,140 KB
testcase_44 AC 73 ms
8,164 KB
testcase_45 AC 11 ms
6,944 KB
testcase_46 AC 31 ms
7,964 KB
testcase_47 AC 72 ms
8,212 KB
testcase_48 AC 84 ms
8,464 KB
testcase_49 AC 24 ms
7,060 KB
testcase_50 AC 4 ms
6,944 KB
testcase_51 AC 28 ms
7,240 KB
testcase_52 AC 53 ms
8,156 KB
testcase_53 AC 17 ms
6,940 KB
testcase_54 AC 14 ms
6,944 KB
testcase_55 AC 56 ms
9,148 KB
testcase_56 AC 66 ms
9,624 KB
testcase_57 AC 69 ms
9,980 KB
testcase_58 AC 37 ms
8,064 KB
testcase_59 AC 78 ms
10,320 KB
testcase_60 AC 4 ms
6,940 KB
testcase_61 AC 3 ms
6,944 KB
testcase_62 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    8 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<queue>
using namespace std;
int N,M;
vector<int>G[1<<17];
main()
{
	cin>>N>>M;
	for(int i=0;i<M;i++)
	{
		int u,v;cin>>u>>v;
		u--,v--;
		G[u].push_back(v);
		G[v].push_back(u);
	}
	int Q;cin>>Q;
	for(;Q--;)
	{
		int A;cin>>A;A--;
		vector<int>dis(N,1e9);
		dis[A]=0;
		queue<int>P;
		P.push(A);
		while(!P.empty())
		{
			int u=P.front();P.pop();
			for(int v:G[u])
			{
				if(dis[v]>dis[u]+1)
				{
					dis[v]=dis[u]+1;
					P.push(v);
				}
			}
		}
		int x=0,cnt=0;
		for(int i=0;i<N;i++)
		{
			if(dis[i]<1e9)x=max(x,dis[i]),cnt++;
		}
		int L=0;
		while(x>1<<L)L++;
		cout<<cnt-1<<" "<<L<<endl;
	}
}
0