結果

問題 No.1479 Matrix Eraser
ユーザー HaaHaa
提出日時 2021-04-16 20:38:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 852 bytes
コンパイル時間 1,964 ms
コンパイル使用メモリ 183,632 KB
実行使用メモリ 63,744 KB
最終ジャッジ日時 2024-07-02 23:03:10
合計ジャッジ時間 11,943 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 37 ms
10,240 KB
testcase_08 AC 71 ms
15,104 KB
testcase_09 AC 180 ms
27,904 KB
testcase_10 AC 430 ms
47,872 KB
testcase_11 AC 228 ms
32,128 KB
testcase_12 AC 53 ms
12,160 KB
testcase_13 AC 75 ms
15,232 KB
testcase_14 AC 53 ms
12,544 KB
testcase_15 AC 11 ms
5,376 KB
testcase_16 AC 63 ms
13,696 KB
testcase_17 AC 552 ms
56,320 KB
testcase_18 AC 535 ms
56,448 KB
testcase_19 AC 543 ms
56,320 KB
testcase_20 AC 547 ms
56,260 KB
testcase_21 AC 546 ms
56,320 KB
testcase_22 AC 556 ms
56,320 KB
testcase_23 AC 538 ms
56,320 KB
testcase_24 AC 545 ms
56,320 KB
testcase_25 AC 537 ms
56,320 KB
testcase_26 AC 542 ms
56,320 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 64 ms
5,504 KB
testcase_33 AC 63 ms
5,504 KB
testcase_34 AC 63 ms
5,504 KB
testcase_35 AC 63 ms
5,632 KB
testcase_36 AC 63 ms
5,504 KB
testcase_37 AC 40 ms
5,504 KB
testcase_38 AC 303 ms
28,928 KB
testcase_39 AC 263 ms
63,744 KB
testcase_40 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll,ll> P;
typedef vector<ll> VI;
typedef vector<VI> VVI;
#define REP(i,n) for(ll i=0;i<(n);i++)
#define ALL(v) v.begin(),v.end()
constexpr ll MOD=998244353;
constexpr ll INF=2e18;

int main(){
    int h, w; cin >> h >> w;
    VVI a(h,VI(w));
    REP(i,h)REP(j,w) cin >> a[i][j];
    map<int,int> mp; int k=1;
    REP(i,h)REP(j,w){
        if(a[i][j]==0)
            continue;
        if(mp[a[i][j]]==0){
            mp[a[i][j]]=k;
            k++;
        }
    }
    vector<set<int>> x(k), y(k);
    REP(i,h)REP(j,w){
        if(a[i][j]==0)
            continue;
        int p=mp[a[i][j]]-1;
        x[p].insert(i);
        y[p].insert(j);
    }
    int ans=0;
    REP(i,k-1){
        ans+=min(x[i].size(),y[i].size());
    }
    cout << ans << endl;
    return 0;
}
0