結果

問題 No.1473 おでぶなおばけさん
ユーザー hitonanodehitonanode
提出日時 2021-04-04 18:25:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,355 bytes
コンパイル時間 1,045 ms
コンパイル使用メモリ 91,024 KB
実行使用メモリ 9,956 KB
最終ジャッジ日時 2024-06-08 15:03:37
合計ジャッジ時間 5,515 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 82 ms
9,692 KB
testcase_03 AC 65 ms
8,756 KB
testcase_04 AC 48 ms
6,784 KB
testcase_05 AC 21 ms
5,376 KB
testcase_06 AC 92 ms
8,948 KB
testcase_07 AC 78 ms
9,936 KB
testcase_08 AC 93 ms
9,920 KB
testcase_09 AC 78 ms
9,936 KB
testcase_10 AC 40 ms
5,760 KB
testcase_11 AC 41 ms
6,664 KB
testcase_12 AC 41 ms
6,012 KB
testcase_13 AC 27 ms
5,376 KB
testcase_14 AC 19 ms
5,376 KB
testcase_15 AC 37 ms
5,872 KB
testcase_16 AC 39 ms
5,376 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 6 ms
5,376 KB
testcase_19 AC 50 ms
6,116 KB
testcase_20 AC 60 ms
8,240 KB
testcase_21 AC 84 ms
7,256 KB
testcase_22 AC 99 ms
8,812 KB
testcase_23 AC 82 ms
8,312 KB
testcase_24 AC 83 ms
8,016 KB
testcase_25 AC 101 ms
8,764 KB
testcase_26 AC 101 ms
8,732 KB
testcase_27 AC 29 ms
5,376 KB
testcase_28 AC 69 ms
9,956 KB
testcase_29 AC 56 ms
7,572 KB
testcase_30 AC 65 ms
8,012 KB
testcase_31 AC 63 ms
9,740 KB
testcase_32 AC 81 ms
9,156 KB
testcase_33 AC 50 ms
8,032 KB
testcase_34 AC 30 ms
5,760 KB
testcase_35 AC 31 ms
5,756 KB
testcase_36 AC 59 ms
6,712 KB
testcase_37 AC 80 ms
8,004 KB
testcase_38 AC 14 ms
5,376 KB
testcase_39 AC 41 ms
5,552 KB
testcase_40 AC 39 ms
5,544 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 44 ms
7,432 KB
testcase_44 AC 45 ms
7,564 KB
testcase_45 AC 45 ms
7,560 KB
testcase_46 AC 44 ms
7,688 KB
testcase_47 AC 54 ms
8,552 KB
testcase_48 AC 52 ms
7,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 二分探索解だが WA になってほしい
#include <algorithm>
#include <iostream>
#include <queue>
#include <vector>
using namespace std;

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

    int N, M;
    cin >> N >> M;
    vector<vector<pair<int, int>>> to(N);
    vector<int> ds;
    for (int e = 0; e < M; e++) {
        int s, t, d;
        cin >> s >> t >> d;
        s--, t--;
        to[s].emplace_back(t, d);
        to[t].emplace_back(s, d);
        ds.push_back(d);
    }

    sort(ds.begin(), ds.end());
    // ds.erase(unique(ds.begin(), ds.end()), ds.end());
    int ok = 0, ng = ds.size() - 1; // 間違える WAになってほしい

    auto solve = [&](int th) -> int {
        vector<int> dist(N, 1 << 30);
        dist[0] = 0;
        queue<int> q;
        q.push(0);
        while (!q.empty()) {
            int now = q.front();
            q.pop();
            for (auto [nxt, w] : to[now]) {
                if (w >= th and dist[nxt] > dist[now] + 1) {
                    dist[nxt] = dist[now] + 1;
                    q.push(nxt);
                }
            }
        }
        return dist.back();
    };

    while (ng - ok > 1) {
        const int c = (ok + ng) / 2;
        auto ret = solve(ds[c]);
        (ret == 1 << 30 ? ng : ok) = c;
    }
    cout << ds[ok] << ' ' << solve(ds[ok]) << '\n';
}
0