結果

問題 No.812 Change of Class
ユーザー hamuhei4869hamuhei4869
提出日時 2019-03-21 15:11:09
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,193 ms / 4,000 ms
コード長 1,787 bytes
コンパイル時間 2,407 ms
コンパイル使用メモリ 174,228 KB
実行使用メモリ 17,996 KB
最終ジャッジ日時 2024-06-12 06:46:36
合計ジャッジ時間 24,681 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 330 ms
14,412 KB
testcase_01 AC 48 ms
5,376 KB
testcase_02 AC 174 ms
9,292 KB
testcase_03 AC 385 ms
16,568 KB
testcase_04 AC 344 ms
14,848 KB
testcase_05 AC 1,110 ms
17,624 KB
testcase_06 AC 962 ms
16,916 KB
testcase_07 AC 9 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 1,193 ms
17,996 KB
testcase_10 AC 1,117 ms
17,996 KB
testcase_11 AC 106 ms
8,160 KB
testcase_12 AC 802 ms
15,404 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 566 ms
12,752 KB
testcase_16 AC 29 ms
5,376 KB
testcase_17 AC 632 ms
13,588 KB
testcase_18 AC 399 ms
10,828 KB
testcase_19 AC 481 ms
11,992 KB
testcase_20 AC 1,074 ms
17,592 KB
testcase_21 AC 369 ms
10,440 KB
testcase_22 AC 138 ms
6,716 KB
testcase_23 AC 24 ms
5,376 KB
testcase_24 AC 38 ms
5,376 KB
testcase_25 AC 107 ms
5,968 KB
testcase_26 AC 839 ms
15,364 KB
testcase_27 AC 651 ms
13,776 KB
testcase_28 AC 482 ms
12,080 KB
testcase_29 AC 78 ms
5,376 KB
testcase_30 AC 742 ms
13,268 KB
testcase_31 AC 497 ms
11,608 KB
testcase_32 AC 184 ms
7,596 KB
testcase_33 AC 737 ms
14,656 KB
testcase_34 AC 36 ms
5,376 KB
testcase_35 AC 96 ms
5,616 KB
testcase_36 AC 33 ms
5,376 KB
testcase_37 AC 226 ms
8,000 KB
testcase_38 AC 31 ms
5,568 KB
testcase_39 AC 221 ms
8,020 KB
testcase_40 AC 58 ms
5,376 KB
testcase_41 AC 21 ms
5,376 KB
testcase_42 AC 593 ms
12,400 KB
testcase_43 AC 229 ms
9,040 KB
testcase_44 AC 354 ms
9,804 KB
testcase_45 AC 33 ms
5,376 KB
testcase_46 AC 204 ms
8,780 KB
testcase_47 AC 355 ms
9,992 KB
testcase_48 AC 460 ms
11,216 KB
testcase_49 AC 86 ms
5,456 KB
testcase_50 AC 6 ms
5,376 KB
testcase_51 AC 115 ms
6,224 KB
testcase_52 AC 303 ms
9,944 KB
testcase_53 AC 56 ms
5,376 KB
testcase_54 AC 48 ms
5,376 KB
testcase_55 AC 303 ms
13,352 KB
testcase_56 AC 348 ms
15,200 KB
testcase_57 AC 367 ms
16,132 KB
testcase_58 AC 191 ms
9,996 KB
testcase_59 AC 420 ms
17,840 KB
testcase_60 AC 2 ms
5,376 KB
testcase_61 AC 2 ms
5,376 KB
testcase_62 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using LL = long long;
const LL LINF = 1e18;

class Edge{
public:
    int from,to;
    LL cost;
    Edge(int f, int t,LL c){
        from = f;
        to = t;
        cost = c;
    }
};



std::vector<LL> dijkstra(int s,int N,vector<Edge> E){
    std::vector<LL> ans(N,LINF);
    std::vector<std::vector<Edge>> Edges(N);
    for(auto e : E){
        Edges.at(e.from).push_back(e);
    }
    queue<pair<LL,int>> que;
    ans.at(s)= 0;
    que.push(make_pair(0,s));
    while(!que.empty()){
        pair<LL,int> p = que.front();que.pop();
        if(ans.at(p.second) < p.first)continue;
        for(int i = 0;i < Edges.at(p.second).size();i++){
                if(ans.at(Edges.at(p.second).at(i).to) != LINF)continue;
                if(ans.at(p.second) + Edges.at(p.second).at(i).cost < ans.at(Edges.at(p.second).at(i).to)){
                ans.at(Edges.at(p.second).at(i).to) = ans.at(p.second) + Edges.at(p.second).at(i).cost;
                que.push(make_pair(ans.at(Edges.at(p.second).at(i).to),Edges.at(p.second).at(i).to));
            }
        }
    }
    return ans;
}
int main(){
    int N,M;
    cin >> N >> M;
    vector<Edge> Edges;
    for(int i = 0;i < M;i++){
        int p,q;cin >> p >> q;
        p--,q--;
        Edges.push_back(Edge(p,q,1));
        Edges.push_back(Edge(q,p,1));
    }
    int Q;cin >> Q;
    for(int i = 0;i < Q;i++){
        int A;cin >> A;
        A--;
        vector<LL> dis = dijkstra(A, N, Edges);

        LL d = 0;
        LL cnt = 0;
        for(int j = 0;j < N;j++){
            if(dis.at(j) != LINF){
                d = max(d, dis.at(j));
                cnt++;
            }
        }
        int ans = 0;
        if(d != 0)ans = ceil(log2(d));
        cout<<cnt-1<<" "<<ans<<endl;
    }
}
0