結果
| 問題 | No.957 植林 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-12-20 14:18:29 |
| 言語 | D (dmd 2.109.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 2,108 bytes |
| 記録 | |
| コンパイル時間 | 898 ms |
| コンパイル使用メモリ | 120,788 KB |
| 実行使用メモリ | 17,792 KB |
| 最終ジャッジ日時 | 2024-06-22 03:55:36 |
| 合計ジャッジ時間 | 5,102 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | TLE * 1 -- * 44 |
ソースコード
import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.string;
void main(){
auto s = readln.split.map!(to!int);
auto H = s[0];
auto W = s[1];
auto A = iota(H).map!(_ => readln.split.map!(to!long).array).array;
auto R = readln.split.map!(to!long).array;
auto C = readln.split.map!(to!long).array;
int source = H + W;
int sink = H + W + 1;
auto ff = new FordFulkerson!long(H+W+2, source, sink);
foreach (i; 0..H) {
ff.add_edge(source, i, A[i].sum);
ff.add_edge(i, sink, R[i]);
}
foreach (j; 0..W) {
ff.add_edge(H+j, sink, C[j]);
}
foreach (i; 0..H) foreach (j; 0..W) {
ff.add_edge(i, H+j, A[i][j]);
}
writeln(R.sum + C.sum - ff.run);
}
class FordFulkerson(T) {
int N, source, sink;
int[][] adj;
T[][] flow;
bool[] used;
this(int n, int s, int t) {
N = n;
source = s;
sink = t;
assert (s >= 0 && s < N && t >= 0 && t < N);
adj = new int[][](N);
flow = new T[][](N, N);
used = new bool[](N);
}
void add_edge(int from, int to, T cap) {
adj[from] ~= to;
adj[to] ~= from;
flow[from][to] = cap;
}
T dfs(int v, T min_cap) {
if (v == sink)
return min_cap;
if (used[v])
return 0;
used[v] = true;
foreach (to; adj[v]) {
if (!used[to] && flow[v][to] > 0) {
auto bottleneck = dfs(to, min(min_cap, flow[v][to]));
if (bottleneck == 0) continue;
flow[v][to] -= bottleneck;
flow[to][v] += bottleneck;
return bottleneck;
}
}
return 0;
}
T run() {
T ret = 0;
while (true) {
foreach (i; 0..N) used[i] = false;
T f = dfs(source, T.max);
if (f > 0)
ret += f;
else
return ret;
}
}
}