結果

問題 No.11 カードマッチ
ユーザー umaumaxumaumax
提出日時 2017-05-07 17:33:46
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 601 ms / 5,000 ms
コード長 598 bytes
コンパイル時間 690 ms
コンパイル使用メモリ 67,080 KB
実行使用メモリ 97,152 KB
最終ジャッジ日時 2024-09-14 14:50:13
合計ジャッジ時間 5,071 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 221 ms
43,136 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 601 ms
97,024 KB
testcase_07 AC 171 ms
35,072 KB
testcase_08 AC 249 ms
51,840 KB
testcase_09 AC 551 ms
97,152 KB
testcase_10 AC 431 ms
78,848 KB
testcase_11 AC 381 ms
71,168 KB
testcase_12 AC 406 ms
74,496 KB
testcase_13 AC 370 ms
68,864 KB
testcase_14 AC 185 ms
39,040 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 14 ms
6,944 KB
testcase_17 AC 15 ms
7,040 KB
testcase_18 AC 15 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>

using namespace std;

int main(int argc, const char* argv[])
{
	int W, H;
	int N;
	cin >> W >> H >> N;
	map<int, bool> wm;
	map<int, bool> hm;
	uint64_t cnt = 0;
	int S[N];
	int K[N];
	for (int i				 = 0; i < N; i++) cin >> S[i] >> K[i];
	for (auto&& s : S) wm[s] = true;
	for (auto&& k : K) hm[k] = true;
	uint64_t hms			 = hm.size();
	uint64_t wms			 = wm.size();
	for (int i = 1; i <= W; i++)
		if (wm[i]) cnt += H - hms;
	for (int i = 1; i <= H; i++)
		if (hm[i]) cnt += W - wms;
	//	重複削除分
	cnt += hms * wms - N;
	cout << cnt << endl;
	return 0;
}
0