結果

問題 No.1479 Matrix Eraser
ユーザー tabrtabr
提出日時 2021-04-16 20:11:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 178 ms / 3,000 ms
コード長 2,564 bytes
コンパイル時間 2,673 ms
コンパイル使用メモリ 220,064 KB
実行使用メモリ 23,808 KB
最終ジャッジ日時 2024-07-02 22:03:07
合計ジャッジ時間 7,775 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
14,976 KB
testcase_01 AC 13 ms
14,976 KB
testcase_02 AC 13 ms
14,976 KB
testcase_03 AC 13 ms
15,104 KB
testcase_04 AC 13 ms
14,976 KB
testcase_05 AC 13 ms
14,976 KB
testcase_06 AC 13 ms
14,976 KB
testcase_07 AC 30 ms
16,000 KB
testcase_08 AC 42 ms
16,640 KB
testcase_09 AC 83 ms
18,432 KB
testcase_10 AC 140 ms
21,120 KB
testcase_11 AC 95 ms
19,072 KB
testcase_12 AC 35 ms
16,256 KB
testcase_13 AC 45 ms
16,640 KB
testcase_14 AC 38 ms
16,256 KB
testcase_15 AC 17 ms
15,232 KB
testcase_16 AC 39 ms
16,512 KB
testcase_17 AC 178 ms
22,272 KB
testcase_18 AC 173 ms
22,400 KB
testcase_19 AC 177 ms
22,400 KB
testcase_20 AC 176 ms
22,272 KB
testcase_21 AC 177 ms
22,272 KB
testcase_22 AC 176 ms
22,144 KB
testcase_23 AC 176 ms
22,272 KB
testcase_24 AC 174 ms
22,272 KB
testcase_25 AC 173 ms
22,272 KB
testcase_26 AC 173 ms
22,144 KB
testcase_27 AC 94 ms
18,944 KB
testcase_28 AC 94 ms
18,944 KB
testcase_29 AC 94 ms
19,072 KB
testcase_30 AC 94 ms
19,072 KB
testcase_31 AC 95 ms
19,072 KB
testcase_32 AC 64 ms
20,232 KB
testcase_33 AC 65 ms
19,548 KB
testcase_34 AC 64 ms
19,800 KB
testcase_35 AC 65 ms
19,660 KB
testcase_36 AC 64 ms
19,668 KB
testcase_37 AC 30 ms
18,068 KB
testcase_38 AC 95 ms
18,048 KB
testcase_39 AC 145 ms
23,808 KB
testcase_40 AC 13 ms
14,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#ifdef tabr
#include "library/debug.cpp"
#else
#define debug(...)
#endif

struct matching {
    vector<vector<int>> g;
    vector<int> pa;
    vector<int> pb;
    vector<int> was;
    int n, m;
    int res;
    int iter;

    matching(int _n, int _m) : n(_n), m(_m) {
        pa.assign(n, -1);
        pb.assign(m, -1);
        was.resize(n);
        g.resize(n);
        res = 0;
        iter = 0;
    }

    void add(int from, int to) {
        g[from].push_back(to);
    }

    bool dfs(int v) {
        was[v] = iter;
        for (int u : g[v]) {
            if (pb[u] == -1) {
                pa[v] = u;
                pb[u] = v;
                return true;
            }
        }
        for (int u : g[v]) {
            if (was[pb[u]] != iter && dfs(pb[u])) {
                pa[v] = u;
                pb[u] = v;
                return true;
            }
        }
        return false;
    }

    int solve() {
        while (true) {
            iter++;
            int add = 0;
            for (int i = 0; i < n; i++) {
                if (pa[i] == -1 && dfs(i)) {
                    add++;
                }
            }
            if (add == 0) {
                break;
            }
            res += add;
        }
        return res;
    }
};

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int h, w;
    cin >> h >> w;
    vector<vector<int>> a(h, vector<int>(w));
    int m = 500001;
    vector<vector<pair<int, int>>> b(m);
    for (int i = 0; i < h; i++) {
        for (int j = 0; j < w; j++) {
            cin >> a[i][j];
            b[a[i][j]].emplace_back(i, j);
        }
    }
    int ans = 0;
    for (int i = m - 1; i > 0; i--) {
        if (b[i].empty()) {
            continue;
        }
        vector<int> s, t;
        for (auto [x, y] : b[i]) {
            s.emplace_back(x);
            t.emplace_back(y);
        }
        sort(s.begin(), s.end());
        s.resize(unique(s.begin(), s.end()) - s.begin());
        sort(t.begin(), t.end());
        t.resize(unique(t.begin(), t.end()) - t.begin());
        matching mt((int)s.size(), (int)t.size());
        for (auto [x, y] : b[i]) {
            int from = (int)(lower_bound(s.begin(), s.end(), x) - s.begin());
            int to = (int)(lower_bound(t.begin(), t.end(), y) - t.begin());
            mt.add(from, to);
        }
        ans += mt.solve();
    }
    cout << ans << '\n';
    return 0;
}
0