結果

問題 No.1607 Kth Maximum Card
ユーザー hir355hir355
提出日時 2021-07-16 22:51:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,690 ms / 3,500 ms
コード長 2,787 bytes
コンパイル時間 2,527 ms
コンパイル使用メモリ 218,236 KB
実行使用メモリ 24,236 KB
最終ジャッジ日時 2024-07-06 10:23:32
合計ジャッジ時間 30,631 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2,690 ms
22,896 KB
testcase_09 AC 1,716 ms
19,348 KB
testcase_10 AC 2,349 ms
22,888 KB
testcase_11 AC 290 ms
7,860 KB
testcase_12 AC 1,599 ms
18,600 KB
testcase_13 AC 164 ms
6,392 KB
testcase_14 AC 205 ms
7,628 KB
testcase_15 AC 1,664 ms
20,124 KB
testcase_16 AC 167 ms
7,092 KB
testcase_17 AC 52 ms
5,376 KB
testcase_18 AC 781 ms
15,188 KB
testcase_19 AC 381 ms
10,768 KB
testcase_20 AC 602 ms
12,584 KB
testcase_21 AC 702 ms
13,852 KB
testcase_22 AC 2,614 ms
24,224 KB
testcase_23 AC 2,681 ms
24,236 KB
testcase_24 AC 403 ms
10,008 KB
testcase_25 AC 219 ms
7,528 KB
testcase_26 AC 269 ms
8,368 KB
testcase_27 AC 396 ms
10,040 KB
testcase_28 AC 287 ms
8,988 KB
testcase_29 AC 1,106 ms
15,612 KB
testcase_30 AC 2,664 ms
23,580 KB
testcase_31 AC 864 ms
14,420 KB
testcase_32 AC 277 ms
16,128 KB
testcase_33 AC 287 ms
16,232 KB
testcase_34 AC 283 ms
16,088 KB
testcase_35 AC 289 ms
16,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/modint>
#include <bits/stdc++.h>

using namespace std;
using namespace atcoder;

constexpr long long INF_LL = 2000000000000000000LL;
constexpr int INF = 2000000000;
constexpr long long MOD = 1000000007;

#define all(x) x.begin(), x.end()
#define REP(i, a, b) for(int i = a; i < b; i++)
#define rep(i, n) REP(i, 0, n)

typedef long long ll;
typedef pair<ll, ll> P;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef vector<P> vp;
typedef vector<ll> vl;

int dx[4] = {0, -1, 0, 1};
int dy[4] = {1, 0, -1, 0};
int sign[2] = {1, -1};

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

ll modpow(ll a, ll b, ll m) {
    if(b == 0)
        return 1;
    ll t = modpow(a, b / 2, m);
    if(b & 1) {
        return (t * t % m) * a % m;
    } else {
        return t * t % m;
    }
}

struct edge {
    int to;
    ll cost;
    edge(int t, ll c) { to = t, cost = c; }
};

typedef vector<vector<edge>> graph;

using mint = modint998244353;

vector<ll> dijkstra(vector<vector<edge>> &g, int start, int n) {
    priority_queue<P, vector<P>, greater<P>> que;
    vector<ll> dist(n, INF_LL);
    dist[start] = 0;
    que.push(P(0, start));
    while(!que.empty()) {
        P p = que.top();
        que.pop();
        int v = p.second;
        if(dist[v] < p.first)
            continue;
        rep(i, (int)g[v].size()) {
            edge e = g[v][i];
            if(dist[e.to] > dist[v] + e.cost) {
                dist[e.to] = dist[v] + e.cost;
                que.push(P(dist[e.to], e.to));
            }
        }
    }
    return dist;
}

int main(){
    cin.tie(0);
    std::ios_base::sync_with_stdio(false);
    std::cout << std::fixed << std::setprecision(16);

    int n, m, k;
    cin >> n >> m >> k;
    vector<pair<pair<int, int>, int>> e(m);
    rep(i, m){
        cin >> e[i].first.first >> e[i].first.second >> e[i].second;
    }
    sort(all(e), [](auto &x, auto &y){return x.second < y.second;});
    int l = -1, r = 200001;
    while(r - l > 1){
        int md = (l + r) / 2;
        int idx = 0;
        graph g(n);
        while(idx < m and e[idx].second <= md){
            g[e[idx].first.first - 1].push_back({e[idx].first.second - 1, 0});
            g[e[idx].first.second - 1].push_back({e[idx].first.first - 1, 0});
            idx++;
        }
        REP(i, idx, m){
            g[e[i].first.first - 1].push_back({e[i].first.second - 1, 1});
            g[e[i].first.second - 1].push_back({e[i].first.first - 1, 1});
        }
        if((dijkstra(g, 0, n))[n - 1] <= k - 1){
            r = md;
        }else{
            l = md;
        }
    }
    cout << r << endl;
}
0