結果

問題 No.1607 Kth Maximum Card
ユーザー SSRSSSRS
提出日時 2021-07-16 21:39:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 472 ms / 3,500 ms
コード長 964 bytes
コンパイル時間 1,668 ms
コンパイル使用メモリ 177,028 KB
実行使用メモリ 16,088 KB
最終ジャッジ日時 2024-07-06 08:38:49
合計ジャッジ時間 8,457 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 370 ms
15,940 KB
testcase_09 AC 295 ms
13,720 KB
testcase_10 AC 369 ms
16,088 KB
testcase_11 AC 73 ms
6,940 KB
testcase_12 AC 264 ms
13,444 KB
testcase_13 AC 53 ms
6,940 KB
testcase_14 AC 70 ms
6,944 KB
testcase_15 AC 304 ms
12,416 KB
testcase_16 AC 57 ms
6,940 KB
testcase_17 AC 18 ms
6,944 KB
testcase_18 AC 205 ms
9,344 KB
testcase_19 AC 126 ms
7,040 KB
testcase_20 AC 166 ms
7,936 KB
testcase_21 AC 184 ms
8,556 KB
testcase_22 AC 351 ms
14,980 KB
testcase_23 AC 369 ms
14,980 KB
testcase_24 AC 125 ms
7,168 KB
testcase_25 AC 77 ms
6,944 KB
testcase_26 AC 89 ms
6,944 KB
testcase_27 AC 132 ms
7,156 KB
testcase_28 AC 104 ms
6,940 KB
testcase_29 AC 183 ms
10,120 KB
testcase_30 AC 472 ms
14,528 KB
testcase_31 AC 207 ms
9,476 KB
testcase_32 AC 186 ms
11,648 KB
testcase_33 AC 194 ms
11,676 KB
testcase_34 AC 189 ms
11,668 KB
testcase_35 AC 195 ms
11,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N, M, K;
  cin >> N >> M >> K;
  vector<vector<pair<int, int>>> E(N);
  for (int i = 0; i < M; i++){
    int u, v, c;
    cin >> u >> v >> c;
    u--;
    v--;
    E[u].push_back(make_pair(c, v));
    E[v].push_back(make_pair(c, u));
  }
  int tv = 200000, fv = -1;
  while (tv - fv > 1){
    int mid = (tv + fv) / 2;
    vector<int> d(N, -1);
    deque<pair<int, int>> dq;
    dq.push_back(make_pair(0, 0));
    while (!dq.empty()){
      int dd = dq.front().first;
      int v = dq.front().second;
      dq.pop_front();
      if (d[v] == -1){
        d[v] = dd;
        for (auto P : E[v]){
          int w = P.second;
          if (P.first > mid){
            dq.push_back(make_pair(dd + 1, w));
          } else {
            dq.push_front(make_pair(dd, w));
          }
        }
      }
    }
    if (d[N - 1] < K){
      tv = mid;
    } else {
      fv = mid;
    }
  }
  cout << tv << endl;
}
0