結果

問題 No.11 カードマッチ
ユーザー togari_takamototogari_takamoto
提出日時 2015-12-13 07:33:09
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 24 ms / 5,000 ms
コード長 788 bytes
コンパイル時間 847 ms
コンパイル使用メモリ 97,772 KB
実行使用メモリ 26,624 KB
最終ジャッジ日時 2024-10-11 19:57:39
合計ジャッジ時間 1,661 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 17 ms
20,480 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 24 ms
26,624 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 11 ms
13,696 KB
testcase_09 AC 23 ms
26,496 KB
testcase_10 AC 17 ms
20,736 KB
testcase_11 AC 15 ms
17,792 KB
testcase_12 AC 15 ms
18,048 KB
testcase_13 AC 12 ms
14,720 KB
testcase_14 AC 13 ms
15,872 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <array>
#include <algorithm>
#include <string>
#include <map>
#include <queue>
#include <iomanip>
#include <numeric>
#include <memory>
#include <limits.h>
#include <set>
#include <cassert>
#include <cmath>
#include <bitset>
#include <functional>
#include <limits>
using namespace std;

typedef long long ll;
typedef unsigned long long ull;

#define REP(i,n) for(ll i=0; i<(n); ++i)
#define TEN(x) ((ll)1e##x)
#define ALL(v) (v).begin(), (v).end()

int main(){
	ll w,h,n;
	cin >> w >> h >> n;
	vector<vector<ll>> wh(w);
	set<ll> k_set;
	REP(i, n) {
		ll s, k;
		cin >> s >> k; s--; k--;
		wh[s].push_back(k);
		k_set.insert(k);
	}

	ll c = 0;
	REP(i, w) c += (wh[i].empty()) ? k_set.size() : h - wh[i].size();
	cout << c << endl;
	return 0;
}
0