結果

問題 No.606 カラフルタイル
ユーザー milanis48663220milanis48663220
提出日時 2020-06-30 22:05:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 1,010 bytes
コンパイル時間 856 ms
コンパイル使用メモリ 89,508 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-09-13 11:58:03
合計ジャッジ時間 5,006 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 58 ms
12,928 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 6 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 59 ms
12,928 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 17 ms
6,940 KB
testcase_17 AC 182 ms
9,856 KB
testcase_18 AC 51 ms
8,960 KB
testcase_19 AC 45 ms
8,448 KB
testcase_20 AC 269 ms
14,464 KB
testcase_21 AC 133 ms
13,696 KB
testcase_22 AC 136 ms
13,696 KB
testcase_23 AC 149 ms
13,696 KB
testcase_24 AC 218 ms
14,208 KB
testcase_25 AC 208 ms
13,568 KB
testcase_26 AC 219 ms
14,336 KB
testcase_27 AC 213 ms
14,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>

using namespace std;
typedef long long ll;

int N, K, Q;
ll cnt[100000];
char A[100000];
int B[100000], C[100000];
set<int> r, c;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    cin >> N >> K >> Q;
    for(int i = 0; i < N; i++){
        c.insert(i); r.insert(i);
    }
    for(int i = 0; i < Q; i++){
        cin >> A[i] >> B[i] >> C[i];
        B[i]--; C[i]--;
    }
    for(int i = Q-1; i >= 0; i--){
        if(A[i] == 'R'){
            if(r.count(B[i]) == 0) continue;
            cnt[C[i]] += c.size();
            r.erase(B[i]);
        }else{
            if(c.count(B[i]) == 0) continue;
            cnt[C[i]] += r.size();
            c.erase(B[i]);
        }
    }
    ll total = (ll)N*(ll)N;
    for(int i = 0; i < K; i++) total -= cnt[i];
    cnt[0] += total;
    for(int i = 0; i < K; i++) cout << cnt[i] << endl;
}
0