結果

問題 No.812 Change of Class
ユーザー tekihei2317tekihei2317
提出日時 2019-04-12 23:11:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 196 ms / 4,000 ms
コード長 1,010 bytes
コンパイル時間 1,631 ms
コンパイル使用メモリ 174,804 KB
実行使用メモリ 10,640 KB
最終ジャッジ日時 2024-06-12 19:52:10
合計ジャッジ時間 7,989 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
8,880 KB
testcase_01 AC 15 ms
6,944 KB
testcase_02 AC 50 ms
7,488 KB
testcase_03 AC 108 ms
9,444 KB
testcase_04 AC 95 ms
8,964 KB
testcase_05 AC 186 ms
9,960 KB
testcase_06 AC 176 ms
9,576 KB
testcase_07 AC 6 ms
6,944 KB
testcase_08 AC 4 ms
6,944 KB
testcase_09 AC 189 ms
10,068 KB
testcase_10 AC 188 ms
10,068 KB
testcase_11 AC 18 ms
7,436 KB
testcase_12 AC 122 ms
9,520 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 126 ms
8,684 KB
testcase_16 AC 11 ms
6,940 KB
testcase_17 AC 119 ms
8,864 KB
testcase_18 AC 91 ms
8,072 KB
testcase_19 AC 102 ms
8,364 KB
testcase_20 AC 196 ms
9,984 KB
testcase_21 AC 85 ms
8,036 KB
testcase_22 AC 39 ms
6,940 KB
testcase_23 AC 9 ms
6,940 KB
testcase_24 AC 14 ms
6,944 KB
testcase_25 AC 31 ms
6,940 KB
testcase_26 AC 156 ms
9,300 KB
testcase_27 AC 139 ms
8,928 KB
testcase_28 AC 99 ms
8,348 KB
testcase_29 AC 25 ms
6,940 KB
testcase_30 AC 125 ms
8,812 KB
testcase_31 AC 108 ms
8,272 KB
testcase_32 AC 52 ms
7,012 KB
testcase_33 AC 131 ms
9,120 KB
testcase_34 AC 11 ms
6,944 KB
testcase_35 AC 28 ms
6,940 KB
testcase_36 AC 13 ms
6,940 KB
testcase_37 AC 63 ms
7,328 KB
testcase_38 AC 8 ms
6,940 KB
testcase_39 AC 66 ms
7,324 KB
testcase_40 AC 18 ms
6,940 KB
testcase_41 AC 7 ms
6,944 KB
testcase_42 AC 130 ms
8,560 KB
testcase_43 AC 32 ms
7,512 KB
testcase_44 AC 93 ms
7,820 KB
testcase_45 AC 13 ms
6,944 KB
testcase_46 AC 31 ms
7,588 KB
testcase_47 AC 90 ms
7,832 KB
testcase_48 AC 100 ms
8,228 KB
testcase_49 AC 27 ms
6,940 KB
testcase_50 AC 4 ms
6,940 KB
testcase_51 AC 30 ms
6,940 KB
testcase_52 AC 59 ms
7,840 KB
testcase_53 AC 20 ms
6,940 KB
testcase_54 AC 17 ms
6,944 KB
testcase_55 AC 69 ms
9,184 KB
testcase_56 AC 79 ms
9,772 KB
testcase_57 AC 85 ms
10,080 KB
testcase_58 AC 47 ms
7,924 KB
testcase_59 AC 104 ms
10,640 KB
testcase_60 AC 3 ms
6,944 KB
testcase_61 AC 3 ms
6,940 KB
testcase_62 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define REP(i,n) for(int i=0;i<(n);i++)
#define ALL(v) (v).begin(),(v).end()
#define SZ(x) ((int)(x).size())
#define int long long
using namespace std;
typedef vector<int>   vint;
typedef pair<int,int> pint;

const int size=100010;
const int INF=1e9;
vint G[size];
int N,M;

int calc(int dist)
{
    if(dist==1) return 0;
    return calc((dist+1)/2)+1;
}

void bfs(int s)
{
    vint dist(N);
    REP(i,N) dist[i]=INF;
    dist[s]=0;
    queue<int> Q;
    Q.push(s);

    while(!Q.empty()){
	int v=Q.front(); Q.pop();
	for(int u:G[v]){
	    if(dist[u]!=INF) continue;
	    dist[u]=dist[v]+1;
	    Q.push(u);
	}
    }

    int cnt=0,day=0;
    REP(i,N){
	if(dist[i]!=INF and dist[i]>0){
	    cnt++;
	    int d=calc(dist[i]);
	    day=max(day,d);
	}
    }
    cout<<cnt<<' '<<day<<endl;
}

signed main()
{
    cin>>N>>M;
    REP(i,M){
	int a,b; cin>>a>>b;
	a--; b--;
	G[a].push_back(b);
	G[b].push_back(a);
    }

    int Q; cin>>Q;
    while(Q--){
	int q; cin>>q; q--;
	bfs(q);
    }
}


0