結果

問題 No.1607 Kth Maximum Card
ユーザー 👑 tute7627tute7627
提出日時 2021-04-09 18:35:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,180 ms / 3,500 ms
コード長 895 bytes
コンパイル時間 2,288 ms
コンパイル使用メモリ 213,184 KB
実行使用メモリ 16,136 KB
最終ジャッジ日時 2024-07-06 07:47:59
合計ジャッジ時間 14,629 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1,180 ms
16,136 KB
testcase_09 AC 886 ms
13,884 KB
testcase_10 AC 1,163 ms
16,136 KB
testcase_11 AC 172 ms
6,940 KB
testcase_12 AC 864 ms
13,352 KB
testcase_13 AC 68 ms
6,944 KB
testcase_14 AC 80 ms
6,940 KB
testcase_15 AC 401 ms
12,540 KB
testcase_16 AC 69 ms
6,944 KB
testcase_17 AC 27 ms
6,940 KB
testcase_18 AC 250 ms
9,344 KB
testcase_19 AC 157 ms
6,948 KB
testcase_20 AC 258 ms
7,936 KB
testcase_21 AC 249 ms
8,548 KB
testcase_22 AC 532 ms
14,980 KB
testcase_23 AC 521 ms
14,984 KB
testcase_24 AC 156 ms
6,944 KB
testcase_25 AC 94 ms
6,944 KB
testcase_26 AC 108 ms
6,940 KB
testcase_27 AC 169 ms
7,160 KB
testcase_28 AC 131 ms
6,940 KB
testcase_29 AC 339 ms
10,116 KB
testcase_30 AC 1,119 ms
14,504 KB
testcase_31 AC 509 ms
9,480 KB
testcase_32 AC 161 ms
8,704 KB
testcase_33 AC 162 ms
8,832 KB
testcase_34 AC 163 ms
8,832 KB
testcase_35 AC 163 ms
8,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

struct edge{
  int to;
  int c;
};

int main(){
  int n, m, k;
  cin >> n >> m >> k;
  
  vector<vector<edge>>g(n);
  for(int i = 0; i < m; i++){
    int u, v, c;
    cin >> u >> v >> c;
    u--, v--;
    g[u].push_back({v, c});
    g[v].push_back({u, c});
  }

  using pi = pair<int, int>;
  int ok = 300000, ng = -1;
  while(ok - ng >= 2){
    int mid = (ok + ng) / 2;
    priority_queue<pi, vector<pi>, greater<pi>>que;
    vector<int>dist(n, 1e9);
    dist[0] = 0;
    que.emplace(0, 0);
    while(!que.empty()){
      auto [d, v] = que.top();
      que.pop();
      if(dist[v] != d)continue;
      for(auto e:g[v]){
        int nd = d + (e.c > mid);
        if(dist[e.to] > nd){
          dist[e.to] = nd;
          que.emplace(nd, e.to);
        }
      }
    }

    if(dist[n - 1] < k)ok = mid;
    else ng = mid;
  }

  cout << ok << endl;
}
0