結果
問題 |
No.11 カードマッチ
|
ユーザー |
|
提出日時 | 2017-12-10 17:23:26 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 579 bytes |
コンパイル時間 | 1,522 ms |
コンパイル使用メモリ | 170,968 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-30 11:18:46 |
合計ジャッジ時間 | 2,350 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 9 WA * 10 |
ソースコード
#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() { int w, h; LL 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; }