結果

問題 No.1607 Kth Maximum Card
ユーザー trineutrontrineutron
提出日時 2021-07-16 22:39:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 388 ms / 3,500 ms
コード長 1,446 bytes
コンパイル時間 2,122 ms
コンパイル使用メモリ 213,352 KB
実行使用メモリ 16,072 KB
最終ジャッジ日時 2024-07-06 10:09:41
合計ジャッジ時間 8,408 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 277 ms
15,784 KB
testcase_09 AC 231 ms
13,712 KB
testcase_10 AC 302 ms
16,072 KB
testcase_11 AC 63 ms
6,940 KB
testcase_12 AC 215 ms
13,152 KB
testcase_13 AC 51 ms
6,940 KB
testcase_14 AC 62 ms
6,940 KB
testcase_15 AC 267 ms
12,412 KB
testcase_16 AC 56 ms
6,944 KB
testcase_17 AC 19 ms
6,940 KB
testcase_18 AC 195 ms
9,344 KB
testcase_19 AC 122 ms
7,168 KB
testcase_20 AC 162 ms
7,936 KB
testcase_21 AC 188 ms
8,548 KB
testcase_22 AC 355 ms
14,980 KB
testcase_23 AC 341 ms
15,108 KB
testcase_24 AC 117 ms
7,168 KB
testcase_25 AC 73 ms
6,940 KB
testcase_26 AC 92 ms
6,944 KB
testcase_27 AC 133 ms
7,160 KB
testcase_28 AC 107 ms
6,944 KB
testcase_29 AC 193 ms
10,124 KB
testcase_30 AC 388 ms
14,536 KB
testcase_31 AC 183 ms
9,472 KB
testcase_32 AC 144 ms
9,216 KB
testcase_33 AC 145 ms
9,216 KB
testcase_34 AC 164 ms
10,028 KB
testcase_35 AC 167 ms
10,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using graph = vector<vector<pair<int, int>>>;

int main()
{
    int n, m, k;
    cin >> n >> m >> k;
    graph to(n);
    for (int i = 0; i < m; i++)
    {
        int u, v, c;
        cin >> u >> v >> c;
        u--;
        v--;
        to.at(u).emplace_back(v, c);
        to.at(v).emplace_back(u, c);
    }
    auto far = [&](int threshold)
    {
        vector<int> d(n, k);
        deque<pair<int, int>> q;
        q.emplace_front(0, 0);
        while (not q.empty())
        {
            auto [v, d0] = q.front();
            q.pop_front();
            if (d.at(v) <= d0)
            {
                continue;
            }
            d.at(v) = d0;
            for (auto &&[next, cost] : to.at(v))
            {
                int c = cost >= threshold;
                if (d.at(next) <= d0 + c)
                {
                    continue;
                }
                if (c)
                {
                    q.emplace_back(next, d0 + c);
                }
                else
                {
                    q.emplace_front(next, d0);
                }
            }
        }
        return d.at(n - 1) >= k;
    };
    int l = 0, r = 200001;
    while (r - l > 1)
    {
        int mid = (l + r) / 2;
        if (far(mid))
        {
            l = mid;
        }
        else
        {
            r = mid;
        }
    }
    cout << l << endl;
    return 0;
}
0