結果

問題 No.812 Change of Class
ユーザー face4face4
提出日時 2019-04-13 09:56:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 240 ms / 4,000 ms
コード長 1,637 bytes
コンパイル時間 1,150 ms
コンパイル使用メモリ 87,680 KB
実行使用メモリ 10,508 KB
最終ジャッジ日時 2024-06-12 20:25:06
合計ジャッジ時間 7,635 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
8,448 KB
testcase_01 AC 14 ms
6,940 KB
testcase_02 AC 49 ms
6,944 KB
testcase_03 AC 105 ms
9,472 KB
testcase_04 AC 91 ms
8,704 KB
testcase_05 AC 240 ms
8,960 KB
testcase_06 AC 235 ms
7,808 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 218 ms
9,728 KB
testcase_10 AC 219 ms
9,728 KB
testcase_11 AC 17 ms
7,424 KB
testcase_12 AC 133 ms
9,344 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 140 ms
7,552 KB
testcase_16 AC 9 ms
6,944 KB
testcase_17 AC 137 ms
7,936 KB
testcase_18 AC 100 ms
6,940 KB
testcase_19 AC 117 ms
7,188 KB
testcase_20 AC 225 ms
9,576 KB
testcase_21 AC 95 ms
6,944 KB
testcase_22 AC 41 ms
6,940 KB
testcase_23 AC 8 ms
6,944 KB
testcase_24 AC 12 ms
6,940 KB
testcase_25 AC 34 ms
6,940 KB
testcase_26 AC 184 ms
8,576 KB
testcase_27 AC 154 ms
7,936 KB
testcase_28 AC 109 ms
7,040 KB
testcase_29 AC 24 ms
6,944 KB
testcase_30 AC 138 ms
7,680 KB
testcase_31 AC 118 ms
7,040 KB
testcase_32 AC 51 ms
6,944 KB
testcase_33 AC 150 ms
8,192 KB
testcase_34 AC 11 ms
6,944 KB
testcase_35 AC 25 ms
6,940 KB
testcase_36 AC 10 ms
6,940 KB
testcase_37 AC 65 ms
6,944 KB
testcase_38 AC 6 ms
6,940 KB
testcase_39 AC 65 ms
6,940 KB
testcase_40 AC 16 ms
6,940 KB
testcase_41 AC 5 ms
6,940 KB
testcase_42 AC 136 ms
7,552 KB
testcase_43 AC 35 ms
6,944 KB
testcase_44 AC 94 ms
6,940 KB
testcase_45 AC 11 ms
6,944 KB
testcase_46 AC 33 ms
6,944 KB
testcase_47 AC 92 ms
6,944 KB
testcase_48 AC 103 ms
7,296 KB
testcase_49 AC 27 ms
6,940 KB
testcase_50 AC 3 ms
6,940 KB
testcase_51 AC 28 ms
6,944 KB
testcase_52 AC 59 ms
6,940 KB
testcase_53 AC 17 ms
6,944 KB
testcase_54 AC 16 ms
6,944 KB
testcase_55 AC 67 ms
8,492 KB
testcase_56 AC 77 ms
9,136 KB
testcase_57 AC 81 ms
9,836 KB
testcase_58 AC 43 ms
6,940 KB
testcase_59 AC 92 ms
10,508 KB
testcase_60 AC 2 ms
6,940 KB
testcase_61 AC 2 ms
6,944 KB
testcase_62 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:74:58: warning: 'day' may be used uninitialized [-Wmaybe-uninitialized]
   74 |         cout << uf.getSize(a)-1 << " " << (day > 0 ? ceil(log2(day+1)) : 0) << endl;
      |                                                      ~~~~^~~~~~~~~~~~~
main.cpp:64:13: note: 'day' was declared here
   64 |         int day;
      |             ^~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<queue>
#include<cmath>
using namespace std;

struct UF{
    vector<int> p, rank;
    int n;
    UF(int siz){
        n = siz;
        p.resize(n), rank.resize(n, 1);
        for(int i = 0; i < n; i++)  p[i] = i;
    }

    int parent(int x){
        if(p[x] != x)   p[x] = parent(p[x]);
        return p[x];
    }

    bool same(int x, int y){
        return parent(x) == parent(y);
    }

    void unite(int x, int y){
        x = parent(x), y = parent(y);
        if(x == y)  return;
        if(rank[x] < rank[y]){
            p[x] = y;
            rank[y] += rank[x];
        }else{
            p[y] = x;
            rank[x] += rank[y];
        }
    }

    int getSize(int x){
        return rank[parent(x)];
    }
};

int main(){
    int n, m;
    cin >> n >> m;
    vector<int> path[n];
    UF uf(n);
    while(m-- > 0){
        int p, q;
        cin >> p >> q;
        p--, q--;
        uf.unite(p, q);
        path[p].push_back(q);
        path[q].push_back(p);
    }
    int q;
    cin >> q;
    while(q-- > 0){
        int a;
        cin >> a;
        a--;
        vector<bool> visit(n, 0);
        queue<pair<int,int>> q;
        q.push({a, -1});
        int day;
        while(!q.empty()){
            pair<int,int> p = q.front();    q.pop();
            if(visit[p.first])  continue;
            visit[p.first] = true;
            day = p.second;
            for(int next : path[p.first]){
                if(!visit[next])    q.push({next, day+1});
            }
        }
        cout << uf.getSize(a)-1 << " " << (day > 0 ? ceil(log2(day+1)) : 0) << endl;
    }
    return 0;
}
0