結果

問題 No.11 カードマッチ
ユーザー kazasikikazasiki
提出日時 2015-07-28 08:49:03
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 6 ms / 5,000 ms
コード長 580 bytes
コンパイル時間 1,229 ms
コンパイル使用メモリ 160,492 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-11 19:53:19
合計ジャッジ時間 1,981 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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 4 ms
6,528 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 6 ms
10,848 KB
testcase_07 AC 4 ms
5,760 KB
testcase_08 AC 5 ms
7,296 KB
testcase_09 AC 6 ms
10,880 KB
testcase_10 AC 6 ms
9,344 KB
testcase_11 AC 6 ms
8,832 KB
testcase_12 AC 6 ms
8,960 KB
testcase_13 AC 5 ms
8,644 KB
testcase_14 AC 4 ms
6,144 KB
testcase_15 AC 2 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 "bits/stdc++.h"
using namespace std;

int main() {
  int W, H, N;
  cin >> W >> H >> N;
  vector<int> ws(W + 1, false), hs(H + 1, false);
  int w_count = 0, s_count = 0;

  // 手札のカードからマッチするマークと数字を記録する
  // マッチするマークと数字の数を記録
  for (int i = 0; i < N; i++) {
    int S, K;
    cin >> S >> K;
    if (!ws[S]) {
      w_count++;
      ws[S] = true;
    }
    if (!hs[K]) {
      s_count++;
      hs[K] = true;
    }
  }

  cout << w_count * H + s_count * W - (w_count * s_count) - N;
  return 0;
}
0