結果

問題 No.1473 おでぶなおばけさん
ユーザー MisterMister
提出日時 2021-04-09 21:32:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,129 bytes
コンパイル時間 1,436 ms
コンパイル使用メモリ 103,880 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-06-25 04:19:09
合計ジャッジ時間 5,316 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 64 ms
10,752 KB
testcase_03 AC 49 ms
8,960 KB
testcase_04 AC 35 ms
7,680 KB
testcase_05 AC 13 ms
5,376 KB
testcase_06 AC 53 ms
8,960 KB
testcase_07 AC 71 ms
11,520 KB
testcase_08 AC 73 ms
11,648 KB
testcase_09 AC 69 ms
11,520 KB
testcase_10 AC 38 ms
5,376 KB
testcase_11 AC 38 ms
5,376 KB
testcase_12 AC 37 ms
5,376 KB
testcase_13 AC 25 ms
5,376 KB
testcase_14 AC 18 ms
5,376 KB
testcase_15 AC 33 ms
5,376 KB
testcase_16 AC 36 ms
5,376 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 6 ms
5,376 KB
testcase_19 AC 32 ms
5,376 KB
testcase_20 AC 42 ms
8,320 KB
testcase_21 AC 46 ms
6,784 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 57 ms
8,576 KB
testcase_27 WA -
testcase_28 AC 66 ms
11,136 KB
testcase_29 WA -
testcase_30 AC 50 ms
7,040 KB
testcase_31 AC 60 ms
11,392 KB
testcase_32 AC 44 ms
8,960 KB
testcase_33 AC 38 ms
8,064 KB
testcase_34 AC 22 ms
6,144 KB
testcase_35 AC 22 ms
5,376 KB
testcase_36 WA -
testcase_37 AC 48 ms
8,960 KB
testcase_38 WA -
testcase_39 AC 37 ms
5,376 KB
testcase_40 AC 37 ms
5,376 KB
testcase_41 AC 35 ms
5,376 KB
testcase_42 AC 34 ms
5,376 KB
testcase_43 AC 40 ms
8,148 KB
testcase_44 AC 41 ms
8,276 KB
testcase_45 AC 40 ms
8,148 KB
testcase_46 AC 50 ms
8,960 KB
testcase_47 AC 60 ms
9,984 KB
testcase_48 AC 53 ms
9,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#line 2 "/Users/tiramister/CompetitiveProgramming/Cpp/CppLibrary/Graph/bfs.hpp"

#line 2 "/Users/tiramister/CompetitiveProgramming/Cpp/CppLibrary/Graph/graph.hpp"

#include <vector>

template <class Cost = int>
struct Edge {
    int src, dst;
    Cost cost;

    Edge() = default;
    Edge(int src, int dst, Cost cost = 1)
        : src(src), dst(dst), cost(cost){};

    bool operator<(const Edge<Cost>& e) const { return cost < e.cost; }
    bool operator>(const Edge<Cost>& e) const { return cost > e.cost; }
};

template <class Cost = int>
struct Graph : public std::vector<std::vector<Edge<Cost>>> {
    using std::vector<std::vector<Edge<Cost>>>::vector;

    void span(bool direct, int src, int dst, Cost cost = 1) {
        (*this)[src].emplace_back(src, dst, cost);
        if (!direct) (*this)[dst].emplace_back(dst, src, cost);
    }
};
#line 4 "/Users/tiramister/CompetitiveProgramming/Cpp/CppLibrary/Graph/bfs.hpp"

#include <queue>

template <class Cost>
std::vector<Cost> bfs(const Graph<Cost>& graph, int s) {
    std::vector<Cost> dist(graph.size(), -1);
    dist[s] = 0;
    std::queue<int> que;
    que.push(s);

    while (!que.empty()) {
        auto v = que.front();
        que.pop();

        for (const auto& e : graph[v]) {
            if (dist[e.dst] != -1) continue;
            dist[e.dst] = dist[v] + e.cost;
            que.push(e.dst);
        }
    }

    return dist;
}
#line 2 "main.cpp"
#include <atcoder/dsu>
#include <iostream>
#include <algorithm>
#line 6 "main.cpp"
#include <tuple>

using namespace std;

void solve() {
    int n, m;
    cin >> n >> m;

    vector<tuple<int, int, int>> es(m);
    for (auto& [d, u, v] : es) {
        cin >> u >> v >> d;
        --u, --v;
    }

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

    atcoder::dsu dsu(n);
    Graph<> graph(n);

    for (auto [d, u, v] : es) {
        dsu.merge(u, v);
        graph.span(false, u, v);

        if (dsu.same(0, n - 1)) {
            cout << d << " " << bfs(graph, 0)[n - 1] << "\n";
            return;
        }
    }
}

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

    solve();

    return 0;
}
0