結果
問題 | No.1479 Matrix Eraser |
ユーザー | milanis48663220 |
提出日時 | 2021-05-25 20:55:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 740 ms / 3,000 ms |
コード長 | 3,842 bytes |
コンパイル時間 | 1,789 ms |
コンパイル使用メモリ | 143,776 KB |
実行使用メモリ | 73,752 KB |
最終ジャッジ日時 | 2024-10-14 11:54:15 |
合計ジャッジ時間 | 16,662 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 50 ms
11,512 KB |
testcase_08 | AC | 93 ms
17,508 KB |
testcase_09 | AC | 242 ms
33,808 KB |
testcase_10 | AC | 552 ms
61,168 KB |
testcase_11 | AC | 299 ms
39,260 KB |
testcase_12 | AC | 70 ms
13,828 KB |
testcase_13 | AC | 97 ms
17,556 KB |
testcase_14 | AC | 71 ms
14,300 KB |
testcase_15 | AC | 14 ms
5,760 KB |
testcase_16 | AC | 79 ms
15,760 KB |
testcase_17 | AC | 691 ms
73,508 KB |
testcase_18 | AC | 702 ms
73,504 KB |
testcase_19 | AC | 702 ms
73,632 KB |
testcase_20 | AC | 706 ms
73,676 KB |
testcase_21 | AC | 701 ms
73,752 KB |
testcase_22 | AC | 683 ms
73,504 KB |
testcase_23 | AC | 682 ms
73,632 KB |
testcase_24 | AC | 712 ms
73,504 KB |
testcase_25 | AC | 697 ms
73,500 KB |
testcase_26 | AC | 740 ms
73,504 KB |
testcase_27 | AC | 490 ms
26,292 KB |
testcase_28 | AC | 460 ms
26,416 KB |
testcase_29 | AC | 469 ms
26,432 KB |
testcase_30 | AC | 466 ms
26,548 KB |
testcase_31 | AC | 452 ms
26,284 KB |
testcase_32 | AC | 81 ms
13,184 KB |
testcase_33 | AC | 82 ms
13,184 KB |
testcase_34 | AC | 76 ms
13,184 KB |
testcase_35 | AC | 78 ms
13,184 KB |
testcase_36 | AC | 78 ms
13,184 KB |
testcase_37 | AC | 15 ms
5,248 KB |
testcase_38 | AC | 422 ms
73,520 KB |
testcase_39 | AC | 549 ms
73,520 KB |
testcase_40 | AC | 2 ms
5,248 KB |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <set> #include <map> #include <tuple> #include <cmath> #include <numeric> #include <functional> #include <cassert> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; const int INF = 100000000; struct edge {int to, cap, rev;}; class Dinic{ public: Dinic(int n){ N = n; G = vector<vector<edge>>(n, vector<edge>()); level = vector<int>(n, -1); iter = vector<int>(n, 0); } void add_edge(int from, int to, int cap){ G[from].push_back((edge{to, cap, (int)G[to].size()})); G[to].push_back((edge{from, 0, (int)G[from].size()-1})); } int max_flow(int s, int t){ int flow = 0; while(true){ bfs(s); if(level[t] < 0) return flow; clear_iter(); int f; while(f = dfs(s, t, INF) > 0){ flow += f; } } } private: vector<vector<edge>> G; vector<int> level; vector<int> iter; int N; void clear_level(){ for(int i = 0; i < N; i++) level[i] = -1; } void clear_iter(){ for(int i = 0; i < N; i++) iter[i] = 0; } int dfs(int v, int t, int f){ if(v == t) return f; for(int &i = iter[v]; i < G[v].size(); i++){ edge &e = G[v][i]; if(e.cap > 0 && level[v] < level[e.to]){ int d = dfs(e.to, t, min(f, e.cap)); if(d > 0){ e.cap -= d; G[e.to][e.rev].cap += d; return d; } } } return 0; } void bfs(int s){ clear_level(); queue<int> que; level[s] = 0; que.push(s); while(!que.empty()){ int v = que.front(); que.pop(); for(edge e : G[v]){ if(e.cap > 0 && level[e.to] < 0){ level[e.to] = level[v]+1; que.push(e.to); } } } } }; using P = pair<int, int>; int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int h, w; cin >> h >> w; vector<vector<int>> a(h, vector<int>(w)); map<P, int> idx; for(int i = 0; i < h; i++){ for(int j = 0; j < w; j++){ cin >> a[i][j]; if(a[i][j] == 0) continue; // row if(idx.count(P(i, a[i][j])) == 0) idx[P(i, a[i][j])] = idx.size(); // col if(idx.count(P(h+j, a[i][j])) == 0) idx[P(h+j, a[i][j])] = idx.size(); } } int m = idx.size(); Dinic mf(2+m); int s = 0, t = m+1; vector<bool> used(m+1); for(int i = 0; i < h; i++){ for(int j = 0; j < w; j++){ if(a[i][j] == 0) continue; int v1 = idx[P(i, a[i][j])]+1; int v2 = idx[P(h+j, a[i][j])]+1; if(!used[v1]) mf.add_edge(s, v1, 1); if(!used[v2]) mf.add_edge(v2, t, 1); used[v1] = true; used[v2] = true; mf.add_edge(v1, v2, 1); } } cout << mf.max_flow(s, t) << endl; }