結果
問題 | No.1479 Matrix Eraser |
ユーザー | outline |
提出日時 | 2021-04-18 15:29:52 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,575 bytes |
コンパイル時間 | 1,874 ms |
コンパイル使用メモリ | 159,208 KB |
実行使用メモリ | 18,892 KB |
最終ジャッジ日時 | 2024-07-04 04:37:08 |
合計ジャッジ時間 | 44,513 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 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 | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 332 ms
5,376 KB |
testcase_08 | AC | 551 ms
6,400 KB |
testcase_09 | AC | 1,070 ms
9,296 KB |
testcase_10 | AC | 2,384 ms
14,116 KB |
testcase_11 | AC | 1,154 ms
10,344 KB |
testcase_12 | AC | 122 ms
5,504 KB |
testcase_13 | AC | 330 ms
6,144 KB |
testcase_14 | AC | 142 ms
5,632 KB |
testcase_15 | AC | 18 ms
5,376 KB |
testcase_16 | AC | 269 ms
6,016 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 | 68 ms
8,136 KB |
testcase_28 | AC | 67 ms
8,268 KB |
testcase_29 | AC | 68 ms
8,140 KB |
testcase_30 | AC | 68 ms
8,272 KB |
testcase_31 | AC | 66 ms
8,392 KB |
testcase_32 | AC | 28 ms
7,880 KB |
testcase_33 | AC | 29 ms
7,784 KB |
testcase_34 | AC | 28 ms
7,756 KB |
testcase_35 | AC | 28 ms
7,884 KB |
testcase_36 | AC | 28 ms
8,012 KB |
testcase_37 | AC | 15 ms
5,376 KB |
testcase_38 | AC | 61 ms
7,116 KB |
testcase_39 | TLE | - |
testcase_40 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <queue> #include <string> #include <map> #include <set> #include <stack> #include <tuple> #include <deque> #include <array> #include <numeric> #include <bitset> #include <iomanip> #include <cassert> #include <chrono> #include <random> #include <limits> #include <iterator> #include <functional> #include <sstream> #include <fstream> #include <complex> #include <cstring> #include <unordered_map> #include <unordered_set> using namespace std; using ll = long long; constexpr int INF = 1001001001; constexpr int mod = 1000000007; // constexpr int mod = 998244353; template<class T> inline bool chmax(T& x, T y){ if(x < y){ x = y; return true; } return false; } template<class T> inline bool chmin(T& x, T y){ if(x > y){ x = y; return true; } return false; } struct HopcroftKarp { vector<vector<int>> graph; vector<int> dist, match; vector<bool> used, visited; HopcroftKarp(int n, int m) : graph(n), match(m, -1), used(n) {} void add_edge(int u, int v){ graph[u].emplace_back(v); } void bfs(){ dist.assign(graph.size(), -1); queue<int> que; for(int i = 0; i < (int)graph.size(); ++i){ if(!used[i]){ que.emplace(i); dist[i] = 0; } } while(!que.empty()){ int from = que.front(); que.pop(); for(auto& to : graph[from]){ int v = match[to]; if(v >= 0 && dist[v] == -1){ dist[v] = dist[from] + 1; que.emplace(v); } } } } bool dfs(int s){ visited[s] = true; for(auto& u : graph[s]){ int v = match[u]; if(v < 0 || (!visited[v] && dist[v] == dist[s] + 1 && dfs(v))){ match[u] = s; used[s] = true; return true; } } return false; } int bipartite_matching(){ int ret = 0; while(true){ bfs(); visited.assign(graph.size(), false); int flow = 0; for(int i = 0; i < (int)graph.size(); ++i){ if(!used[i] && dfs(i)) ++flow; } if(flow == 0) return ret; ret += flow; } } void output(){ for(int i = 0; i < (int)match.size(); ++i){ if(~match[i]){ cout << match[i] << '-' << i << '\n'; } } } }; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int H, W; cin >> H >> W; vector A(H, vector<int>(W)); vector<int> vals; for(int i = 0; i < H; ++i){ for(int j = 0; j < W; ++j){ cin >> A[i][j]; if(A[i][j]) vals.emplace_back(A[i][j]); } } sort(begin(vals), end(vals)); vals.erase(unique(begin(vals), end(vals)), end(vals)); int sz = vals.size(); vector<vector<pair<int, int>>> ps(sz); for(int i = 0; i < H; ++i){ for(int j = 0; j < W; ++j){ if(!A[i][j]) continue; int k = lower_bound(begin(vals), end(vals), A[i][j]) - begin(vals); ps[k].emplace_back(i, j); } } int ans = 0; for(int i = 0; i < sz; ++i){ HopcroftKarp g(H, W); for(auto& [x, y] : ps[i]) g.add_edge(x, y); ans += g.bipartite_matching(); } cout << ans << endl; return 0; }