結果
問題 | No.1479 Matrix Eraser |
ユーザー | trineutron |
提出日時 | 2021-04-17 01:03:42 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 436 ms / 3,000 ms |
コード長 | 1,665 bytes |
コンパイル時間 | 2,644 ms |
コンパイル使用メモリ | 228,344 KB |
実行使用メモリ | 26,428 KB |
最終ジャッジ日時 | 2024-07-03 06:35:57 |
合計ジャッジ時間 | 11,017 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 46 ms
6,944 KB |
testcase_08 | AC | 79 ms
7,828 KB |
testcase_09 | AC | 171 ms
12,624 KB |
testcase_10 | AC | 334 ms
18,644 KB |
testcase_11 | AC | 210 ms
13,984 KB |
testcase_12 | AC | 59 ms
6,940 KB |
testcase_13 | AC | 80 ms
7,820 KB |
testcase_14 | AC | 60 ms
6,944 KB |
testcase_15 | AC | 14 ms
6,944 KB |
testcase_16 | AC | 70 ms
7,808 KB |
testcase_17 | AC | 418 ms
22,388 KB |
testcase_18 | AC | 422 ms
22,396 KB |
testcase_19 | AC | 426 ms
22,644 KB |
testcase_20 | AC | 417 ms
22,520 KB |
testcase_21 | AC | 418 ms
22,524 KB |
testcase_22 | AC | 423 ms
22,520 KB |
testcase_23 | AC | 421 ms
22,392 KB |
testcase_24 | AC | 436 ms
22,392 KB |
testcase_25 | AC | 417 ms
22,648 KB |
testcase_26 | AC | 431 ms
22,480 KB |
testcase_27 | AC | 150 ms
7,168 KB |
testcase_28 | AC | 149 ms
7,168 KB |
testcase_29 | AC | 148 ms
7,424 KB |
testcase_30 | AC | 149 ms
7,424 KB |
testcase_31 | AC | 148 ms
7,424 KB |
testcase_32 | AC | 79 ms
11,772 KB |
testcase_33 | AC | 79 ms
11,664 KB |
testcase_34 | AC | 78 ms
11,704 KB |
testcase_35 | AC | 78 ms
11,708 KB |
testcase_36 | AC | 78 ms
11,668 KB |
testcase_37 | AC | 39 ms
6,940 KB |
testcase_38 | AC | 198 ms
6,940 KB |
testcase_39 | AC | 346 ms
26,428 KB |
testcase_40 | AC | 2 ms
6,948 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/maxflow> using namespace std; using namespace atcoder; int main() { int h, w; cin >> h >> w; vector a(h, vector<int>(w)); for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { cin >> a.at(i).at(j); } } unordered_map<int, vector<pair<int, int>>> m; for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { if (a.at(i).at(j)) { m[a.at(i).at(j)].emplace_back(i, h + j); } } } int ans = 0; for (auto &&[i, v] : m) { unordered_map<int, int> newindex; for (auto &&k : v) { if (newindex[k.first] == 0) { newindex[k.first] = newindex.size(); } if (newindex[k.second] == 0) { newindex[k.second] = newindex.size(); } } const int n = newindex.size(); int s = 0, t = n + 1; mf_graph<int> flow(n + 2); vector<bool> used(n + 2); for (auto &&k : v) { flow.add_edge(newindex[k.first], newindex[k.second], 1); if (not used.at(newindex[k.first])) { flow.add_edge(s, newindex[k.first], 1); used.at(newindex[k.first]) = true; } if (not used.at(newindex[k.second])) { flow.add_edge(newindex[k.second], t, 1); used.at(newindex[k.second]) = true; } } ans += flow.flow(s, t); } cout << ans << endl; return 0; }