結果

問題 No.812 Change of Class
ユーザー kmjpkmjp
提出日時 2019-04-13 00:44:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 114 ms / 4,000 ms
コード長 1,200 bytes
コンパイル時間 1,668 ms
コンパイル使用メモリ 173,844 KB
実行使用メモリ 9,644 KB
最終ジャッジ日時 2024-06-12 20:04:02
合計ジャッジ時間 5,525 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
8,688 KB
testcase_01 AC 7 ms
6,940 KB
testcase_02 AC 21 ms
7,296 KB
testcase_03 AC 43 ms
9,088 KB
testcase_04 AC 37 ms
8,576 KB
testcase_05 AC 114 ms
8,832 KB
testcase_06 AC 97 ms
8,320 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 101 ms
8,832 KB
testcase_10 AC 104 ms
8,960 KB
testcase_11 AC 8 ms
6,940 KB
testcase_12 AC 64 ms
8,684 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 73 ms
7,808 KB
testcase_16 AC 7 ms
6,944 KB
testcase_17 AC 66 ms
7,936 KB
testcase_18 AC 50 ms
7,488 KB
testcase_19 AC 59 ms
7,808 KB
testcase_20 AC 107 ms
8,904 KB
testcase_21 AC 50 ms
7,296 KB
testcase_22 AC 23 ms
6,940 KB
testcase_23 AC 6 ms
6,944 KB
testcase_24 AC 9 ms
6,944 KB
testcase_25 AC 19 ms
6,944 KB
testcase_26 AC 93 ms
8,520 KB
testcase_27 AC 79 ms
8,192 KB
testcase_28 AC 55 ms
7,680 KB
testcase_29 AC 14 ms
6,940 KB
testcase_30 AC 71 ms
8,064 KB
testcase_31 AC 62 ms
7,680 KB
testcase_32 AC 29 ms
6,940 KB
testcase_33 AC 74 ms
8,180 KB
testcase_34 AC 7 ms
6,944 KB
testcase_35 AC 15 ms
6,940 KB
testcase_36 AC 7 ms
6,944 KB
testcase_37 AC 36 ms
6,940 KB
testcase_38 AC 4 ms
6,944 KB
testcase_39 AC 37 ms
6,940 KB
testcase_40 AC 10 ms
6,944 KB
testcase_41 AC 4 ms
6,944 KB
testcase_42 AC 75 ms
8,008 KB
testcase_43 AC 15 ms
7,368 KB
testcase_44 AC 53 ms
7,424 KB
testcase_45 AC 7 ms
6,940 KB
testcase_46 AC 13 ms
7,168 KB
testcase_47 AC 51 ms
7,456 KB
testcase_48 AC 55 ms
7,808 KB
testcase_49 AC 16 ms
6,940 KB
testcase_50 AC 3 ms
6,940 KB
testcase_51 AC 17 ms
6,940 KB
testcase_52 AC 31 ms
7,424 KB
testcase_53 AC 12 ms
6,944 KB
testcase_54 AC 10 ms
6,944 KB
testcase_55 AC 28 ms
8,472 KB
testcase_56 AC 33 ms
8,880 KB
testcase_57 AC 34 ms
9,132 KB
testcase_58 AC 19 ms
7,552 KB
testcase_59 AC 39 ms
9,644 KB
testcase_60 AC 3 ms
6,940 KB
testcase_61 AC 2 ms
6,944 KB
testcase_62 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

int N,M,Q;
vector<int> E[101010];
int D[101010];

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>M;
	FOR(i,M) {
		cin>>x>>y;
		E[x].push_back(y);
		E[y].push_back(x);
	}
	cin>>Q;
	FOR(i,Q) {
		cin>>x;
		FOR(j,N) D[j+1]=1<<20;
		int num=0,ma=0;
		D[x]=0;
		queue<int> QQ;
		QQ.push(x);
		while(QQ.size()) {
			y=QQ.front();
			QQ.pop();
			num++;
			ma=max(ma,D[y]);
			FORR(e,E[y]) if(D[e]>D[y]+1) {
				D[e]=D[y]+1;
				QQ.push(e);
			}
		}
		int ret=0;
		while(1<<ret<ma) ret++;
		cout<<num-1<<" "<<ret<<endl;
	}
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0