結果
問題 | No.1479 Matrix Eraser |
ユーザー | tnakao0123 |
提出日時 | 2021-04-17 02:09:05 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 186 ms / 3,000 ms |
コード長 | 2,704 bytes |
コンパイル時間 | 1,039 ms |
コンパイル使用メモリ | 111,112 KB |
実行使用メモリ | 9,436 KB |
最終ジャッジ日時 | 2024-07-03 07:53:06 |
合計ジャッジ時間 | 4,883 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 1 ms
6,940 KB |
testcase_04 | AC | 3 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 8 ms
6,944 KB |
testcase_08 | AC | 12 ms
6,944 KB |
testcase_09 | AC | 27 ms
6,940 KB |
testcase_10 | AC | 54 ms
6,944 KB |
testcase_11 | AC | 32 ms
7,132 KB |
testcase_12 | AC | 10 ms
6,944 KB |
testcase_13 | AC | 13 ms
6,944 KB |
testcase_14 | AC | 10 ms
6,944 KB |
testcase_15 | AC | 4 ms
6,944 KB |
testcase_16 | AC | 11 ms
6,944 KB |
testcase_17 | AC | 71 ms
7,472 KB |
testcase_18 | AC | 71 ms
7,508 KB |
testcase_19 | AC | 70 ms
7,524 KB |
testcase_20 | AC | 70 ms
7,644 KB |
testcase_21 | AC | 71 ms
7,644 KB |
testcase_22 | AC | 68 ms
7,600 KB |
testcase_23 | AC | 70 ms
7,480 KB |
testcase_24 | AC | 70 ms
7,520 KB |
testcase_25 | AC | 69 ms
7,616 KB |
testcase_26 | AC | 70 ms
7,596 KB |
testcase_27 | AC | 165 ms
7,688 KB |
testcase_28 | AC | 166 ms
7,760 KB |
testcase_29 | AC | 163 ms
7,716 KB |
testcase_30 | AC | 166 ms
7,808 KB |
testcase_31 | AC | 164 ms
7,680 KB |
testcase_32 | AC | 77 ms
9,348 KB |
testcase_33 | AC | 75 ms
9,344 KB |
testcase_34 | AC | 76 ms
9,344 KB |
testcase_35 | AC | 77 ms
9,392 KB |
testcase_36 | AC | 76 ms
9,436 KB |
testcase_37 | AC | 22 ms
6,940 KB |
testcase_38 | AC | 186 ms
7,620 KB |
testcase_39 | AC | 50 ms
7,488 KB |
testcase_40 | AC | 3 ms
6,944 KB |
ソースコード
/* -*- coding: utf-8 -*- * * 1479.cc: No.1479 Matrix Eraser - yukicoder */ #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<iostream> #include<string> #include<vector> #include<map> #include<set> #include<stack> #include<list> #include<queue> #include<deque> #include<algorithm> #include<numeric> #include<utility> #include<complex> #include<functional> using namespace std; /* constant */ const int MAX_H = 500; const int MAX_W = 500; const int MAX_N = MAX_H * MAX_W; const int MAX_M = MAX_H + MAX_W; /* typedef */ typedef vector<int> vi; typedef vector<bool> vb; typedef map<int,int> mii; struct Elm { int a, i, j; Elm() {} Elm(int _a, int _i, int _j): a(_a), i(_i), j(_j) {} bool operator<(const Elm &e) const { return a < e.a; } bool operator>(const Elm &e) const { return a > e.a; } }; /* global variables */ int as[MAX_H][MAX_W]; Elm es[MAX_N]; mii hls, vls; vi nbrs[MAX_M]; /* subroutines */ bool max_match_rec(const vi *nbrs, int u, vi &matches, vb &visited) { if (u < 0) return true; const vi &nbru = nbrs[u]; for (vi::const_iterator vit = nbru.begin(); vit != nbru.end(); vit++) { const int &v = *vit; if (! visited[v]) { visited[v] = true; if (max_match_rec(nbrs, matches[v], matches, visited)) { matches[u] = v; matches[v] = u; return true; } } } return false; } int max_match(const int n, int l, const vi *nbrs) { vi matches(n, -1); int count = 0; for (int u = 0; u < l; u++) { vb visited(n, false); if (max_match_rec(nbrs, u, matches, visited)) count++; } return count; } /* main */ int main() { int h, w; scanf("%d%d", &h, &w); int n = 0; for (int i = 0; i < h; i++) for (int j = 0; j < w; j++) { scanf("%d", as[i] + j); if (as[i][j] > 0) es[n++] = Elm(as[i][j], i, j); } sort(es, es + n, greater<Elm>()); int sum = 0; for (int k0 = 0; k0 < n;) { int k1 = k0 + 1; while (k1 < n && es[k0].a == es[k1].a) k1++; if (k0 + 1 == k1) sum++; else { hls.clear(), vls.clear(); int hm = 0, vm = 0; for (int k = k0; k < k1; k++) { mii::iterator mit0 = hls.find(es[k].i); if (mit0 == hls.end()) hls[es[k].i] = hm++; mii::iterator mit1 = vls.find(es[k].j); if (mit1 == vls.end()) vls[es[k].j] = vm++; } int m = hm + vm; for (int i = 0; i < m; i++) nbrs[i].clear(); for (int k = k0; k < k1; k++) { int ki = hls[es[k].i], kj = vls[es[k].j] + hm; nbrs[ki].push_back(kj); nbrs[kj].push_back(ki); } int cnt = max_match(m, hm, nbrs); //printf("%d: %d,%d\n", es[k0].a, k1 - k0, cnt); sum += cnt; } k0 = k1; } printf("%d\n", sum); return 0; }