結果
問題 | No.1479 Matrix Eraser |
ユーザー | Kude |
提出日時 | 2021-04-16 21:36:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,731 ms / 3,000 ms |
コード長 | 2,014 bytes |
コンパイル時間 | 4,968 ms |
コンパイル使用メモリ | 269,508 KB |
実行使用メモリ | 22,828 KB |
最終ジャッジ日時 | 2024-07-03 01:01:44 |
合計ジャッジ時間 | 27,245 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8 ms
14,916 KB |
testcase_01 | AC | 8 ms
15,012 KB |
testcase_02 | AC | 8 ms
14,956 KB |
testcase_03 | AC | 8 ms
14,920 KB |
testcase_04 | AC | 8 ms
14,984 KB |
testcase_05 | AC | 9 ms
14,984 KB |
testcase_06 | AC | 9 ms
15,092 KB |
testcase_07 | AC | 113 ms
15,820 KB |
testcase_08 | AC | 201 ms
16,484 KB |
testcase_09 | AC | 487 ms
18,032 KB |
testcase_10 | AC | 1,115 ms
20,300 KB |
testcase_11 | AC | 611 ms
18,600 KB |
testcase_12 | AC | 154 ms
16,228 KB |
testcase_13 | AC | 180 ms
16,532 KB |
testcase_14 | AC | 155 ms
16,156 KB |
testcase_15 | AC | 27 ms
15,200 KB |
testcase_16 | AC | 152 ms
16,296 KB |
testcase_17 | AC | 1,428 ms
21,236 KB |
testcase_18 | AC | 1,418 ms
21,192 KB |
testcase_19 | AC | 1,425 ms
21,288 KB |
testcase_20 | AC | 1,430 ms
21,284 KB |
testcase_21 | AC | 1,427 ms
21,192 KB |
testcase_22 | AC | 1,441 ms
21,264 KB |
testcase_23 | AC | 1,413 ms
21,232 KB |
testcase_24 | AC | 1,416 ms
21,264 KB |
testcase_25 | AC | 1,419 ms
21,260 KB |
testcase_26 | AC | 1,425 ms
21,236 KB |
testcase_27 | AC | 117 ms
18,172 KB |
testcase_28 | AC | 118 ms
18,200 KB |
testcase_29 | AC | 118 ms
18,164 KB |
testcase_30 | AC | 118 ms
18,268 KB |
testcase_31 | AC | 117 ms
18,232 KB |
testcase_32 | AC | 85 ms
18,420 KB |
testcase_33 | AC | 85 ms
18,444 KB |
testcase_34 | AC | 85 ms
18,420 KB |
testcase_35 | AC | 86 ms
18,484 KB |
testcase_36 | AC | 85 ms
18,448 KB |
testcase_37 | AC | 22 ms
14,992 KB |
testcase_38 | AC | 62 ms
17,148 KB |
testcase_39 | AC | 1,731 ms
22,828 KB |
testcase_40 | AC | 8 ms
14,932 KB |
ソースコード
#include<bits/stdc++.h> #include<atcoder/all> using namespace std; using namespace atcoder; #define rep(i,n)for (int i = 0; i < int(n); ++i) #define rrep(i,n)for (int i = int(n)-1; i >= 0; --i) #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() template<class T> void chmax(T& a, const T& b) {a = max(a, b);} template<class T> void chmin(T& a, const T& b) {a = min(a, b);} using ll = long long; using P = pair<int,int>; using VI = vector<int>; using VVI = vector<VI>; using VL = vector<ll>; using VVL = vector<VL>; // https://ei1333.github.io/algorithm/bipartite-matching.html struct Bipartite_Matching { vector< vector< int > > graph; vector< int > match, alive, used; int timestamp; Bipartite_Matching(int n) { timestamp = 0; graph.resize(n); alive.assign(n, 1); used.assign(n, 0); match.assign(n, -1); } void add_edge(int u, int v) { graph[u].push_back(v); graph[v].push_back(u); } bool dfs(int v) { used[v] = timestamp; for(int i = 0; i < graph[v].size(); i++) { int u = graph[v][i], w = match[u]; if(alive[u] == 0) continue; if(w == -1 || (used[w] != timestamp && dfs(w))) { match[v] = u; match[u] = v; return (true); } } return (false); } int bipartite_matching() { int ret = 0; for(int i = 0; i < graph.size(); i++) { if(alive[i] == 0) continue; if(match[i] == -1) { ++timestamp; ret += dfs(i); } } return (ret); } }; int main() { ios::sync_with_stdio(false); cin.tie(0); int h, w; cin >> h >> w; vector<vector<P>> d(500001); rep(i, h) rep(j, w) { int a; cin >> a; if (a) d[a].emplace_back(i, j); } int ans = 0; for(auto& ps: d) if (!ps.empty()) { Bipartite_Matching bm(h + w); for(auto [i, j]: ps) { bm.add_edge(i, h + j); } ans += bm.bipartite_matching(); } cout << ans << '\n'; }