結果
問題 | No.11 カードマッチ |
ユーザー | sggkshio |
提出日時 | 2016-11-13 23:39:35 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 22 ms / 5,000 ms |
コード長 | 672 bytes |
コンパイル時間 | 910 ms |
コンパイル使用メモリ | 87,496 KB |
実行使用メモリ | 50,816 KB |
最終ジャッジ日時 | 2024-11-25 22:07:20 |
合計ジャッジ時間 | 1,962 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 19 ms
50,304 KB |
testcase_01 | AC | 18 ms
50,304 KB |
testcase_02 | AC | 18 ms
50,176 KB |
testcase_03 | AC | 17 ms
50,176 KB |
testcase_04 | AC | 22 ms
50,304 KB |
testcase_05 | AC | 18 ms
50,176 KB |
testcase_06 | AC | 22 ms
50,176 KB |
testcase_07 | AC | 18 ms
50,560 KB |
testcase_08 | AC | 22 ms
50,540 KB |
testcase_09 | AC | 22 ms
50,816 KB |
testcase_10 | AC | 21 ms
50,432 KB |
testcase_11 | AC | 21 ms
50,432 KB |
testcase_12 | AC | 22 ms
50,332 KB |
testcase_13 | AC | 21 ms
50,432 KB |
testcase_14 | AC | 21 ms
50,352 KB |
testcase_15 | AC | 19 ms
50,244 KB |
testcase_16 | AC | 19 ms
50,312 KB |
testcase_17 | AC | 19 ms
50,304 KB |
testcase_18 | AC | 18 ms
50,120 KB |
ソースコード
#define _USE_MATH_DEFINES #include<stdio.h> #include<string> #include<iostream> #include<cctype> #include<cstdio> #include<vector> #include<stack> #include<queue> #include <algorithm> #include<math.h> #include<set> #include<map> #include<iomanip> //#include<bits/stdc++.h> using namespace std; set<int>x[1000005]; bool f[1000005]; int main() { int w,h,n; cin>>w>>h>>n; int y=0; for(int i=0;i<n;i++){ int a,b; cin>>a>>b; if(!f[b])y++; f[b]=1; x[a].insert(b); } long long int res=0; for(int i=1;i<=w;i++){ if(x[i].size())res+=h-x[i].size(); if(!x[i].size())res+=y; //cout<<res<<endl; } cout<<res<<endl; return 0; }