結果

問題 No.1479 Matrix Eraser
ユーザー KKT89KKT89
提出日時 2021-04-16 21:00:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 530 ms / 3,000 ms
コード長 1,542 bytes
コンパイル時間 6,006 ms
コンパイル使用メモリ 299,964 KB
実行使用メモリ 31,872 KB
最終ジャッジ日時 2024-07-02 23:47:25
合計ジャッジ時間 15,727 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 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 46 ms
6,912 KB
testcase_08 AC 83 ms
9,088 KB
testcase_09 AC 206 ms
14,592 KB
testcase_10 AC 417 ms
22,784 KB
testcase_11 AC 245 ms
16,384 KB
testcase_12 AC 60 ms
7,680 KB
testcase_13 AC 79 ms
8,832 KB
testcase_14 AC 58 ms
7,936 KB
testcase_15 AC 12 ms
5,376 KB
testcase_16 AC 68 ms
8,192 KB
testcase_17 AC 519 ms
26,112 KB
testcase_18 AC 522 ms
26,112 KB
testcase_19 AC 523 ms
26,112 KB
testcase_20 AC 515 ms
25,984 KB
testcase_21 AC 521 ms
25,984 KB
testcase_22 AC 521 ms
26,112 KB
testcase_23 AC 519 ms
26,240 KB
testcase_24 AC 519 ms
25,984 KB
testcase_25 AC 523 ms
26,240 KB
testcase_26 AC 530 ms
26,112 KB
testcase_27 AC 132 ms
7,552 KB
testcase_28 AC 133 ms
7,424 KB
testcase_29 AC 132 ms
7,424 KB
testcase_30 AC 134 ms
7,552 KB
testcase_31 AC 132 ms
7,424 KB
testcase_32 AC 66 ms
13,912 KB
testcase_33 AC 65 ms
13,652 KB
testcase_34 AC 66 ms
13,648 KB
testcase_35 AC 66 ms
13,776 KB
testcase_36 AC 67 ms
13,872 KB
testcase_37 AC 21 ms
8,396 KB
testcase_38 AC 142 ms
6,400 KB
testcase_39 AC 373 ms
31,872 KB
testcase_40 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
typedef long long int ll;
typedef unsigned long long ull;

mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
ll myRand(ll B) {
    return (ull)rng() % B;
}

// N使ってる状態 0
// M使ってる状態 1



int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n,m; cin >> n >> m;
    vector<vector<int>> a(n,vector<int>(m));
    map<int,vector<pair<int,int>>> mp;
    for(int i=0;i<n;i++){
        for(int j=0;j<m;j++){
            cin >> a[i][j];
            mp[a[i][j]].push_back({i,j});
        }
    }
    int res=0;
    for(auto p:mp){
        if(p.first==0)continue;
        vector<int> v,vv;
        for(auto pp:p.second){
            v.push_back(pp.first);
            vv.push_back(pp.second);
        }
        sort(v.begin(), v.end());
        sort(vv.begin(), vv.end());
        v.erase(unique(v.begin(), v.end()),v.end());
        vv.erase(unique(vv.begin(), vv.end()),vv.end());
        int N=v.size(),M=vv.size();
        mf_graph<int> g(N+M+2);
        int S=N+M,T=N+M+1;
        for(int i=0;i<N;i++){
            g.add_edge(i,T,1);
        }
        for(int i=0;i<M;i++){
            g.add_edge(S,N+i,1);
        }
        for(auto pp:p.second){
            g.add_edge(N+(lower_bound(vv.begin(), vv.end(),pp.second)-vv.begin()),(lower_bound(v.begin(), v.end(),pp.first)-v.begin()),1e9);
        }
        res+=g.flow(S,T);
    }
    cout << res << endl;
}
0