結果

問題 No.1479 Matrix Eraser
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-09-04 06:49:03
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 298 ms / 3,000 ms
コード長 1,037 bytes
コンパイル時間 6,351 ms
コンパイル使用メモリ 324,712 KB
実行使用メモリ 23,636 KB
最終ジャッジ日時 2024-06-22 06:11:05
合計ジャッジ時間 13,344 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
14,976 KB
testcase_01 AC 6 ms
14,972 KB
testcase_02 AC 6 ms
14,976 KB
testcase_03 AC 6 ms
15,116 KB
testcase_04 AC 6 ms
14,996 KB
testcase_05 AC 6 ms
14,916 KB
testcase_06 AC 7 ms
15,056 KB
testcase_07 AC 38 ms
15,916 KB
testcase_08 AC 62 ms
16,552 KB
testcase_09 AC 129 ms
17,988 KB
testcase_10 AC 242 ms
20,312 KB
testcase_11 AC 147 ms
18,568 KB
testcase_12 AC 50 ms
16,208 KB
testcase_13 AC 64 ms
16,464 KB
testcase_14 AC 52 ms
16,148 KB
testcase_15 AC 16 ms
15,256 KB
testcase_16 AC 55 ms
16,260 KB
testcase_17 AC 279 ms
21,188 KB
testcase_18 AC 283 ms
21,324 KB
testcase_19 AC 293 ms
21,280 KB
testcase_20 AC 279 ms
21,212 KB
testcase_21 AC 291 ms
21,296 KB
testcase_22 AC 294 ms
21,320 KB
testcase_23 AC 298 ms
21,300 KB
testcase_24 AC 290 ms
21,292 KB
testcase_25 AC 296 ms
21,392 KB
testcase_26 AC 297 ms
21,296 KB
testcase_27 AC 120 ms
18,136 KB
testcase_28 AC 121 ms
18,112 KB
testcase_29 AC 125 ms
18,068 KB
testcase_30 AC 127 ms
18,192 KB
testcase_31 AC 127 ms
18,320 KB
testcase_32 AC 68 ms
23,516 KB
testcase_33 AC 65 ms
23,408 KB
testcase_34 AC 67 ms
23,384 KB
testcase_35 AC 66 ms
23,452 KB
testcase_36 AC 67 ms
23,636 KB
testcase_37 AC 39 ms
14,932 KB
testcase_38 AC 157 ms
17,072 KB
testcase_39 AC 278 ms
22,736 KB
testcase_40 AC 8 ms
15,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint=modint998244353; //1000000007;
using ll=long long;
using pp=pair<int,int>;
#define sr string 
#define vc vector
#define fi first
#define se second
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main(){
  int h,w;cin>>h>>w;
  vc v(5e5+1,vc<pp>(0));
  rep(i,h)rep(j,w){
    int a;cin>>a;
    if(a)v[a].pb({i,j});
  }
  int ans=0;
  for(auto vx:v){
    if(!vx.size())continue;
    int n=vx.size();
    unordered_map<int,int>hm,wm;
    int ch=0,cw=0;
    for(auto [a,b]:vx)hm[a]=0,wm[b]=0;
    for(auto& [a,b]:hm)b=ch++;
    for(auto&[a,b]:wm)b=cw++;
    mf_graph<int>g(ch+cw+2);
    int sv=ch+cw; int gv=sv+1;
    for(auto [a,b]:vx)g.add_edge(hm[a],ch+wm[b],2);
    rep(i,ch)g.add_edge(sv,i,1);
    rep(i,cw)g.add_edge(ch+i,gv,1);
    int res=g.flow(sv,gv);
    ans+=res;
    //cout<<res<<' ';
  }
  cout<<ans;
}
    
0