結果

問題 No.1639 最小通信路
ユーザー rieaaddlreiuurieaaddlreiuu
提出日時 2024-05-28 19:20:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,938 bytes
コンパイル時間 1,759 ms
コンパイル使用メモリ 176,400 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-28 19:20:35
合計ジャッジ時間 4,719 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 6 ms
6,940 KB
testcase_03 AC 13 ms
6,940 KB
testcase_04 AC 13 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 RE -
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 RE -
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 4 ms
6,944 KB
testcase_17 RE -
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 3 ms
6,940 KB
testcase_20 AC 5 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 3 ms
6,940 KB
testcase_23 AC 3 ms
6,944 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 RE -
testcase_30 AC 8 ms
6,944 KB
testcase_31 AC 3 ms
6,944 KB
testcase_32 AC 6 ms
6,940 KB
testcase_33 RE -
testcase_34 AC 6 ms
6,940 KB
testcase_35 RE -
testcase_36 AC 6 ms
6,944 KB
testcase_37 AC 6 ms
6,940 KB
testcase_38 RE -
testcase_39 AC 3 ms
6,940 KB
testcase_40 AC 2 ms
6,944 KB
testcase_41 RE -
testcase_42 AC 8 ms
6,948 KB
testcase_43 AC 3 ms
6,940 KB
testcase_44 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <regex>
#include <algorithm>
using namespace std;
//printf , scanfが使えるよ!!
/*
[問題メモ]


*/

struct UnionFind {
    vector<int> par, rank, siz;

    // 構造体の初期化
    UnionFind(int n) : par(n,-1), rank(n,0), siz(n,1) { }

    // 根を求める
    int root(int x) {
        if (par[x]==-1) return x; // x が根の場合は x を返す
        else return par[x] = root(par[x]); // 経路圧縮
    }

    // x と y が同じグループに属するか (= 根が一致するか)
    bool issame(int x, int y) {
        return root(x)==root(y);
    }

    // x を含むグループと y を含むグループを併合する
    bool unite(int x, int y) {
        int rx = root(x), ry = root(y); // x 側と y 側の根を取得する
        if (rx==ry) return false; // すでに同じグループのときは何もしない
        // union by rank
        if (rank[rx]<rank[ry]) swap(rx, ry); // ry 側の rank が小さくなるようにする
        par[ry] = rx; // ry を rx の子とする
        if (rank[rx]==rank[ry]) rank[rx]++; // rx 側の rank を調整する
        siz[rx] += siz[ry]; // rx 側の siz を調整する
        return true;
    }

    // x を含む根付き木のサイズを求める
    int size(int x) {
        return siz[root(x)];
    }
};

int main() {
    //Let's algorithm!!
    int N,M;
    cin >> N;
    M = N*(N-1)/2;
    int u,v;
    string w;
    UnionFind union_find(N);
    vector<vector<int>> edges(M);
    vector<string> weight;
    for(int i=0;i<M;i++){
        cin >> u >> v >> w;
        edges[i].push_back(v);
        edges[i].push_back(u);
        weight.push_back(w);
    }
    string min;
    for(int i=0;i<M;i++){
        if(!union_find.issame(edges[i][0],edges[i][1])){
            union_find.unite(edges[i][0],edges[i][1]);
            min = weight[i];
        }
    }
    cout << min << endl;
    return 0;
}
0