結果

問題 No.11 カードマッチ
ユーザー kazasikikazasiki
提出日時 2015-07-28 08:49:03
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 6 ms / 5,000 ms
コード長 580 bytes
コンパイル時間 1,242 ms
コンパイル使用メモリ 144,208 KB
実行使用メモリ 11,068 KB
最終ジャッジ日時 2023-08-02 00:11:13
合計ジャッジ時間 1,996 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 3 ms
6,160 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 6 ms
11,068 KB
testcase_07 AC 3 ms
5,552 KB
testcase_08 AC 5 ms
7,004 KB
testcase_09 AC 6 ms
10,884 KB
testcase_10 AC 5 ms
9,244 KB
testcase_11 AC 5 ms
8,624 KB
testcase_12 AC 5 ms
8,996 KB
testcase_13 AC 5 ms
8,588 KB
testcase_14 AC 4 ms
6,016 KB
testcase_15 AC 1 ms
4,380 KB
testcase_16 AC 1 ms
4,380 KB
testcase_17 AC 2 ms
4,384 KB
testcase_18 AC 2 ms
4,376 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