結果

問題 No.1473 おでぶなおばけさん
ユーザー firiexpfiriexp
提出日時 2021-04-28 09:12:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 2,179 bytes
コンパイル時間 1,307 ms
コンパイル使用メモリ 118,296 KB
実行使用メモリ 10,836 KB
最終ジャッジ日時 2024-07-07 04:09:20
合計ジャッジ時間 6,428 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 56 ms
10,192 KB
testcase_03 AC 42 ms
8,784 KB
testcase_04 AC 31 ms
7,372 KB
testcase_05 AC 12 ms
6,940 KB
testcase_06 AC 49 ms
8,784 KB
testcase_07 AC 55 ms
10,836 KB
testcase_08 AC 57 ms
10,748 KB
testcase_09 AC 58 ms
10,832 KB
testcase_10 AC 34 ms
6,940 KB
testcase_11 AC 34 ms
6,940 KB
testcase_12 AC 33 ms
6,944 KB
testcase_13 AC 22 ms
6,944 KB
testcase_14 AC 16 ms
6,940 KB
testcase_15 AC 30 ms
6,944 KB
testcase_16 AC 32 ms
6,940 KB
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 5 ms
6,940 KB
testcase_19 AC 28 ms
6,944 KB
testcase_20 AC 36 ms
8,272 KB
testcase_21 AC 38 ms
6,944 KB
testcase_22 AC 42 ms
9,172 KB
testcase_23 AC 37 ms
9,036 KB
testcase_24 AC 34 ms
8,144 KB
testcase_25 AC 45 ms
8,784 KB
testcase_26 AC 46 ms
8,784 KB
testcase_27 AC 19 ms
6,940 KB
testcase_28 AC 51 ms
10,708 KB
testcase_29 AC 32 ms
6,940 KB
testcase_30 AC 37 ms
7,248 KB
testcase_31 AC 48 ms
10,572 KB
testcase_32 AC 38 ms
8,912 KB
testcase_33 AC 34 ms
8,012 KB
testcase_34 AC 19 ms
6,940 KB
testcase_35 AC 20 ms
6,944 KB
testcase_36 AC 33 ms
6,944 KB
testcase_37 AC 35 ms
8,528 KB
testcase_38 AC 9 ms
6,944 KB
testcase_39 AC 33 ms
6,944 KB
testcase_40 AC 33 ms
6,944 KB
testcase_41 AC 31 ms
6,944 KB
testcase_42 AC 32 ms
6,944 KB
testcase_43 AC 35 ms
8,140 KB
testcase_44 AC 36 ms
8,020 KB
testcase_45 AC 36 ms
8,020 KB
testcase_46 AC 40 ms
8,012 KB
testcase_47 AC 50 ms
8,912 KB
testcase_48 AC 45 ms
8,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <numeric>
#include <bitset>
#include <cmath>

static const int MOD = 1000000007;
using ll = long long;
using u32 = unsigned;
using u64 = unsigned long long;
using namespace std;

template<class T> constexpr T INF = ::numeric_limits<T>::max() / 32 * 15 + 208;

template <typename T>
struct edge {
    int from, to;
    T cost;

    edge(int to, T cost) : from(-1), to(to), cost(cost) {}
    edge(int from, int to, T cost) : from(from), to(to), cost(cost) {}

    explicit operator int() const {return to;}
};

class UnionFind {
    vector<int> uni;
    int n;
public:
    explicit UnionFind(int n) : uni(static_cast<u32>(n), -1) , n(n){};

    int root(int a){
        if (uni[a] < 0) return a;
        else return (uni[a] = root(uni[a]));
    }

    bool unite(int a, int b) {
        a = root(a);
        b = root(b);
        if(a == b) return false;
        if(uni[a] > uni[b]) swap(a, b);
        uni[a] += uni[b];
        uni[b] = a;
        return true;
    }
};

int main() {
    int n, m;
    cin >> n >> m;
    vector<edge<int>> E;
    for (int i = 0; i < m; ++i) {
        int s, t, d;
        scanf("%d %d %d", &s, &t, &d);
        E.emplace_back(s-1, t-1, d);
    }
    sort(E.begin(),E.end(), [&](edge<int> &a, edge<int> &b){ return a.cost > b.cost; });
    UnionFind uf(n);
    int mx = INF<int>;
    for (int i = 0; i < m; ++i) {
        if(uf.root(0) == uf.root(n-1)) break;
        else {
            uf.unite(E[i].from, E[i].to);
            mx = E[i].cost;
        }
    }
    vector<vector<int>> G(n);
    for (int i = 0; i < m; ++i) {
        if(E[i].cost >= mx){
            G[E[i].from].emplace_back(E[i].to);
            G[E[i].to].emplace_back(E[i].from);
        }
    }
    vector<int> dist(n, INF<int>);
    queue<int> Q;
    dist[0] = 0;
    Q.emplace(0);
    while(!Q.empty()){
        int x = Q.front(); Q.pop();
        for (auto &&y : G[x]) {
            if(dist[y] == INF<int>) {
                dist[y] = dist[x]+1;
                Q.emplace(y);
            }
        }
    }
    printf("%d %d\n", mx, dist.back());
    return 0;
}
0