結果

問題 No.1473 おでぶなおばけさん
ユーザー hitonanodehitonanode
提出日時 2021-04-04 15:01:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 1,145 bytes
コンパイル時間 1,361 ms
コンパイル使用メモリ 102,188 KB
実行使用メモリ 10,732 KB
最終ジャッジ日時 2024-06-08 15:26:16
合計ジャッジ時間 5,342 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 66 ms
9,956 KB
testcase_03 AC 51 ms
8,676 KB
testcase_04 AC 36 ms
7,148 KB
testcase_05 AC 13 ms
5,376 KB
testcase_06 AC 55 ms
8,552 KB
testcase_07 AC 64 ms
10,696 KB
testcase_08 AC 67 ms
10,732 KB
testcase_09 AC 67 ms
10,600 KB
testcase_10 AC 39 ms
5,376 KB
testcase_11 AC 39 ms
5,376 KB
testcase_12 AC 40 ms
5,376 KB
testcase_13 AC 26 ms
5,376 KB
testcase_14 AC 19 ms
5,376 KB
testcase_15 AC 35 ms
5,376 KB
testcase_16 AC 38 ms
5,376 KB
testcase_17 AC 4 ms
5,376 KB
testcase_18 AC 6 ms
5,376 KB
testcase_19 AC 33 ms
5,376 KB
testcase_20 AC 44 ms
8,040 KB
testcase_21 AC 47 ms
6,376 KB
testcase_22 AC 54 ms
8,936 KB
testcase_23 AC 47 ms
8,680 KB
testcase_24 AC 45 ms
8,036 KB
testcase_25 AC 60 ms
8,680 KB
testcase_26 AC 64 ms
8,552 KB
testcase_27 AC 25 ms
5,376 KB
testcase_28 AC 68 ms
10,476 KB
testcase_29 AC 45 ms
6,632 KB
testcase_30 AC 53 ms
7,012 KB
testcase_31 AC 53 ms
10,344 KB
testcase_32 AC 46 ms
8,680 KB
testcase_33 AC 39 ms
7,656 KB
testcase_34 AC 21 ms
5,864 KB
testcase_35 AC 22 ms
5,376 KB
testcase_36 AC 45 ms
6,632 KB
testcase_37 AC 48 ms
8,164 KB
testcase_38 AC 11 ms
5,376 KB
testcase_39 AC 39 ms
5,376 KB
testcase_40 AC 38 ms
5,376 KB
testcase_41 AC 36 ms
5,376 KB
testcase_42 AC 37 ms
5,376 KB
testcase_43 AC 42 ms
7,912 KB
testcase_44 AC 42 ms
7,784 KB
testcase_45 AC 41 ms
7,912 KB
testcase_46 AC 49 ms
7,784 KB
testcase_47 AC 59 ms
8,676 KB
testcase_48 AC 51 ms
8,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <queue>
#include <tuple>
#include <vector>
using namespace std;

#include <atcoder/dsu>

int main() {
    cin.tie(nullptr), ios::sync_with_stdio(false);

    int N, M;
    cin >> N >> M;
    vector<tuple<int, int, int>> edges;
    for (int e = 0; e < M; e++) {
        int s, t, d;
        cin >> s >> t >> d;
        edges.emplace_back(d, s - 1, t - 1);
    }

    sort(edges.rbegin(), edges.rend());

    atcoder::dsu uf(N);
    int ret = 1 << 30;
    for (auto [d, s, t] : edges) {
        if (!uf.same(0, N - 1)) ret = min(ret, d);
        uf.merge(s, t);
    }

    vector<vector<int>> to(N);
    for (auto [w, s, t] : edges) {
        if (w >= ret) to[s].push_back(t), to[t].push_back(s);
    }

    vector<int> dist(N, 1 << 30);
    dist[0] = 0;

    queue<int> q;
    q.push(0);
    while (!q.empty()) {
        const int now = q.front();
        q.pop();
        for (auto nxt : to[now]) {
            if (dist[nxt] > dist[now] + 1) {
                dist[nxt] = dist[now] + 1;
                q.push(nxt);
            }
        }
    }
    cout << ret << ' ' << dist.back() << '\n';
}
0