結果

問題 No.1607 Kth Maximum Card
ユーザー milanis48663220milanis48663220
提出日時 2021-07-16 22:31:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,434 ms / 3,500 ms
コード長 2,285 bytes
コンパイル時間 1,156 ms
コンパイル使用メモリ 132,312 KB
実行使用メモリ 36,548 KB
最終ジャッジ日時 2024-07-06 09:59:16
合計ジャッジ時間 19,579 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2,434 ms
36,548 KB
testcase_09 AC 118 ms
29,696 KB
testcase_10 AC 149 ms
35,584 KB
testcase_11 AC 32 ms
10,880 KB
testcase_12 AC 116 ms
28,416 KB
testcase_13 AC 175 ms
8,444 KB
testcase_14 AC 223 ms
10,148 KB
testcase_15 AC 1,405 ms
29,984 KB
testcase_16 AC 21 ms
8,704 KB
testcase_17 AC 53 ms
5,376 KB
testcase_18 AC 719 ms
21,988 KB
testcase_19 AC 375 ms
14,980 KB
testcase_20 AC 554 ms
17,672 KB
testcase_21 AC 619 ms
19,252 KB
testcase_22 AC 1,833 ms
35,136 KB
testcase_23 AC 1,913 ms
35,200 KB
testcase_24 AC 420 ms
13,868 KB
testcase_25 AC 256 ms
9,984 KB
testcase_26 AC 296 ms
11,340 KB
testcase_27 AC 467 ms
14,364 KB
testcase_28 AC 383 ms
12,552 KB
testcase_29 AC 94 ms
22,656 KB
testcase_30 AC 2,312 ms
35,880 KB
testcase_31 AC 910 ms
21,192 KB
testcase_32 AC 311 ms
22,152 KB
testcase_33 AC 298 ms
22,292 KB
testcase_34 AC 314 ms
22,144 KB
testcase_35 AC 298 ms
22,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <tuple>
#include <cmath>
#include <numeric>
#include <functional>
#include <cassert>

#define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl;
#define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

using namespace std;
typedef long long ll;

const ll INF = 1e+15;

typedef pair<ll, int> P;

struct edge{
    int to;
    ll cost;
};

vector<ll> dijkstra(int s, vector<vector<edge>> G){
    priority_queue<P, vector<P>, greater<P>> que;
    int n = G.size();
    vector<ll> d(n, INF);
    d[s] = 0;
    que.push(P(0, s));
    while(!que.empty()){
        P p = que.top();que.pop();
        int v = p.second;
        if(d[v] < p.first) continue;
        for(int i = 0; i < G[v].size(); i++){
            edge e = G[v][i];
            if(d[v] + e.cost < d[e.to]){
                d[e.to] = d[v] + e.cost;
                que.push(P(d[e.to], e.to));
            }
        }
    }
    return d;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    int n, m, k; cin >> n >> m >> k;
    vector<int> u(m), v(m), c(m);
    for(int i = 0; i < m; i++){
        cin >> u[i] >> v[i] >> c[i];
        u[i]--, v[i]--;
    }
    auto judge = [&](int x){
        vector<vector<edge>> g(n);
        for(int i = 0; i < m; i++){
            if(c[i] <= x) {
                g[u[i]].push_back(edge{v[i], 0});
                g[v[i]].push_back(edge{u[i], 0});
            }
            else {
                g[u[i]].push_back(edge{v[i], 1});
                g[v[i]].push_back(edge{u[i], 1});
            }
        }
        auto d = dijkstra(0, g);
        // cout << x << ' ' << d[n-1] << endl;
        return d[n-1] <= k-1;
    };
    if(judge(0)) {
        cout << 0 << endl;
        return 0;
    }
    int l = 0, r = 300000;
    while(r-l > 1){
        int x = (l+r)/2;
        if(judge(x)) r = x;
        else l = x;
    }
    cout << r << endl;
}
0