結果
問題 | No.2387 Yokan Factory |
ユーザー | wtz2333 |
提出日時 | 2023-07-21 22:23:07 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,442 bytes |
コンパイル時間 | 2,119 ms |
コンパイル使用メモリ | 183,688 KB |
実行使用メモリ | 14,536 KB |
最終ジャッジ日時 | 2024-09-21 23:53:16 |
合計ジャッジ時間 | 5,341 ms |
ジャッジサーバーID (参考情報) |
judge1 / 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 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 187 ms
12,168 KB |
testcase_17 | AC | 397 ms
13,068 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 279 ms
8,248 KB |
testcase_21 | AC | 567 ms
11,412 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 10 ms
7,548 KB |
testcase_26 | AC | 492 ms
10,088 KB |
testcase_27 | AC | 20 ms
12,184 KB |
testcase_28 | AC | 4 ms
5,376 KB |
testcase_29 | AC | 6 ms
5,376 KB |
testcase_30 | AC | 4 ms
5,376 KB |
testcase_31 | AC | 4 ms
5,376 KB |
testcase_32 | AC | 3 ms
5,376 KB |
testcase_33 | AC | 3 ms
5,376 KB |
testcase_34 | AC | 5 ms
5,376 KB |
testcase_35 | AC | 4 ms
5,376 KB |
testcase_36 | AC | 2 ms
5,376 KB |
testcase_37 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In lambda function: main.cpp:37:22: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 37 | for(auto [v,w]:e[u]){ | ^
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long ll; struct node{ int u,v; ll a,b; }; int main(){ ios::sync_with_stdio(false); cin.tie(0); int n,m,X; cin >> n >> m >> X; std::vector<node> a(m); for(int i = 0;i < m;i ++){ cin >> a[i].u >> a[i].v >> a[i].a >> a[i].b; } auto check = [&](int x)->bool{ std::vector<std::vector<pair<int,ll>>> e; e.resize(n + 1); for(int i = 0;i < m;i ++){ if(a[i].b >= x){ e[a[i].u].push_back({a[i].v,a[i].a}); e[a[i].v].push_back({a[i].u,a[i].a}); } } vector<ll> dis(n + 1,1e18 + 7); std::vector<int> vis(n + 1); priority_queue<pair<ll,int>> q; dis[1] = 0; q.push({dis[1],1}); while(!q.empty()){ int u = q.top().second; q.pop(); if(vis[u])continue; vis[u] = 1; for(auto [v,w]:e[u]){ if(dis[v] > dis[u] + w){ dis[v] = dis[u] + w; q.push({-dis[v],v}); } } } if(dis[n] < X){ return true; }return false; }; int l = 0,r = 1e9,ans = -1; while(l <= r){ int mid = l + r >> 1; if(check(mid)){ l = mid + 1; ans = mid; }else r = mid - 1; } cout << ans << "\n"; return 0; }