結果
問題 | No.904 サメトロ |
ユーザー | leaf_1415 |
提出日時 | 2019-10-11 22:51:30 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,907 bytes |
コンパイル時間 | 666 ms |
コンパイル使用メモリ | 68,868 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-04 02:39:26 |
合計ジャッジ時間 | 1,711 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
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 | WA | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | WA | - |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | WA | - |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 1 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | WA | - |
testcase_31 | AC | 1 ms
5,376 KB |
testcase_32 | AC | 2 ms
5,376 KB |
testcase_33 | AC | 2 ms
5,376 KB |
testcase_34 | AC | 2 ms
5,376 KB |
testcase_35 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <stdio.h> #include <vector> #include <queue> #define llint long long #define inf 1e18 using namespace std; struct edge{ llint to, cap, rev; edge(llint a, llint b, llint c){ to = a, cap = b, rev = c; } }; llint n; llint a[40], b[40]; vector<edge> G[80]; int S, T; llint level[80], iter[80]; void bfs(llint s) { for(int i = 1; i <= T; i++) level[i] = inf; level[s] = 0; queue<int> Q; Q.push(s); while(Q.size()){ int v = Q.front(); Q.pop(); for(int i = 0; i < G[v].size(); i++){ int u = G[v][i].to; if(G[v][i].cap <= 0 || level[u] < inf) continue; level[u] = level[v] + 1; Q.push(u); } } } llint dfs(int v, llint f) { if(v == T) return f; llint ret; for(int i = iter[v]; i < G[v].size(); i++){ if(level[v] >= level[G[v][i].to] || G[v][i].cap <= 0) continue; ret = dfs(G[v][i].to, min(f, G[v][i].cap)); if(ret > 0){ G[v][i].cap -= ret; G[G[v][i].to][G[v][i].rev].cap += ret; return ret; } } return 0; } void add_edge(int s, int t, llint cap) { G[s].push_back(edge(t, cap, G[t].size())); G[t].push_back(edge(s, 0, G[s].size()-1)); } int main(void) { ios::sync_with_stdio(0); cin.tie(0); cin >> n; for(int i = 2; i <= n; i++) cin >> a[i] >> b[i]; llint asum = 0, bsum = 0; for(int i = n; i >= 2; i--) asum += a[i], bsum += b[i]; if(asum > bsum){ swap(asum, bsum); for(int i = 2; i <= n; i++) swap(a[i], b[i]); } S = 2*n+1, T = 2*n+2; for(int i = 2; i <= n; i++) add_edge(S, i, a[i]); for(int i = 2; i <= n; i++) add_edge(n+i, T, b[i]); for(int i = 2; i <= n; i++){ for(int j = 2; j <= n; j++){ if(i == j) continue; add_edge(i, j, 1); } } llint ans = 0, flow; while(1){ bfs(S); if(level[T] >= inf) break; for(int i = 1; i <= T; i++) iter[i] = 0; while(1){ flow = dfs(S, inf); if(flow <= 0) break; ans += flow; } } cout << asum - ans + 1 << endl; return 0; }