結果

問題 No.1479 Matrix Eraser
ユーザー SSRSSSRS
提出日時 2021-04-16 20:21:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 578 ms / 3,000 ms
コード長 1,474 bytes
コンパイル時間 2,403 ms
コンパイル使用メモリ 193,880 KB
実行使用メモリ 31,872 KB
最終ジャッジ日時 2024-07-02 22:28:59
合計ジャッジ時間 13,079 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 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 52 ms
6,656 KB
testcase_08 AC 92 ms
8,960 KB
testcase_09 AC 224 ms
14,592 KB
testcase_10 AC 462 ms
22,784 KB
testcase_11 AC 277 ms
16,256 KB
testcase_12 AC 68 ms
7,552 KB
testcase_13 AC 95 ms
8,832 KB
testcase_14 AC 71 ms
7,680 KB
testcase_15 AC 15 ms
5,376 KB
testcase_16 AC 80 ms
8,320 KB
testcase_17 AC 578 ms
25,984 KB
testcase_18 AC 570 ms
26,240 KB
testcase_19 AC 563 ms
25,984 KB
testcase_20 AC 569 ms
26,112 KB
testcase_21 AC 552 ms
26,240 KB
testcase_22 AC 567 ms
26,112 KB
testcase_23 AC 548 ms
25,984 KB
testcase_24 AC 567 ms
26,240 KB
testcase_25 AC 569 ms
25,984 KB
testcase_26 AC 556 ms
25,984 KB
testcase_27 AC 163 ms
7,424 KB
testcase_28 AC 163 ms
7,168 KB
testcase_29 AC 162 ms
7,296 KB
testcase_30 AC 163 ms
7,296 KB
testcase_31 AC 164 ms
7,424 KB
testcase_32 AC 95 ms
14,588 KB
testcase_33 AC 96 ms
14,732 KB
testcase_34 AC 96 ms
14,744 KB
testcase_35 AC 96 ms
14,652 KB
testcase_36 AC 96 ms
14,616 KB
testcase_37 AC 39 ms
5,376 KB
testcase_38 AC 178 ms
6,528 KB
testcase_39 AC 439 ms
31,872 KB
testcase_40 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/maxflow>
using namespace std;
using namespace atcoder;
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];
    }
  }
  map<int, vector<pair<int, int>>> mp;
  for (int i = 0; i < H; i++){
    for (int j = 0; j < W; j++){
      if (A[i][j] > 0){
        mp[A[i][j]].push_back(make_pair(i, j));
      }
    }
  }
  int ans = 0;
  for (auto P : mp){
    int cnt = P.second.size();
    vector<int> X, Y;
    for (int i = 0; i < cnt; i++){
      X.push_back(P.second[i].first);
      Y.push_back(P.second[i].second);
    }
    sort(X.begin(), X.end());
    X.erase(unique(X.begin(), X.end()), X.end());
    sort(Y.begin(), Y.end());
    Y.erase(unique(Y.begin(), Y.end()), Y.end());
    int Xcnt = X.size(), Ycnt = Y.size();
    vector<int> x(cnt), y(cnt);
    for (int i = 0; i < cnt; i++){
      x[i] = lower_bound(X.begin(), X.end(), P.second[i].first) - X.begin();
      y[i] = lower_bound(Y.begin(), Y.end(), P.second[i].second) - Y.begin();
    }
    mf_graph<int> G(Xcnt + Ycnt + 2);
    for (int i = 0; i < Xcnt; i++){
      G.add_edge(Xcnt + Ycnt, i, 1);
    }
    for (int i = 0; i < Ycnt; i++){
      G.add_edge(Xcnt + i, Xcnt + Ycnt + 1, 1);
    }
    for (int i = 0; i < cnt; i++){
      G.add_edge(x[i], Xcnt + y[i], 1);
    }
    ans += G.flow(Xcnt + Ycnt, Xcnt + Ycnt + 1);
  }
  cout << ans << endl;
}
0