結果

問題 No.606 カラフルタイル
ユーザー penguinshunyapenguinshunya
提出日時 2019-07-21 20:04:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 216 ms / 2,000 ms
コード長 786 bytes
コンパイル時間 2,316 ms
コンパイル使用メモリ 215,028 KB
実行使用メモリ 9,940 KB
最終ジャッジ日時 2024-06-22 23:31:40
合計ジャッジ時間 5,406 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 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 5 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 41 ms
5,376 KB
testcase_17 AC 209 ms
9,936 KB
testcase_18 AC 77 ms
9,044 KB
testcase_19 AC 72 ms
8,528 KB
testcase_20 AC 210 ms
8,908 KB
testcase_21 AC 79 ms
8,012 KB
testcase_22 AC 78 ms
8,140 KB
testcase_23 AC 99 ms
7,504 KB
testcase_24 AC 167 ms
7,888 KB
testcase_25 AC 172 ms
5,460 KB
testcase_26 AC 203 ms
9,940 KB
testcase_27 AC 216 ms
9,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
  int n, k, q;
  cin >> n >> k >> q;
  vector<tuple<int, int, int>> ve;

  for (int i = 0; i < q; i++) {
    char a;
    int b, c;
    cin >> a >> b >> c;
    b--, c--;
    ve.emplace_back(a == 'R', b, c);
  }
  reverse(ve.begin(), ve.end());

  vector<long long> ans(k);
  set<int> mar, mac;

  for (auto v : ve) {
    int x, b, c;
    tie(x, b, c) = v;
    if (x) {
      if (mar.count(b) == 0) {
        ans[c] += n - mac.size();
        mar.insert(b);
      }
    } else {
      if (mac.count(b) == 0) {
        ans[c] += n - mar.size();
        mac.insert(b);
      }
    }
  }
  
  ans[0] += (long long) (n - mac.size()) * (n - mar.size());
  for (int i = 0; i < k; i++) {
    cout << ans[i] << endl;
  }

  return 0;
}
0