結果

問題 No.1607 Kth Maximum Card
ユーザー tko919tko919
提出日時 2021-09-20 17:12:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,374 ms / 3,500 ms
コード長 1,337 bytes
コンパイル時間 2,253 ms
コンパイル使用メモリ 210,540 KB
実行使用メモリ 28,248 KB
最終ジャッジ日時 2024-07-02 15:05:52
合計ジャッジ時間 18,103 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1,374 ms
28,248 KB
testcase_09 AC 964 ms
23,356 KB
testcase_10 AC 1,285 ms
28,244 KB
testcase_11 AC 230 ms
9,088 KB
testcase_12 AC 929 ms
22,444 KB
testcase_13 AC 137 ms
6,636 KB
testcase_14 AC 166 ms
7,952 KB
testcase_15 AC 841 ms
21,328 KB
testcase_16 AC 123 ms
6,924 KB
testcase_17 AC 46 ms
5,376 KB
testcase_18 AC 451 ms
15,420 KB
testcase_19 AC 313 ms
10,916 KB
testcase_20 AC 419 ms
12,624 KB
testcase_21 AC 464 ms
13,608 KB
testcase_22 AC 980 ms
25,728 KB
testcase_23 AC 1,086 ms
25,856 KB
testcase_24 AC 280 ms
10,368 KB
testcase_25 AC 186 ms
7,940 KB
testcase_26 AC 253 ms
8,832 KB
testcase_27 AC 276 ms
10,768 KB
testcase_28 AC 229 ms
9,380 KB
testcase_29 AC 505 ms
16,640 KB
testcase_30 AC 1,118 ms
25,088 KB
testcase_31 AC 536 ms
15,236 KB
testcase_32 AC 239 ms
13,828 KB
testcase_33 AC 241 ms
13,952 KB
testcase_34 AC 272 ms
13,952 KB
testcase_35 AC 239 ms
13,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define rep(i,a,b) for(int i=(int)(a);i<(int)(b);i++)
#define ALL(v) (v).begin(),(v).end()
using ll=long long int;
const int inf = 0x3fffffff; const ll INF = 0x1fffffffffffffff; const double eps=1e-12;
template<typename T>inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;}
template<typename T>inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;}



int main(){
   int n,m,k;
   cin>>n>>m>>k;
   using P=pair<int,int>;
   vector g(n,vector<P>());
   rep(_,0,m){
      int x,y,c;
      cin>>x>>y>>c;
      x--; y--;
      g[x].push_back({y,c});
      g[y].push_back({x,c});
   }

   int L=0,R=201010;
   while(R-L>1){
      int mid=(L+R)>>1;
      vector h(n,vector<P>());
      rep(i,0,n)for(auto& [to,c]:g[i]){
         if(c<mid){
            h[i].push_back({to,0});
         }
         else{
            h[i].push_back({to,1});
         }
      }
      vector<int> dist(n,inf);
      dist[0]=0;
      priority_queue<P,vector<P>,greater<P>> pq;
      pq.push({0,0});
      while(!pq.empty()){
         auto [d,v]=pq.top();
         pq.pop();
         if(dist[v]!=d)continue;
         for(auto& [to,c]:h[v])if(chmin(dist[to],d+c)){
            pq.push({dist[to],to});
         }
      }
      if(dist[n-1]<=k-1)R=mid;
      else L=mid;
   }
   cout<<L<<'\n';
   return 0;
}
0