結果
問題 | 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 |
コンパイル時間 | 994 ms |
コンパイル使用メモリ | 84,708 KB |
実行使用メモリ | 17,536 KB |
最終ジャッジ日時 | 2024-04-26 20:42:40 |
合計ジャッジ時間 | 9,339 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | AC | 166 ms
13,728 KB |
testcase_04 | AC | 230 ms
17,536 KB |
testcase_05 | AC | 169 ms
14,244 KB |
testcase_06 | AC | 200 ms
16,180 KB |
testcase_07 | AC | 197 ms
15,572 KB |
testcase_08 | AC | 162 ms
13,808 KB |
testcase_09 | AC | 195 ms
15,600 KB |
testcase_10 | WA | - |
testcase_11 | AC | 205 ms
16,368 KB |
testcase_12 | AC | 214 ms
16,568 KB |
testcase_13 | AC | 194 ms
15,604 KB |
testcase_14 | AC | 190 ms
15,296 KB |
testcase_15 | AC | 188 ms
15,272 KB |
testcase_16 | AC | 225 ms
17,484 KB |
testcase_17 | AC | 206 ms
16,176 KB |
testcase_18 | AC | 187 ms
15,044 KB |
testcase_19 | AC | 205 ms
16,344 KB |
testcase_20 | AC | 204 ms
16,260 KB |
testcase_21 | AC | 198 ms
15,904 KB |
testcase_22 | AC | 211 ms
16,500 KB |
testcase_23 | AC | 204 ms
15,788 KB |
testcase_24 | AC | 211 ms
16,568 KB |
testcase_25 | AC | 236 ms
17,104 KB |
testcase_26 | AC | 202 ms
15,956 KB |
testcase_27 | AC | 210 ms
16,276 KB |
testcase_28 | AC | 174 ms
14,568 KB |
testcase_29 | WA | - |
testcase_30 | AC | 219 ms
16,784 KB |
testcase_31 | AC | 227 ms
17,192 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 186 ms
17,400 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; }