結果

問題 No.1479 Matrix Eraser
ユーザー jutamajutama
提出日時 2021-04-16 21:26:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,186 bytes
コンパイル時間 3,903 ms
コンパイル使用メモリ 177,000 KB
実行使用メモリ 69,760 KB
最終ジャッジ日時 2024-07-03 00:45:35
合計ジャッジ時間 15,058 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 49 ms
11,008 KB
testcase_08 AC 112 ms
16,256 KB
testcase_09 AC 276 ms
29,184 KB
testcase_10 AC 583 ms
48,128 KB
testcase_11 AC 340 ms
33,408 KB
testcase_12 AC 70 ms
13,056 KB
testcase_13 AC 111 ms
16,384 KB
testcase_14 AC 82 ms
13,440 KB
testcase_15 AC 13 ms
5,632 KB
testcase_16 AC 97 ms
14,848 KB
testcase_17 AC 729 ms
55,552 KB
testcase_18 AC 718 ms
55,808 KB
testcase_19 AC 730 ms
55,808 KB
testcase_20 AC 722 ms
55,680 KB
testcase_21 AC 728 ms
55,680 KB
testcase_22 AC 699 ms
55,552 KB
testcase_23 AC 711 ms
55,680 KB
testcase_24 AC 724 ms
55,680 KB
testcase_25 AC 702 ms
55,680 KB
testcase_26 AC 706 ms
55,808 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 20 ms
5,376 KB
testcase_33 AC 20 ms
5,376 KB
testcase_34 AC 20 ms
5,376 KB
testcase_35 AC 21 ms
5,376 KB
testcase_36 AC 20 ms
5,376 KB
testcase_37 AC 18 ms
5,376 KB
testcase_38 AC 55 ms
5,376 KB
testcase_39 AC 398 ms
69,760 KB
testcase_40 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/all>
#include <bitset>
#include <fstream>
#include <functional>
#include <iostream>
#include <iomanip>
#include <limits>
#include <map>
#include <math.h>
#include <queue>
#include <set>
#include <stack>
#include <stdio.h>
#include <stdlib.h>
#include <unordered_map>
#include <unordered_set>
#include <vector>
using namespace std;
using namespace atcoder;

//* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ *//

void input() {
    
    
}


void solve() {
    
    
    int H, W; cin >> H >> W;
    set<int> As;
    map<int, bitset<500>> Ac, Ar;
    for(int i = 0; i < H; i++) {
        for(int j = 0; j < W; j++) {
            int A; cin >> A;
            As.insert(A);
            Ac[A].set(i);
            Ar[A].set(j);
        }
    }
    
    int ans = 0;
    for(auto a : As) {
        if(a == 0) continue;
        ans += min(Ac[a].count(), Ar[a].count());
    }
    cout << ans << endl;
    
    
    
    
    
}

//* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ *//

int main() {
    
    std::ifstream in("input.txt");
    std::cin.rdbuf(in.rdbuf());
    std::cin.tie(0);
    ios::sync_with_stdio(false);
    
    input();
    solve();
    
    return 0;
}
0