結果
問題 | No.1301 Strange Graph Shortest Path |
ユーザー | leaf_1415 |
提出日時 | 2020-11-27 23:27:31 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,226 bytes |
コンパイル時間 | 972 ms |
コンパイル使用メモリ | 86,240 KB |
実行使用メモリ | 41,084 KB |
最終ジャッジ日時 | 2024-09-13 01:06:28 |
合計ジャッジ時間 | 16,945 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
22,356 KB |
testcase_01 | AC | 7 ms
21,640 KB |
testcase_02 | AC | 229 ms
39,820 KB |
testcase_03 | AC | 255 ms
37,512 KB |
testcase_04 | AC | 370 ms
37,804 KB |
testcase_05 | AC | 200 ms
39,872 KB |
testcase_06 | AC | 361 ms
38,280 KB |
testcase_07 | AC | 316 ms
38,932 KB |
testcase_08 | AC | 182 ms
38,344 KB |
testcase_09 | AC | 306 ms
36,728 KB |
testcase_10 | AC | 191 ms
37,632 KB |
testcase_11 | AC | 285 ms
38,264 KB |
testcase_12 | AC | 291 ms
37,308 KB |
testcase_13 | AC | 265 ms
41,036 KB |
testcase_14 | AC | 241 ms
37,416 KB |
testcase_15 | AC | 263 ms
36,336 KB |
testcase_16 | AC | 355 ms
38,236 KB |
testcase_17 | AC | 319 ms
40,912 KB |
testcase_18 | AC | 290 ms
38,320 KB |
testcase_19 | AC | 325 ms
36,656 KB |
testcase_20 | AC | 364 ms
35,488 KB |
testcase_21 | AC | 266 ms
39,816 KB |
testcase_22 | AC | 319 ms
37,808 KB |
testcase_23 | AC | 297 ms
39,512 KB |
testcase_24 | AC | 289 ms
37,692 KB |
testcase_25 | AC | 331 ms
37,864 KB |
testcase_26 | AC | 256 ms
38,408 KB |
testcase_27 | AC | 280 ms
37,412 KB |
testcase_28 | AC | 236 ms
41,084 KB |
testcase_29 | AC | 391 ms
37,100 KB |
testcase_30 | AC | 376 ms
39,356 KB |
testcase_31 | AC | 358 ms
38,316 KB |
testcase_32 | AC | 7 ms
21,848 KB |
testcase_33 | AC | 76 ms
36,144 KB |
testcase_34 | TLE | - |
ソースコード
#include <iostream> #include <cstdio> #include <cmath> #include <ctime> #include <cstdlib> #include <cassert> #include <vector> #include <list> #include <stack> #include <queue> #include <deque> #include <map> #include <set> #include <bitset> #include <string> #include <algorithm> #include <utility> #include <complex> #define rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++) #define chmin(x, y) (x) = min((x), (y)) #define chmax(x, y) (x) = max((x), (y)) #define all(x) (x).begin(),(x).end() #define inf 1e15 #define mod 998244353 using namespace std; typedef long long llint; typedef long long ll; typedef pair<llint, llint> P; struct edge{ int to, cap, cost, rev; edge(){} edge(llint a, llint b, llint c, llint d){ to = a, cap = b, cost = c, rev = d; } }; int n, m, F; int S, T; vector<edge> G[500005]; llint dist[500005]; int prevv[500005], preve[500005]; llint h[500005]; void BellmanFord() { for(int i = 0; i <= T; i++) dist[i] = inf; dist[S] = 0, prevv[S] = -1; bool update = true; while(update){ update = false; for(int i = 0; i <= T; i++){ for(int j = 0; j < G[i].size(); j++){ if(G[i][j].cap == 0) continue; if(dist[G[i][j].to] > dist[i] + G[i][j].cost){ dist[G[i][j].to] = dist[i] + G[i][j].cost; prevv[G[i][j].to] = i; preve[G[i][j].to] = j; update = true; } } } } } void add_edge(llint from, llint to, llint cap, llint cost) { G[from].push_back( edge(to, cap, cost, G[to].size()) ); G[to].push_back( edge(from, 0, -cost, G[from].size()-1) ); } int main(void) { ios::sync_with_stdio(0); cin.tie(0); cin >> n >> m; ll u, v, c, d; rep(i, 1, m){ cin >> u >> v >> c >> d ; add_edge(u, v, 1, c); add_edge(v, u, 1, c); add_edge(u, v, 1, d); add_edge(v, u, 1, d); } S = 1, T = n; int f = 2; ll ans = 0; while(f > 0){ BellmanFord(); if(dist[T] >= inf) break; int p = T, flow = f; while(prevv[p] != -1){ flow = min(flow, G[prevv[p]][preve[p]].cap); p = prevv[p]; } p = T; while(prevv[p] != -1){ G[prevv[p]][preve[p]].cap -= flow; G[p][G[prevv[p]][preve[p]].rev].cap += flow; p = prevv[p]; } f -= flow; ans += dist[T] * flow; } if(f > 0) ans = -1; cout << ans << endl; return 0; }