結果

問題 No.812 Change of Class
ユーザー chocopuuchocopuu
提出日時 2019-04-13 20:05:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 137 ms / 4,000 ms
コード長 1,687 bytes
コンパイル時間 1,510 ms
コンパイル使用メモリ 175,560 KB
実行使用メモリ 12,220 KB
最終ジャッジ日時 2024-06-12 20:34:55
合計ジャッジ時間 5,921 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
10,016 KB
testcase_01 AC 10 ms
7,236 KB
testcase_02 AC 25 ms
8,320 KB
testcase_03 AC 50 ms
10,800 KB
testcase_04 AC 43 ms
10,272 KB
testcase_05 AC 137 ms
11,420 KB
testcase_06 AC 110 ms
11,292 KB
testcase_07 AC 5 ms
6,940 KB
testcase_08 AC 5 ms
6,940 KB
testcase_09 AC 125 ms
11,392 KB
testcase_10 AC 125 ms
11,400 KB
testcase_11 AC 10 ms
7,548 KB
testcase_12 AC 76 ms
10,508 KB
testcase_13 AC 4 ms
6,940 KB
testcase_14 AC 5 ms
6,944 KB
testcase_15 AC 86 ms
9,728 KB
testcase_16 AC 10 ms
6,944 KB
testcase_17 AC 80 ms
9,864 KB
testcase_18 AC 61 ms
8,896 KB
testcase_19 AC 68 ms
9,448 KB
testcase_20 AC 130 ms
11,404 KB
testcase_21 AC 58 ms
8,788 KB
testcase_22 AC 29 ms
7,596 KB
testcase_23 AC 9 ms
6,940 KB
testcase_24 AC 12 ms
7,012 KB
testcase_25 AC 24 ms
7,228 KB
testcase_26 AC 108 ms
10,600 KB
testcase_27 AC 95 ms
9,940 KB
testcase_28 AC 66 ms
9,428 KB
testcase_29 AC 19 ms
7,316 KB
testcase_30 AC 84 ms
9,908 KB
testcase_31 AC 72 ms
9,312 KB
testcase_32 AC 36 ms
7,884 KB
testcase_33 AC 85 ms
10,368 KB
testcase_34 AC 10 ms
6,940 KB
testcase_35 AC 20 ms
7,368 KB
testcase_36 AC 10 ms
6,944 KB
testcase_37 AC 41 ms
8,120 KB
testcase_38 AC 7 ms
6,960 KB
testcase_39 AC 44 ms
7,992 KB
testcase_40 AC 15 ms
7,068 KB
testcase_41 AC 5 ms
6,944 KB
testcase_42 AC 87 ms
9,556 KB
testcase_43 AC 18 ms
8,204 KB
testcase_44 AC 59 ms
8,820 KB
testcase_45 AC 10 ms
6,944 KB
testcase_46 AC 17 ms
8,248 KB
testcase_47 AC 60 ms
8,840 KB
testcase_48 AC 65 ms
9,216 KB
testcase_49 AC 21 ms
7,492 KB
testcase_50 AC 5 ms
6,940 KB
testcase_51 AC 19 ms
7,424 KB
testcase_52 AC 35 ms
8,624 KB
testcase_53 AC 15 ms
7,080 KB
testcase_54 AC 13 ms
7,036 KB
testcase_55 AC 32 ms
10,500 KB
testcase_56 AC 37 ms
11,228 KB
testcase_57 AC 56 ms
11,404 KB
testcase_58 AC 23 ms
9,076 KB
testcase_59 AC 62 ms
12,220 KB
testcase_60 AC 5 ms
6,940 KB
testcase_61 AC 5 ms
6,944 KB
testcase_62 AC 4 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
#define pb push_back
#define fi first
#define se second
#define rep(i,s,n) for(int i = s;i<n;i++)
#define rrep(i,s,n) for(int i = (n)-1;i>=(s);i--)
#define all(v) (v).begin(),(v).end()
#define chmin(a,b) a=min((a),(b))
#define chmax(a,b) a=max((a),(b))
#define endl '\n'
#define IOS() ios_base::sync_with_stdio(0);cin.tie(0)
typedef long long ll;
typedef pair<int,int>pint;
typedef vector<int>vint;
typedef vector<pint>vpint;
const ll MOD=1000000007,INF=1e18;

int V,E,Q;
vint g[100010];

signed main() {
    IOS();
    cin>>V>>E;
    vint p(E),q(E);
    rep(i,0,E){
        cin>>p[i]>>q[i];
        p[i]--;q[i]--;
        g[p[i]].pb(q[i]);
        g[q[i]].pb(p[i]);
    }
    
    cin>>Q;
    vint a(Q);
    rep(i,0,Q){
        cin>>a[i];
        a[i]--;
        queue<int>que;
        vint dist(100010,INF);
        dist[a[i]]=0;
        que.push(a[i]);
        int ma=0,ans=0;
        while(!que.empty()){
            int now=que.front();
            que.pop();
            ans++;
            for(auto e:g[now]){
                if(dist[e]!=INF)continue;
                dist[e]=dist[now]+1;
                chmax(ma,dist[e]);
                que.push(e);
            }
        }
        int tmp=1,cnt=0;
        while(tmp<ma){tmp<<=1;cnt++;}
        cout<<ans-1<<" "<<cnt<<endl;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    return 0;
}
0