結果

問題 No.1479 Matrix Eraser
ユーザー Today03Today03
提出日時 2024-05-23 15:02:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,086 bytes
コンパイル時間 2,695 ms
コンパイル使用メモリ 218,416 KB
実行使用メモリ 38,920 KB
最終ジャッジ日時 2024-12-20 18:51:07
合計ジャッジ時間 73,907 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
33,468 KB
testcase_01 AC 9 ms
21,692 KB
testcase_02 AC 10 ms
21,796 KB
testcase_03 AC 10 ms
34,112 KB
testcase_04 AC 8 ms
21,796 KB
testcase_05 AC 10 ms
21,796 KB
testcase_06 AC 8 ms
21,884 KB
testcase_07 AC 1,286 ms
38,236 KB
testcase_08 AC 2,406 ms
23,668 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 1,814 ms
23,200 KB
testcase_13 AC 2,123 ms
38,920 KB
testcase_14 AC 1,796 ms
23,316 KB
testcase_15 AC 224 ms
22,184 KB
testcase_16 AC 1,765 ms
23,480 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 128 ms
18,964 KB
testcase_28 AC 133 ms
19,088 KB
testcase_29 AC 130 ms
19,104 KB
testcase_30 AC 127 ms
19,044 KB
testcase_31 AC 130 ms
19,104 KB
testcase_32 AC 73 ms
24,868 KB
testcase_33 AC 72 ms
24,908 KB
testcase_34 AC 71 ms
24,836 KB
testcase_35 AC 73 ms
24,832 KB
testcase_36 AC 74 ms
24,924 KB
testcase_37 AC 53 ms
18,296 KB
testcase_38 AC 158 ms
18,076 KB
testcase_39 TLE -
testcase_40 AC 9 ms
38,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int INF = 1e9 + 10;
const ll INFL = 4e18;

#include <atcoder/maxflow>
using namespace atcoder;

const int MX = 5e5 + 5;

int main() {
    int H, W;
    cin >> H >> W;
    vector<vector<int>> A(H, vector<int>(W));
    for (int i = 0; i < H; i++) {
        for (int j = 0; j < W; j++) {
            cin >> A[i][j];
        }
    }

    vector<vector<pair<int, int>>> P(MX);
    for (int i = 0; i < H; i++) {
        for (int j = 0; j < W; j++) {
            P[A[i][j]].push_back({i, j});
        }
    }

    int ans = 0;
    for (int i = 1; i < MX; i++) {
        if (!P[i].empty()) {
            mf_graph<ll> mf(H + W + 2);
            for (auto [x, y] : P[i]) {
                mf.add_edge(x, H + y, 1);
            }
            for (int j = 0; j < H; j++) {
                mf.add_edge(H + W, j, 1);
            }
            for (int j = 0; j < W; j++) {
                mf.add_edge(H + j, H + W + 1, 1);
            }
            ans += mf.flow(H + W, H + W + 1);
        }
    }

    cout << ans << endl;
}
0