結果

問題 No.1473 おでぶなおばけさん
ユーザー terry_u16terry_u16
提出日時 2021-04-09 22:34:15
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 1,408 bytes
コンパイル時間 949 ms
コンパイル使用メモリ 125,952 KB
実行使用メモリ 10,036 KB
最終ジャッジ日時 2024-06-25 06:11:42
合計ジャッジ時間 7,397 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 167 ms
9,412 KB
testcase_03 AC 123 ms
8,756 KB
testcase_04 AC 99 ms
6,720 KB
testcase_05 AC 41 ms
5,376 KB
testcase_06 AC 169 ms
8,932 KB
testcase_07 AC 157 ms
9,896 KB
testcase_08 AC 201 ms
10,032 KB
testcase_09 AC 143 ms
10,036 KB
testcase_10 AC 89 ms
5,376 KB
testcase_11 AC 90 ms
6,272 KB
testcase_12 AC 90 ms
5,632 KB
testcase_13 AC 52 ms
5,376 KB
testcase_14 AC 40 ms
5,376 KB
testcase_15 AC 75 ms
5,504 KB
testcase_16 AC 87 ms
5,376 KB
testcase_17 AC 8 ms
5,376 KB
testcase_18 AC 12 ms
5,376 KB
testcase_19 AC 78 ms
5,888 KB
testcase_20 AC 95 ms
7,916 KB
testcase_21 AC 121 ms
6,912 KB
testcase_22 AC 85 ms
8,364 KB
testcase_23 AC 70 ms
8,232 KB
testcase_24 AC 71 ms
7,716 KB
testcase_25 AC 203 ms
8,268 KB
testcase_26 AC 210 ms
8,436 KB
testcase_27 AC 63 ms
5,376 KB
testcase_28 AC 176 ms
9,804 KB
testcase_29 AC 122 ms
7,168 KB
testcase_30 AC 154 ms
7,808 KB
testcase_31 AC 121 ms
9,416 KB
testcase_32 AC 131 ms
8,856 KB
testcase_33 AC 99 ms
7,672 KB
testcase_34 AC 55 ms
5,888 KB
testcase_35 AC 57 ms
5,632 KB
testcase_36 AC 106 ms
6,400 KB
testcase_37 AC 125 ms
7,860 KB
testcase_38 AC 23 ms
5,376 KB
testcase_39 AC 88 ms
5,376 KB
testcase_40 AC 87 ms
5,376 KB
testcase_41 AC 76 ms
5,376 KB
testcase_42 AC 78 ms
5,376 KB
testcase_43 AC 96 ms
7,144 KB
testcase_44 AC 97 ms
7,012 KB
testcase_45 AC 96 ms
7,144 KB
testcase_46 AC 107 ms
7,552 KB
testcase_47 AC 132 ms
8,516 KB
testcase_48 AC 123 ms
8,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <queue>

const int INF = 1000111000;

int bfs(const std::vector<std::vector<std::pair<int, int>>> &graph, int from, int to, int weight)
{
    std::vector<int> distances(graph.size(), INF);
    std::queue<int> queue;

    distances[from] = 0;
    queue.push(from);

    while (!queue.empty())
    {
        int v = queue.front();
        queue.pop();

        for (auto &p : graph[v])
        {
            if (p.second >= weight && distances[p.first] == INF)
            {
                distances[p.first] = distances[v] + 1;
                queue.push(p.first);
            }
        }
    }

    return distances[to];
}

int main()
{
    int n, m;
    std::cin >> n >> m;
    std::vector<std::vector<std::pair<int, int>>> graph(n, std::vector<std::pair<int, int>>());

    for (size_t i = 0; i < m; i++)
    {
        int s, t, d;
        std::cin >> s >> t >> d;
        s--;
        t--;
        graph[s].push_back(std::make_pair(t, d));
        graph[t].push_back(std::make_pair(s, d));
    }

    int ok = 1;
    int ng = 1000000001;

    while (std::abs(ok - ng) > 1)
    {
        int mid = (ok + ng) / 2;
        int dist = bfs(graph, 0, n - 1, mid);

        if (dist < INF)
        {
            ok = mid;
        }
        else
        {
            ng = mid;
        }
    }

    std::cout << ok << ' ' << bfs(graph, 0, n - 1, ok) << std::endl;
}
0