結果

問題 No.1479 Matrix Eraser
ユーザー ruthenruthen
提出日時 2023-03-01 21:08:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 512 ms / 3,000 ms
コード長 1,075 bytes
コンパイル時間 2,509 ms
コンパイル使用メモリ 223,516 KB
実行使用メモリ 76,620 KB
最終ジャッジ日時 2024-09-16 18:16:47
合計ジャッジ時間 13,708 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 37 ms
11,700 KB
testcase_08 AC 66 ms
17,868 KB
testcase_09 AC 168 ms
34,408 KB
testcase_10 AC 391 ms
62,480 KB
testcase_11 AC 211 ms
39,736 KB
testcase_12 AC 47 ms
14,076 KB
testcase_13 AC 67 ms
17,868 KB
testcase_14 AC 49 ms
14,552 KB
testcase_15 AC 11 ms
5,760 KB
testcase_16 AC 55 ms
15,984 KB
testcase_17 AC 472 ms
74,604 KB
testcase_18 AC 486 ms
74,736 KB
testcase_19 AC 493 ms
74,612 KB
testcase_20 AC 512 ms
74,736 KB
testcase_21 AC 496 ms
74,868 KB
testcase_22 AC 480 ms
74,736 KB
testcase_23 AC 490 ms
74,736 KB
testcase_24 AC 486 ms
74,736 KB
testcase_25 AC 496 ms
74,732 KB
testcase_26 AC 487 ms
74,736 KB
testcase_27 AC 348 ms
40,592 KB
testcase_28 AC 333 ms
40,744 KB
testcase_29 AC 318 ms
40,520 KB
testcase_30 AC 371 ms
40,504 KB
testcase_31 AC 355 ms
40,580 KB
testcase_32 AC 49 ms
30,684 KB
testcase_33 AC 49 ms
30,752 KB
testcase_34 AC 49 ms
30,668 KB
testcase_35 AC 50 ms
30,784 KB
testcase_36 AC 48 ms
30,724 KB
testcase_37 AC 26 ms
19,960 KB
testcase_38 AC 362 ms
74,952 KB
testcase_39 AC 295 ms
76,620 KB
testcase_40 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#include <atcoder/maxflow>

#ifdef _RUTHEN
#include <debug.hpp>
#else
#define show(...) true
#endif

using ll = long long;
#define rep(i, n) for (int i = 0; i < (n); i++)
template <class T> using V = vector<T>;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int H, W;
    cin >> H >> W;
    V<V<int>> A(H, V<int>(W));
    rep(i, H) rep(j, W) cin >> A[i][j];
    map<int, int> mph[H], mpw[W];
    atcoder::mf_graph<int> G(H * W * 2 + 2);
    int s = H * W * 2, t = s + 1;
    rep(i, H) {
        rep(j, W) {
            if (A[i][j] == 0) continue;
            if (mph[i].count(A[i][j]) == 0) {
                mph[i][A[i][j]] = i * W + j;
                G.add_edge(s, i * W + j, 1);
            }
            if (mpw[j].count(A[i][j]) == 0) {
                mpw[j][A[i][j]] = i * W + j;
                G.add_edge(i * W + j + H * W, t, 1);
            }
            G.add_edge(mph[i][A[i][j]], mpw[j][A[i][j]] + H * W, 1);
        }
    }
    int ans = G.flow(s, t);
    cout << ans << '\n';
    return 0;
}
0