結果

問題 No.1607 Kth Maximum Card
ユーザー 👑 potato167potato167
提出日時 2021-07-16 22:16:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 809 ms / 3,500 ms
コード長 2,460 bytes
コンパイル時間 1,975 ms
コンパイル使用メモリ 217,284 KB
実行使用メモリ 27,096 KB
最終ジャッジ日時 2024-07-06 09:37:47
合計ジャッジ時間 10,051 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 809 ms
26,748 KB
testcase_09 AC 567 ms
22,580 KB
testcase_10 AC 713 ms
27,096 KB
testcase_11 AC 132 ms
9,088 KB
testcase_12 AC 531 ms
21,792 KB
testcase_13 AC 59 ms
6,400 KB
testcase_14 AC 60 ms
7,552 KB
testcase_15 AC 331 ms
19,816 KB
testcase_16 AC 48 ms
6,528 KB
testcase_17 AC 21 ms
5,376 KB
testcase_18 AC 180 ms
13,952 KB
testcase_19 AC 115 ms
9,984 KB
testcase_20 AC 210 ms
11,520 KB
testcase_21 AC 197 ms
12,520 KB
testcase_22 AC 328 ms
25,944 KB
testcase_23 AC 332 ms
25,808 KB
testcase_24 AC 132 ms
10,540 KB
testcase_25 AC 78 ms
7,808 KB
testcase_26 AC 91 ms
8,576 KB
testcase_27 AC 126 ms
10,768 KB
testcase_28 AC 106 ms
9,344 KB
testcase_29 AC 283 ms
16,316 KB
testcase_30 AC 575 ms
24,860 KB
testcase_31 AC 277 ms
15,156 KB
testcase_32 AC 63 ms
11,392 KB
testcase_33 AC 62 ms
11,520 KB
testcase_34 AC 62 ms
11,392 KB
testcase_35 AC 62 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
#define _GLIBCXX_DEBUG
using namespace std;
using std::cout;
using std::cin;
using std::endl;
using ll=long long;
using ld=long double;
ll I=1167167167167167167;
ll Q=1e9+7;
#define rep(i,a) for (ll i=0;i<a;i++)
template<class T> using _pq = priority_queue<T, vector<T>, greater<T>>;
template<class T> ll LB(vector<T> &v,T a){return lower_bound(v.begin(),v.end(),a)-v.begin();}
template<class T> ll UB(vector<T> &v,T a){return upper_bound(v.begin(),v.end(),a)-v.begin();}
template<class T> bool chmin(T &a,const T &b){if(a>b){a=b;return 1;}else return 0;}
template<class T> bool chmax(T &a,const T &b){if(a<b){a=b;return 1;}else return 0;}
template<class T> void So(vector<T> &v) {sort(v.begin(),v.end());}
template<class T> void Sore(vector<T> &v) {sort(v.begin(),v.end(),[](T x,T y){return x>y;});}
template<class T> void print_tate(vector<T> &v) {rep(i,v.size()) cout<<v[i]<<"\n";}
void yneos(bool a){if(a) cout<<"Yes\n"; else cout<<"No\n";}

using len_type=int;
struct edge{
    int to;
    len_type length;
};

len_type dijkstra_movement(edge e,int from,len_type t){
    return t+e.length;
}

//距離INF=1167167167167167167
vector<len_type> dijkstra(vector<vector<edge>> &G,int start){
    int M=G.size();
    assert(M>start&&start>=0);
    vector<len_type> seen(M,100100100);
    seen[start]=0;
    priority_queue<pair<len_type,int>,vector<pair<len_type,int>>,greater<pair<len_type,int>>> pq;
    pq.push({0,start});
    while(!pq.empty()){
        len_type time;
        int ver;
        tie(time,ver)=pq.top();
        pq.pop();
        if(seen[ver]<time) continue;
        for(edge x:G[ver]){
            len_type T=dijkstra_movement(x,ver,time);
            if(T<seen[x.to]){
                pq.push({T,x.to});
                seen[x.to]=T;
            }
        }
    }
    return seen;
}


//おちこんだりもしたけれど、私はげんきです。
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	
	int N,M,K;
	cin>>N>>M>>K;
	vector<vector<edge>> G(N);
	vector<vector<int>> m(N);
	rep(i,M){
		int a,b,c;
		cin>>a>>b>>c;
		a--,b--;
		G[a].push_back({b,c});
		G[b].push_back({a,c});
		m[a].push_back(c);
		m[b].push_back(c);
	}
	int l=-1,r=200200;
	while(r-l>1){
		int D=(l+r)/2;
		rep(i,N){
			rep(j,G[i].size()){
				if(m[i][j]>D) G[i][j].length=1;
				else G[i][j].length=0;
			}
		}
		auto seen=dijkstra(G,0);
		if(seen[N-1]<K) r=D;
		else l=D;
	}
	cout<<r<<endl;
}
0