結果
問題 | No.1301 Strange Graph Shortest Path |
ユーザー | Manuel1024 |
提出日時 | 2022-01-11 17:34:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,706 bytes |
コンパイル時間 | 1,111 ms |
コンパイル使用メモリ | 84,016 KB |
実行使用メモリ | 17,628 KB |
最終ジャッジ日時 | 2024-11-14 11:41:12 |
合計ジャッジ時間 | 9,991 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | WA | - |
testcase_03 | AC | 164 ms
13,720 KB |
testcase_04 | AC | 242 ms
17,408 KB |
testcase_05 | AC | 169 ms
14,116 KB |
testcase_06 | AC | 229 ms
16,184 KB |
testcase_07 | AC | 201 ms
15,580 KB |
testcase_08 | AC | 172 ms
13,808 KB |
testcase_09 | AC | 208 ms
15,608 KB |
testcase_10 | WA | - |
testcase_11 | AC | 219 ms
16,244 KB |
testcase_12 | AC | 224 ms
16,700 KB |
testcase_13 | AC | 203 ms
15,608 KB |
testcase_14 | AC | 206 ms
15,428 KB |
testcase_15 | AC | 205 ms
15,276 KB |
testcase_16 | AC | 253 ms
17,628 KB |
testcase_17 | AC | 225 ms
16,180 KB |
testcase_18 | AC | 195 ms
15,048 KB |
testcase_19 | AC | 229 ms
16,352 KB |
testcase_20 | AC | 232 ms
16,132 KB |
testcase_21 | AC | 216 ms
15,908 KB |
testcase_22 | AC | 245 ms
16,452 KB |
testcase_23 | AC | 209 ms
15,920 KB |
testcase_24 | AC | 230 ms
16,568 KB |
testcase_25 | AC | 242 ms
16,980 KB |
testcase_26 | AC | 213 ms
15,824 KB |
testcase_27 | AC | 223 ms
16,280 KB |
testcase_28 | AC | 178 ms
14,436 KB |
testcase_29 | WA | - |
testcase_30 | AC | 243 ms
16,960 KB |
testcase_31 | AC | 237 ms
17,072 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 211 ms
17,528 KB |
ソースコード
#include <iostream> #include <vector> #include <queue> using namespace std; using ll = long long; struct P{ int to; ll cost; int i; P(ll cost, int to, int i): to(to), i(i), cost(cost){} bool operator>(const P &other) const { return this->cost > other.cost; } }; bool chmin(ll &a, ll x){ if(a > x){ a = x; return true; }else return false; } int main(){ int n, m; cin >> n >> m; vector<int> u(m), v(m), c(m), d(m); for(int i = 0; i < m; i++){ cin >> u[i] >> v[i] >> c[i] >> d[i]; u[i]--; v[i]--; } ll ans = 0; vector<bool> isused(m, false); for(int turn = 0; turn < 2; turn++){ vector<vector<P>> G(n); for(int i = 0; i < m; i++){ if(isused[i]) c[i] = d[i]; G[u[i]].emplace_back(c[i], v[i], i); G[v[i]].emplace_back(c[i], u[i], i); } vector<ll> cost(n, 1LL << 60); vector<P> prev(n, P{-1, -1, -1}); cost[0] = 0; priority_queue<P, vector<P>, greater<P>> Q; Q.emplace(0, 0, 0); while(!Q.empty()){ auto c = Q.top(); Q.pop(); if(cost[c.to] < c.cost) continue; for(auto &nex: G[c.to]){ if(chmin(cost[nex.to], cost[c.to]+nex.cost)){ prev[nex.to].to = c.to; prev[nex.to].i = nex.i; Q.emplace(cost[nex.to], nex.to, nex.i); } } } ans += cost[n-1]; int cur = n-1; while(prev[cur].i != -1){ isused[prev[cur].i] = true; cur = prev[cur].to; } } cout << ans << endl; return 0; }