結果

問題 No.1607 Kth Maximum Card
ユーザー 👑 NachiaNachia
提出日時 2021-07-16 22:25:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,199 bytes
コンパイル時間 816 ms
コンパイル使用メモリ 84,928 KB
実行使用メモリ 16,652 KB
最終ジャッジ日時 2024-07-06 09:51:31
合計ジャッジ時間 6,092 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 WA -
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 WA -
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 331 ms
16,588 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 38 ms
6,944 KB
testcase_14 AC 45 ms
6,944 KB
testcase_15 AC 209 ms
12,944 KB
testcase_16 WA -
testcase_17 AC 13 ms
6,944 KB
testcase_18 AC 134 ms
9,600 KB
testcase_19 AC 84 ms
7,324 KB
testcase_20 AC 115 ms
8,196 KB
testcase_21 AC 126 ms
8,832 KB
testcase_22 AC 305 ms
15,772 KB
testcase_23 AC 342 ms
15,652 KB
testcase_24 AC 96 ms
7,296 KB
testcase_25 AC 59 ms
6,940 KB
testcase_26 AC 69 ms
6,944 KB
testcase_27 AC 97 ms
7,436 KB
testcase_28 AC 77 ms
6,940 KB
testcase_29 WA -
testcase_30 AC 384 ms
15,304 KB
testcase_31 AC 153 ms
9,756 KB
testcase_32 AC 70 ms
8,832 KB
testcase_33 AC 71 ms
8,832 KB
testcase_34 AC 72 ms
8,704 KB
testcase_35 AC 69 ms
8,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// Nachia くんだよ

#include <iostream>
#include <vector>
#include <deque>
using namespace std;
using ll = long long;
using ull = unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

struct Edge{ int v,c; };

int N,M,K;
vector<vector<Edge>> E;

bool solve(int v){
  vector<int> D(N,1001001);
  vector<int> F(N,0);
  D[0] = 0;
  deque<int> I;
  I.push_back(0);
  while(I.size()){
    int p = I.back(); I.pop_back();
    if(F[p]) continue;
    F[p] = 1;
    for(auto e : E[p]){
      if(e.c <= v){
        if(D[e.v] <= D[p]) continue;
        D[e.v] = D[p];
        I.push_back(e.v);
      }
      else{
        if(D[e.v] <= D[p] + 1) continue;
        D[e.v] = D[p] + 1;
        I.push_front(e.v);
      }
    }
  }
  return D[N-1] < K;
}

int main() {
  cin >> N >> M >> K;
  E.resize(N);
  rep(i,M){
    int u,v,c; cin >> u >> v >> c; u--; v--;
    E[u].push_back({v,c});
    E[v].push_back({u,c});
  }
  
  int l=0, r=200001;
  while(r-l > 1){
    int m = (l+r) / 2;
    if(solve(m)) r = m;
    else l = m;
  }
  cout << r << "\n";
  return 0;
}


struct ios_do_not_sync{
  ios_do_not_sync(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
  }
} ios_do_not_sync_instance;


0