結果
| 問題 | No.11 カードマッチ | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2017-12-10 17:32:39 | 
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 3 ms / 5,000 ms | 
| コード長 | 574 bytes | 
| コンパイル時間 | 1,564 ms | 
| コンパイル使用メモリ | 173,004 KB | 
| 実行使用メモリ | 6,824 KB | 
| 最終ジャッジ日時 | 2024-11-30 11:18:44 | 
| 合計ジャッジ時間 | 2,311 ms | 
| ジャッジサーバーID (参考情報) | judge3 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 19 | 
ソースコード
#include <bits/stdc++.h>
#define FOR(i,a,b) for(int i = (a); i < (b); ++i)
#define REP(i,n) FOR(i,0,n)
#define SZ(n) (int)(n).size()
#define ALL(n) (n).begin(), (n).end()
#define MOD 1000000007
#define INF 100000000
using namespace std;
typedef long long LL;
typedef vector<int> VI;
typedef pair<int, int> PI;
int main() {
	LL w, h, n;
	cin >> w >> h >> n;
	LL ans = w * h - n;
	set<int> ss, ks;
	for (LL i = 0; i < n; ++i) {
		int s, k;
		cin >> s >> k;
		ss.insert(s);
		ks.insert(k);
	}
	ans = ans - (w - ss.size()) * (h - ks.size());
	cout << ans << endl;
	return 0;
}
            
            
            
        