結果

問題 No.606 カラフルタイル
ユーザー face4face4
提出日時 2019-03-02 17:52:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 836 bytes
コンパイル時間 730 ms
コンパイル使用メモリ 72,056 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-23 12:26:59
合計ジャッジ時間 3,855 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<iostream>
#include<vector>
#include<numeric>
using namespace std;

typedef long long ll;

int main(){
    int n, k, q;
    cin >> n >> k >> q;
    int row = n, col = n;
    char a[q];
    int b[q], c[q];
    for(int i = 0; i < q; i++)  cin >> a[i] >> b[i] >> c[i];
    vector<ll> ans(k, 0);
    vector<bool> rowb(n, 0), colb(n, 0);
    for(int i = q-1; i >= 0; i--){
        if(a[i] == 'R'){
            if(rowb[b[i]-1])    continue;
            rowb[b[i]-1] = true;
            ans[c[i]-1] += col;
            row--;
        }else if(a[i] == 'C'){
            if(colb[b[i]-1])    continue;
            colb[b[i]-1] = true;
            ans[c[i]-1] += row;
            col--;
        }
    }
    ans[0] += (ll)n*n - accumulate(ans.begin(), ans.end(), 0ll);
    for(int i = 0; i < k; i++)  cout << ans[i] << endl;
    return 0;
}
0