結果

問題 No.1607 Kth Maximum Card
ユーザー kwm_tkwm_t
提出日時 2021-07-17 12:16:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 465 ms / 3,500 ms
コード長 1,725 bytes
コンパイル時間 1,414 ms
コンパイル使用メモリ 176,144 KB
実行使用メモリ 16,224 KB
最終ジャッジ日時 2024-07-07 00:00:48
合計ジャッジ時間 8,437 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
8,236 KB
testcase_01 AC 3 ms
8,108 KB
testcase_02 AC 3 ms
8,016 KB
testcase_03 AC 3 ms
8,200 KB
testcase_04 AC 3 ms
7,992 KB
testcase_05 AC 3 ms
8,012 KB
testcase_06 AC 4 ms
8,144 KB
testcase_07 AC 4 ms
8,096 KB
testcase_08 AC 309 ms
16,100 KB
testcase_09 AC 206 ms
14,796 KB
testcase_10 AC 280 ms
16,224 KB
testcase_11 AC 51 ms
10,088 KB
testcase_12 AC 195 ms
14,392 KB
testcase_13 AC 40 ms
9,248 KB
testcase_14 AC 50 ms
9,628 KB
testcase_15 AC 227 ms
14,396 KB
testcase_16 AC 40 ms
9,396 KB
testcase_17 AC 16 ms
8,560 KB
testcase_18 AC 140 ms
12,444 KB
testcase_19 AC 88 ms
10,768 KB
testcase_20 AC 127 ms
11,540 KB
testcase_21 AC 137 ms
11,896 KB
testcase_22 AC 275 ms
15,256 KB
testcase_23 AC 279 ms
15,136 KB
testcase_24 AC 119 ms
10,264 KB
testcase_25 AC 75 ms
9,616 KB
testcase_26 AC 89 ms
9,884 KB
testcase_27 AC 127 ms
10,464 KB
testcase_28 AC 106 ms
9,964 KB
testcase_29 AC 197 ms
12,396 KB
testcase_30 AC 465 ms
14,924 KB
testcase_31 AC 202 ms
12,016 KB
testcase_32 AC 85 ms
13,596 KB
testcase_33 AC 82 ms
13,472 KB
testcase_34 AC 80 ms
13,448 KB
testcase_35 AC 81 ms
13,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
//#include "atcoder/all"
using namespace std;
//using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
//using mint = modint998244353;
//const int mod = 998244353;
const int INF = 1e9;
//const long long LINF = 1e18;
//const bool debug = false;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n-1); i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define endl "\n"
#define P pair<int,int>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }
struct Edge {
	int to, cost;
	Edge(int _to, int _cost) :to(_to), cost(_cost) {}
};
vector<Edge>g[200005];
bool f(int x, int n, int k) {
	deque<int> q;
	vector<int> d(n, INF);
	d[0] = 0;
	q.push_back(0);
	while (!q.empty()) {
		int v = q.front();
		q.pop_front();
		for (auto ng : g[v]) {
			int nv = ng.to;
			if (ng.cost <= x) {
				//0
				if (chmin(d[nv], d[v])) q.push_front(nv);
			}
			else {
				//1
				if (chmin(d[nv], d[v] + 1)) q.push_back(nv);
			}
		}
	}
	return d[n - 1] < k;
}
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n, m, k; cin >> n >> m >> k;
	rep(i, m) {
		int v, w, c; cin >> v >> w >> c;
		v--; w--;
		g[v].emplace_back(w, c);
		g[w].emplace_back(v, c);
	}
	int ng = -1;
	int ok = INF;
	while (1 < abs(ok - ng)) {
		int c = (ng + ok) / 2;
		if (f(c, n, k)) ok = c;
		else ng = c;
	}
	cout << ok << endl;
	return 0;
}
0