結果

問題 No.1607 Kth Maximum Card
ユーザー kmjpkmjp
提出日時 2021-07-16 22:17:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 687 ms / 3,500 ms
コード長 1,478 bytes
コンパイル時間 2,246 ms
コンパイル使用メモリ 209,800 KB
実行使用メモリ 16,372 KB
最終ジャッジ日時 2024-07-06 09:39:28
合計ジャッジ時間 8,753 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,184 KB
testcase_01 AC 3 ms
8,148 KB
testcase_02 AC 4 ms
8,132 KB
testcase_03 AC 3 ms
8,296 KB
testcase_04 AC 4 ms
8,152 KB
testcase_05 AC 4 ms
8,092 KB
testcase_06 AC 3 ms
8,256 KB
testcase_07 AC 4 ms
8,292 KB
testcase_08 AC 426 ms
16,280 KB
testcase_09 AC 269 ms
14,772 KB
testcase_10 AC 404 ms
16,372 KB
testcase_11 AC 51 ms
10,180 KB
testcase_12 AC 237 ms
14,568 KB
testcase_13 AC 41 ms
9,344 KB
testcase_14 AC 49 ms
9,652 KB
testcase_15 AC 241 ms
14,412 KB
testcase_16 AC 42 ms
9,420 KB
testcase_17 AC 16 ms
8,648 KB
testcase_18 AC 152 ms
12,616 KB
testcase_19 AC 91 ms
10,808 KB
testcase_20 AC 132 ms
11,548 KB
testcase_21 AC 144 ms
12,024 KB
testcase_22 AC 332 ms
15,300 KB
testcase_23 AC 384 ms
15,300 KB
testcase_24 AC 108 ms
10,464 KB
testcase_25 AC 68 ms
9,508 KB
testcase_26 AC 77 ms
9,792 KB
testcase_27 AC 114 ms
10,556 KB
testcase_28 AC 92 ms
10,040 KB
testcase_29 AC 193 ms
12,320 KB
testcase_30 AC 687 ms
15,032 KB
testcase_31 AC 186 ms
11,992 KB
testcase_32 AC 91 ms
13,764 KB
testcase_33 AC 91 ms
13,464 KB
testcase_34 AC 88 ms
13,632 KB
testcase_35 AC 89 ms
13,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------

int N,M,K;
vector<pair<int,int>> E[202020];
int dp[202020];
int can(int v) {
	int i;
	FOR(i,N) dp[i]=1<<20;
	dp[0]=0;
	deque<int> Q;
	Q.push_back(0);
	while(Q.size()) {
		int cur=Q.front();
		Q.pop_front();
		FORR2(e,c,E[cur]) {
			if(c<v) {
				if(dp[e]>dp[cur]) {
					dp[e]=dp[cur];
					Q.push_front(e);
				}
			}
			else {
				if(dp[e]>dp[cur]+1) {
					dp[e]=dp[cur]+1;
					Q.push_back(e);
				}
			}
		}
		
	}
	return dp[N-1];
}

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>M>>K;
	FOR(i,M) {
		cin>>x>>y>>k;
		E[x-1].push_back({y-1,k});
		E[y-1].push_back({x-1,k});
	}
	int mi=1<<20;
	for(i=19;i>=0;i--) if(can(mi-(1<<i))<K) mi-=1<<i;
	cout<<mi-1<<endl;
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0