結果
問題 | No.1607 Kth Maximum Card |
ユーザー | milanis48663220 |
提出日時 | 2021-07-16 22:36:10 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2,943 ms / 3,500 ms |
コード長 | 2,359 bytes |
コンパイル時間 | 1,318 ms |
コンパイル使用メモリ | 130,928 KB |
実行使用メモリ | 36,372 KB |
最終ジャッジ日時 | 2024-07-06 10:06:02 |
合計ジャッジ時間 | 23,896 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 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 | 2,354 ms
36,372 KB |
testcase_09 | AC | 133 ms
29,364 KB |
testcase_10 | AC | 171 ms
35,328 KB |
testcase_11 | AC | 31 ms
10,752 KB |
testcase_12 | AC | 130 ms
28,288 KB |
testcase_13 | AC | 170 ms
8,192 KB |
testcase_14 | AC | 232 ms
9,984 KB |
testcase_15 | AC | 1,715 ms
29,976 KB |
testcase_16 | AC | 26 ms
8,832 KB |
testcase_17 | AC | 52 ms
5,376 KB |
testcase_18 | AC | 890 ms
21,984 KB |
testcase_19 | AC | 478 ms
14,860 KB |
testcase_20 | AC | 628 ms
17,672 KB |
testcase_21 | AC | 731 ms
19,252 KB |
testcase_22 | AC | 2,636 ms
35,200 KB |
testcase_23 | AC | 2,831 ms
35,120 KB |
testcase_24 | AC | 624 ms
13,696 KB |
testcase_25 | AC | 307 ms
9,908 KB |
testcase_26 | AC | 365 ms
11,264 KB |
testcase_27 | AC | 529 ms
14,080 KB |
testcase_28 | AC | 392 ms
12,160 KB |
testcase_29 | AC | 106 ms
22,656 KB |
testcase_30 | AC | 2,943 ms
35,892 KB |
testcase_31 | AC | 1,086 ms
20,784 KB |
testcase_32 | AC | 348 ms
22,120 KB |
testcase_33 | AC | 342 ms
21,920 KB |
testcase_34 | AC | 351 ms
22,136 KB |
testcase_35 | AC | 349 ms
22,076 KB |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <set> #include <map> #include <tuple> #include <cmath> #include <numeric> #include <functional> #include <cassert> #include <deque> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; const ll INF = 1e+15; typedef pair<ll, int> P; struct edge{ int to; ll cost; }; vector<ll> dijkstra(int s, vector<vector<edge>> G){ deque<P> que; int n = G.size(); vector<ll> d(n, INF); d[s] = 0; que.push_back(P(0, s)); while(!que.empty()){ P p = que.front();que.pop_front(); int v = p.second; if(d[v] < p.first) continue; for(int i = 0; i < G[v].size(); i++){ edge e = G[v][i]; if(d[v] + e.cost < d[e.to]){ d[e.to] = d[v] + e.cost; if(e.cost == 0) que.push_front(P(d[e.to], e.to)); else que.push_back(P(d[e.to], e.to)); } } } return d; } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int n, m, k; cin >> n >> m >> k; vector<int> u(m), v(m), c(m); for(int i = 0; i < m; i++){ cin >> u[i] >> v[i] >> c[i]; u[i]--, v[i]--; } auto judge = [&](int x){ vector<vector<edge>> g(n); for(int i = 0; i < m; i++){ if(c[i] <= x) { g[u[i]].push_back(edge{v[i], 0}); g[v[i]].push_back(edge{u[i], 0}); } else { g[u[i]].push_back(edge{v[i], 1}); g[v[i]].push_back(edge{u[i], 1}); } } auto d = dijkstra(0, g); // cout << x << ' ' << d[n-1] << endl; return d[n-1] <= k-1; }; if(judge(0)) { cout << 0 << endl; return 0; } int l = 0, r = 200001; while(r-l > 1){ int x = (l+r)/2; if(judge(x)) r = x; else l = x; } cout << r << endl; }