結果

問題 No.1479 Matrix Eraser
ユーザー startcppstartcpp
提出日時 2021-04-16 20:41:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 497 bytes
コンパイル時間 677 ms
コンパイル使用メモリ 74,880 KB
実行使用メモリ 74,752 KB
最終ジャッジ日時 2024-07-02 23:10:55
合計ジャッジ時間 7,525 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
50,304 KB
testcase_01 AC 29 ms
50,176 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 46 ms
53,852 KB
testcase_08 AC 64 ms
55,680 KB
testcase_09 AC 116 ms
61,184 KB
testcase_10 AC 217 ms
70,496 KB
testcase_11 AC 136 ms
62,976 KB
testcase_12 AC 53 ms
53,980 KB
testcase_13 AC 65 ms
55,516 KB
testcase_14 AC 55 ms
54,144 KB
testcase_15 AC 30 ms
51,072 KB
testcase_16 AC 59 ms
54,800 KB
testcase_17 AC 262 ms
74,624 KB
testcase_18 AC 261 ms
74,740 KB
testcase_19 AC 260 ms
74,724 KB
testcase_20 AC 261 ms
74,724 KB
testcase_21 AC 260 ms
74,624 KB
testcase_22 AC 263 ms
74,720 KB
testcase_23 AC 265 ms
74,720 KB
testcase_24 AC 266 ms
74,716 KB
testcase_25 AC 263 ms
74,752 KB
testcase_26 AC 264 ms
74,716 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 83 ms
51,292 KB
testcase_33 AC 80 ms
51,416 KB
testcase_34 AC 79 ms
51,232 KB
testcase_35 AC 80 ms
51,420 KB
testcase_36 AC 78 ms
51,416 KB
testcase_37 AC 79 ms
51,292 KB
testcase_38 AC 263 ms
74,752 KB
testcase_39 AC 196 ms
74,716 KB
testcase_40 AC 23 ms
50,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <set>
#define rep(i, n) for(i = 0; i < n; i++)
using namespace std;

int h, w;
int a[500][500];
set<int> rows[500001];
set<int> cols[500001];

signed main() {
	int i, j;
	
	cin >> h >> w;
	rep(i, h) {
		rep(j, w) {
			cin >> a[i][j];
			rows[a[i][j]].insert(i);
			cols[a[i][j]].insert(j);
		}
	}
	
	int jyokai = 0;
	rep(i, 500001) {
		if (i == 0) continue;
		jyokai += min(rows[i].size(), cols[i].size());
	}
	cout << jyokai << endl;
	return 0;
}
0