結果

問題 No.1607 Kth Maximum Card
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-09-01 05:27:24
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 707 ms / 3,500 ms
コード長 1,006 bytes
コンパイル時間 5,473 ms
コンパイル使用メモリ 315,220 KB
実行使用メモリ 15,912 KB
最終ジャッジ日時 2024-06-11 02:21:34
合計ジャッジ時間 13,400 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 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,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 427 ms
15,912 KB
testcase_09 AC 312 ms
13,624 KB
testcase_10 AC 408 ms
15,912 KB
testcase_11 AC 70 ms
6,940 KB
testcase_12 AC 284 ms
13,220 KB
testcase_13 AC 51 ms
6,940 KB
testcase_14 AC 68 ms
6,940 KB
testcase_15 AC 284 ms
12,720 KB
testcase_16 AC 56 ms
6,940 KB
testcase_17 AC 18 ms
6,940 KB
testcase_18 AC 212 ms
9,488 KB
testcase_19 AC 129 ms
7,168 KB
testcase_20 AC 166 ms
8,192 KB
testcase_21 AC 176 ms
8,704 KB
testcase_22 AC 381 ms
15,080 KB
testcase_23 AC 390 ms
15,104 KB
testcase_24 AC 137 ms
7,168 KB
testcase_25 AC 81 ms
6,944 KB
testcase_26 AC 96 ms
6,944 KB
testcase_27 AC 135 ms
7,288 KB
testcase_28 AC 107 ms
6,940 KB
testcase_29 AC 222 ms
10,152 KB
testcase_30 AC 707 ms
14,716 KB
testcase_31 AC 222 ms
9,616 KB
testcase_32 AC 168 ms
8,960 KB
testcase_33 AC 168 ms
8,960 KB
testcase_34 AC 192 ms
8,960 KB
testcase_35 AC 168 ms
8,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint=modint998244353; //1000000007;
using ll=long long;
using pp=pair<int,int>;
#define sr string 
#define vc vector
#define fi first
#define se second
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main(){
  int n,m,k;cin>>n>>m>>k;
  vc v(n,vc<pp>(0));
  rep(i,m){
    int a,b,c;cin>>a>>b>>c;
    a--;b--;
    v[a].pb({b,c}); v[b].pb({a,c});
  }
  ll wa=-1,ac=1e6;
  while(ac-wa>1){
    int x=(ac+wa)/2;
    vc<int>d(n,k+1); d[0]=0;
    deque<int>q; q.push_back(0);
    while(q.size()){
      int a=q.front(); q.pop_front();
      for(auto [au,c]:v[a]){
        if(c>x)c=1;
        else c=0;
        if(d[au]<=d[a]+c)continue;
        d[au]=d[a]+c;
        if(c)q.push_back(au);
        else q.push_front(au);
      }
    }
    if(d[n-1]<k)ac=x;
    else wa=x;
  }
  cout<<ac;
}
        
0