結果

問題 No.1473 おでぶなおばけさん
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2021-04-11 17:46:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 1,921 bytes
コンパイル時間 1,891 ms
コンパイル使用メモリ 182,232 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-06-27 12:30:05
合計ジャッジ時間 8,994 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 126 ms
10,496 KB
testcase_03 AC 108 ms
8,960 KB
testcase_04 AC 70 ms
7,552 KB
testcase_05 AC 25 ms
5,376 KB
testcase_06 AC 114 ms
9,088 KB
testcase_07 AC 129 ms
11,008 KB
testcase_08 AC 133 ms
11,136 KB
testcase_09 AC 131 ms
11,008 KB
testcase_10 AC 93 ms
5,376 KB
testcase_11 AC 92 ms
5,376 KB
testcase_12 AC 93 ms
5,376 KB
testcase_13 AC 58 ms
5,376 KB
testcase_14 AC 42 ms
5,376 KB
testcase_15 AC 79 ms
5,376 KB
testcase_16 AC 92 ms
5,376 KB
testcase_17 AC 8 ms
5,376 KB
testcase_18 AC 12 ms
5,376 KB
testcase_19 AC 67 ms
5,376 KB
testcase_20 AC 82 ms
8,320 KB
testcase_21 AC 96 ms
6,528 KB
testcase_22 AC 88 ms
9,344 KB
testcase_23 AC 75 ms
8,960 KB
testcase_24 AC 74 ms
8,320 KB
testcase_25 AC 111 ms
9,088 KB
testcase_26 AC 117 ms
8,960 KB
testcase_27 AC 48 ms
5,376 KB
testcase_28 AC 124 ms
10,880 KB
testcase_29 AC 93 ms
6,784 KB
testcase_30 AC 107 ms
7,424 KB
testcase_31 AC 107 ms
10,752 KB
testcase_32 AC 96 ms
8,960 KB
testcase_33 AC 80 ms
8,064 KB
testcase_34 AC 43 ms
5,888 KB
testcase_35 AC 50 ms
5,376 KB
testcase_36 AC 86 ms
6,784 KB
testcase_37 AC 85 ms
8,704 KB
testcase_38 AC 20 ms
5,376 KB
testcase_39 AC 93 ms
5,376 KB
testcase_40 AC 94 ms
5,376 KB
testcase_41 AC 81 ms
5,376 KB
testcase_42 AC 82 ms
5,376 KB
testcase_43 AC 94 ms
8,320 KB
testcase_44 AC 94 ms
8,320 KB
testcase_45 AC 94 ms
8,448 KB
testcase_46 AC 97 ms
8,192 KB
testcase_47 AC 118 ms
9,088 KB
testcase_48 AC 104 ms
8,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *   @FileName	a.cpp
 *   @Author	kanpurin
 *   @Created	2021.04.11 17:45:59
**/

#include "bits/stdc++.h" 
using namespace std; 
typedef long long ll;


class UnionFind {
private:
    vector<int> par;
public:
    UnionFind(int n) {
        par.resize(n, -1);
    }
    int root(int x) {
        if (par[x] < 0) return x;
        return par[x] = root(par[x]);
    }
    bool unite(int x, int y) {
        int rx = root(x);
        int ry = root(y);
        if (rx == ry) return false;
        if (size(rx) < size(ry)) swap(rx, ry);
        par[rx] += par[ry];
        par[ry] = rx;
        return true;
    }
    bool same(int x, int y) {
        int rx = root(x);
        int ry = root(y);
        return rx == ry;
    }
    int size(int x) {
        return -par[root(x)];
    }
};
int main() {
    int n;cin >> n;
    int m;cin >> m;
    vector<int> s(m),t(m),d(m),idx(m);
    iota(idx.begin(), idx.end(),0);
    for (int i = 0; i < m; i++) {
        cin >> s[i] >> t[i] >> d[i];
        s[i]--;
        t[i]--;
    }
    sort(idx.begin(), idx.end(), [&](int a,int b){
        return d[a] > d[b];
    });
    UnionFind uf(n);
    vector<vector<int>> g(n);
    for (int i = 0; i < m; i++) {
        int e = idx[i];
        while(i < m && d[e] == d[idx[i]]) {
            uf.unite(s[idx[i]],t[idx[i]]);
            g[s[idx[i]]].push_back(t[idx[i]]);
            g[t[idx[i]]].push_back(s[idx[i]]);
            i++;
        }
        i--;
        if (!uf.same(0,n-1)) continue;
        cout << d[e] << " ";
        queue<int> que;
        vector<int> dist(n,-1);
        que.push(0);
        dist[0] = 0;
        while(!que.empty()) {
            int q = que.front(); que.pop();
            for(int v : g[q]) {
                if (dist[v] != -1) continue;
                dist[v] = dist[q] + 1;
                que.push(v);
            }
        }
        cout << dist[n-1] << endl;
        break;
    }
    return 0;
}
0