結果
問題 | No.957 植林 |
ユーザー | ningenMe |
提出日時 | 2023-07-18 04:16:05 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 478 ms / 2,000 ms |
コード長 | 3,118 bytes |
コンパイル時間 | 2,309 ms |
コンパイル使用メモリ | 218,768 KB |
実行使用メモリ | 8,960 KB |
最終ジャッジ日時 | 2024-09-18 03:54:43 |
合計ジャッジ時間 | 13,659 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 20 ms
8,320 KB |
testcase_04 | AC | 18 ms
8,064 KB |
testcase_05 | AC | 21 ms
8,448 KB |
testcase_06 | AC | 20 ms
8,576 KB |
testcase_07 | AC | 20 ms
8,192 KB |
testcase_08 | AC | 14 ms
8,320 KB |
testcase_09 | AC | 13 ms
8,320 KB |
testcase_10 | AC | 16 ms
8,448 KB |
testcase_11 | AC | 14 ms
8,448 KB |
testcase_12 | AC | 14 ms
8,192 KB |
testcase_13 | AC | 12 ms
6,912 KB |
testcase_14 | AC | 15 ms
8,704 KB |
testcase_15 | AC | 14 ms
8,320 KB |
testcase_16 | AC | 12 ms
6,912 KB |
testcase_17 | AC | 13 ms
8,064 KB |
testcase_18 | AC | 327 ms
8,320 KB |
testcase_19 | AC | 349 ms
8,320 KB |
testcase_20 | AC | 379 ms
8,448 KB |
testcase_21 | AC | 376 ms
8,448 KB |
testcase_22 | AC | 399 ms
8,832 KB |
testcase_23 | AC | 430 ms
8,704 KB |
testcase_24 | AC | 456 ms
8,704 KB |
testcase_25 | AC | 473 ms
8,832 KB |
testcase_26 | AC | 471 ms
8,960 KB |
testcase_27 | AC | 466 ms
8,832 KB |
testcase_28 | AC | 478 ms
8,960 KB |
testcase_29 | AC | 458 ms
8,960 KB |
testcase_30 | AC | 456 ms
8,832 KB |
testcase_31 | AC | 324 ms
8,192 KB |
testcase_32 | AC | 349 ms
8,448 KB |
testcase_33 | AC | 376 ms
8,320 KB |
testcase_34 | AC | 384 ms
8,576 KB |
testcase_35 | AC | 441 ms
8,704 KB |
testcase_36 | AC | 439 ms
8,832 KB |
testcase_37 | AC | 459 ms
8,832 KB |
testcase_38 | AC | 475 ms
8,832 KB |
testcase_39 | AC | 462 ms
8,960 KB |
testcase_40 | AC | 462 ms
8,832 KB |
testcase_41 | AC | 11 ms
8,832 KB |
testcase_42 | AC | 11 ms
8,832 KB |
testcase_43 | AC | 16 ms
8,960 KB |
testcase_44 | AC | 15 ms
8,832 KB |
testcase_45 | AC | 1 ms
5,376 KB |
testcase_46 | AC | 2 ms
5,376 KB |
testcase_47 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using int64 = long long; /* * @title Dinic - Dinicフロー * @docs md/graph/Dinic.md */ template <class T> class Dinic { struct info { int to, rev; T cap; }; T ini, inf; vector<vector<info>> edge; vector<int> level, iter; inline void bfs(int start) { for (int i = 0; i < level.size(); ++i) level[i] = -1; queue<int> q; level[start] = 0; q.push(start); while (q.size()) { int from = q.front(); q.pop(); for (auto& e : edge[from]) { if (e.cap > 0 && level[e.to] < 0) { level[e.to] = level[from] + 1; q.push(e.to); } } } } inline T dfs(int from, int goal, T flow) { if (from == goal) return flow; for (int& i = iter[from]; i < edge[from].size(); ++i) { auto& e = edge[from][i]; if (e.cap <= 0 || level[from] >= level[e.to]) continue; T dflow = dfs(e.to, goal, min(flow, e.cap)); if (dflow <= 0) continue; e.cap -= dflow; edge[e.to][e.rev].cap += dflow; return dflow; } return ini; } public: Dinic(int N, T ini, T inf) : edge(N), level(N), iter(N), ini(ini), inf(inf) { // do nothing } inline void make_edge(int from, int to, T cap) { edge[from].push_back({ to, (int)edge[to].size(), cap }); edge[to].push_back({ from, (int)edge[from].size() - 1, ini }); } inline T maxflow(int start, int goal) { T maxflow = ini; while (1) { bfs(start); if (level[goal] < 0) return maxflow; for (int i = 0; i < iter.size(); ++i) iter[i] = 0; T flow; while ((flow = dfs(start, goal, inf))>0) maxflow += flow; } } }; //verify https://atcoder.jp/contests/arc085/tasks/arc085_c /** * @url * @est */ int main() { cin.tie(0);ios::sync_with_stdio(false); int64 inf = 1e16; int H,W; cin >> H >> W; vector<vector<int64>> grid(H,vector<int64>(W)); for(int i=0;i<H;++i) for(int j=0;j<W;++j) cin >> grid[i][j]; vector<int64> R(H),C(W); for(int i=0;i<H;++i) cin >> R[i]; for(int j=0;j<W;++j) cin >> C[j]; //行/列に対して「植える」:0, 「植えない」:1 ,と割り当てる //加えて、問題の性質的にi行目に関してはフローを流す前に貪欲に選んでしまう //そうすることで、辺の数が2乗オーダーから落ちる Dinic<int64> di(H+W+2,0,inf); int S = H+W, G = H+W+1; int64 ans = 0; for(int i=0;i<H;++i) { //i行目を全部植えたときのコストを計算 int64 cost = 0; for(int j=0;j<W;++j) cost += grid[i][j]; //差分が正のとき if(R[i]-cost >= 0) ans += R[i]-cost; //差分が負のとき→ iが0のとき|cost-R[i]|失う else di.make_edge(i,G,abs(R[i]-cost)); } for(int j=0;j<W;++j) { //j列目を全部植えたときのコスト int64 cost = C[j]; //jが0のとき|cost|得る ans += cost, di.make_edge(S,j+H,cost); } for(int i=0;i<H;++i) for(int j=0;j<W;++j) { //iが1,jが0のとき、grid[i][j]失う di.make_edge(j+H,i,grid[i][j]); } cout << ans - di.maxflow(S,G) << endl; return 0; }