結果

問題 No.1479 Matrix Eraser
ユーザー 沙耶花沙耶花
提出日時 2021-04-16 20:23:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 595 bytes
コンパイル時間 5,047 ms
コンパイル使用メモリ 268,860 KB
実行使用メモリ 74,624 KB
最終ジャッジ日時 2024-07-02 22:32:49
合計ジャッジ時間 13,398 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
50,048 KB
testcase_01 AC 37 ms
50,176 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 70 ms
53,028 KB
testcase_08 AC 92 ms
55,040 KB
testcase_09 AC 163 ms
60,756 KB
testcase_10 AC 305 ms
70,272 KB
testcase_11 AC 191 ms
62,568 KB
testcase_12 AC 77 ms
53,780 KB
testcase_13 AC 93 ms
55,168 KB
testcase_14 AC 81 ms
53,948 KB
testcase_15 AC 46 ms
51,064 KB
testcase_16 AC 86 ms
54,528 KB
testcase_17 AC 373 ms
74,624 KB
testcase_18 AC 372 ms
74,496 KB
testcase_19 AC 365 ms
74,624 KB
testcase_20 AC 369 ms
74,624 KB
testcase_21 AC 372 ms
74,624 KB
testcase_22 AC 375 ms
74,624 KB
testcase_23 AC 370 ms
74,624 KB
testcase_24 AC 377 ms
74,624 KB
testcase_25 AC 369 ms
74,496 KB
testcase_26 AC 377 ms
74,512 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 98 ms
51,200 KB
testcase_33 AC 97 ms
51,380 KB
testcase_34 AC 96 ms
51,328 KB
testcase_35 AC 98 ms
51,328 KB
testcase_36 AC 96 ms
51,172 KB
testcase_37 AC 96 ms
51,328 KB
testcase_38 AC 327 ms
74,536 KB
testcase_39 AC 262 ms
74,620 KB
testcase_40 AC 37 ms
50,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000001

int main(){
	
	int H,W;
	cin>>H>>W;
	
	vector<vector<int>> A(H,vector<int>(W));
	
	vector<set<int>> Sh(500001),Sw(500001);
	
	rep(i,H){
		rep(j,W){
			cin>>A[i][j];
			
			Sh[A[i][j]].insert(i);
			Sw[A[i][j]].insert(j);
			
		}
	}
	
	int ans = 0;
	
	rep(i,Sh.size()){
		if(i==0)continue;
		ans += min((int)Sh[i].size(),(int)Sw[i].size());
	}
	
	cout<<ans<<endl;
	
    return 0;
}
0