結果

問題 No.606 カラフルタイル
ユーザー waidottowaidotto
提出日時 2018-01-27 09:49:29
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 840 bytes
コンパイル時間 1,811 ms
コンパイル使用メモリ 168,536 KB
実行使用メモリ 9,336 KB
最終ジャッジ日時 2024-06-09 05:23:33
合計ジャッジ時間 3,798 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 6 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 46 ms
8,272 KB
testcase_17 AC 74 ms
9,324 KB
testcase_18 AC 55 ms
8,284 KB
testcase_19 AC 54 ms
8,408 KB
testcase_20 AC 77 ms
9,336 KB
testcase_21 AC 54 ms
8,296 KB
testcase_22 AC 56 ms
8,424 KB
testcase_23 AC 67 ms
8,520 KB
testcase_24 AC 73 ms
9,084 KB
testcase_25 AC 77 ms
9,204 KB
testcase_26 AC 76 ms
9,076 KB
testcase_27 AC 74 ms
9,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main(void) {
	long long N, K, Q;
	cin >> N >> K >> Q;
	long long h = N;
	long long w = N;
	vector<string> A;
	vector<long long> B;
	vector<int> C;
	vector<bool> row_used(N, false);
	vector<bool> col_used(N, false);
	vector<long long> result(K, 0);
	result[0] = N * N;
	for(int i = 0; i < Q; ++i) {
		string a;
		long long b;
		int c;
		cin >> a >> b >> c;
		A.push_back(a);
		B.push_back(b - 1);
		C.push_back(c - 1);
	}
	for(int i = Q - 1; i >= 0; --i) {
		if(A[i] == "R") {
			if(!row_used[B[i]]) {
				row_used[B[i]] = true;
				result[C[i]] += w;
				result[0] -= w;
				--h;
			}
		} else {
			if(!col_used[B[i]]) {
				col_used[B[i]] = true;
				result[C[i]] += h;
				result[0] -= h;
				--w;
			}
		}
	}
	for(int i = 0; i < K; ++i) {
		cout << result[i] << '\n';
	}
	return 0;
}

0