#include #include using namespace std; int h, w, a, i, j, res; unordered_map>> mp; int main() { int h, w; cin >> h >> w; for(i = 0; i < h; i++) { for(j = 0; j < w; j++) { cin >> a; if(a) mp[a].emplace_back(i, j); } } for(auto &[key, vec] : mp) { unordered_map ver, hor; int ver_idx = 0, hor_idx = 0; for(auto &[x, y] : vec) { if(!ver.count(x)) ver[x] = ver_idx++; if(!hor.count(y)) hor[y] = hor_idx++; } atcoder::mf_graph mf(ver_idx + hor_idx + 2); const int s = ver_idx + hor_idx, t = ver_idx + hor_idx + 1; for(int i = 0; i < ver_idx; i++) mf.add_edge(s, i, 1); for(int i = ver_idx; i < ver_idx + hor_idx; i++) mf.add_edge(i, t, 1); for(auto &[x, y] : vec) mf.add_edge(ver[x], ver_idx + hor[y], 1); res += mf.flow(s, t); } cout << res << '\n'; return 0; }