結果

問題 No.606 カラフルタイル
ユーザー pekempeypekempey
提出日時 2017-12-06 00:05:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 870 bytes
コンパイル時間 826 ms
コンパイル使用メモリ 75,636 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 11:49:12
合計ジャッジ時間 3,528 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 6 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 43 ms
5,376 KB
testcase_17 AC 198 ms
5,376 KB
testcase_18 AC 53 ms
5,376 KB
testcase_19 AC 52 ms
5,376 KB
testcase_20 AC 199 ms
5,376 KB
testcase_21 AC 54 ms
5,376 KB
testcase_22 AC 54 ms
5,376 KB
testcase_23 AC 79 ms
5,376 KB
testcase_24 AC 155 ms
5,376 KB
testcase_25 AC 195 ms
5,376 KB
testcase_26 AC 201 ms
5,376 KB
testcase_27 AC 195 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>

using namespace std;

int main() {
  int n, k, q;
  cin >> n >> k >> q;

  vector<int> a(q), b(q), c(q);
  for (int i = 0; i < q; i++) {
    char tmp;
    cin >> tmp >> b[i] >> c[i];
    a[i] = tmp == 'C';
    b[i]--;
    c[i]--;
  }

  vector<bool> used_row(n);
  vector<bool> used_col(n);
  long long left_row = n;
  long long left_col = n;
  vector<long long> cnt(k);
  for (int i = q - 1; i >= 0; i--) {
    if (a[i]) {
      // col
      if (used_col[ b[i] ]) continue;
      used_col[ b[i] ] = true;
      cnt[ c[i] ] += left_row;
      left_col--;
    } else {
      // row
      if (used_row[ b[i] ]) continue;
      used_row[ b[i] ] = true;
      cnt[ c[i] ] += left_col;
      left_row--;
    }
  }

  cnt[0] += left_row * left_col;

  for (int i = 0; i < k; i++) {
    cout << cnt[i] << endl;
  }
}
0