結果
| 問題 | No.11 カードマッチ | 
| コンテスト | |
| ユーザー |  TAKEKATSU | 
| 提出日時 | 2019-03-25 15:35:44 | 
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 7 ms / 5,000 ms | 
| コード長 | 1,169 bytes | 
| コンパイル時間 | 1,647 ms | 
| コンパイル使用メモリ | 173,880 KB | 
| 実行使用メモリ | 11,008 KB | 
| 最終ジャッジ日時 | 2024-10-08 07:00:15 | 
| 合計ジャッジ時間 | 2,774 ms | 
| ジャッジサーバーID (参考情報) | judge3 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 19 | 
コンパイルメッセージ
main.cpp: In function 'long long int gcd(long long int, long long int)':
main.cpp:30:11: warning: control reaches end of non-void function [-Wreturn-type]
   30 |   else gcd(b, a%b);
      |        ~~~^~~~~~~~
            
            ソースコード
#include "bits/stdc++.h"
using namespace std;
#define ll long long
#define vi  vector<int>
#define vvi vector<vi>
#define pi  pair<int,int>
#define mp  make_pair
#define pb  push_back
#define MOD 1e9 + 7
#define PAI  3.1415
#define all(x) (x).begin(),(x).end()
#define chmax(x,y) x = max(x,y)
#define chmin(x,y) x = min(x,y)
#define pr(x) cout << x << endl
#define Endl endl
#define rep(i,n) for(int i = 0 ; i < n; i++)
const int dx[4] = {1,0,-1,0};
const int dy[4] = {0,1,0,-1};
const int ddx[8] = {-1,0,1,-1,1,-1,0,1};
const int ddy[8] = {-1,-1,-1,0,0,1,1,1};
const int inf = 99999999;
const ll linf = 1LL << 62;
ll gcd(ll a,ll b){
  if(a < b)swap(a , b);
  if(a % b == 0) return b;
  else gcd(b, a%b);
}
ll lcm(ll a,ll b){
  if(a < b)swap(a , b);
  return (a/gcd(a , b)) * b;
}
int main(){
 
  ll w, h, n; cin >> w >> h >> n;
  vector<ll > vll(w + 10);
  set<ll> col, num;
  for(int i = 0; i < n; i++)
  {
    ll s, k; cin >> s >> k;
    vll[s]++;
    col.insert(s);
    num.insert(k);
  }
  ll ans = 0;
  for(ll i = 1; i <= w; i++)
  {
    if(vll[i] != 0)
      ans += h - vll[i];
  }
  ans += (w - col.size()) * num.size();
  
  pr(ans);
  return 0;
}
            
            
            
        