結果

問題 No.606 カラフルタイル
ユーザー tentententen
提出日時 2020-09-06 16:12:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 821 ms / 2,000 ms
コード長 1,268 bytes
コンパイル時間 2,177 ms
コンパイル使用メモリ 79,000 KB
実行使用メモリ 65,788 KB
最終ジャッジ日時 2024-05-06 21:09:22
合計ジャッジ時間 14,794 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
39,776 KB
testcase_01 AC 113 ms
40,084 KB
testcase_02 AC 104 ms
39,484 KB
testcase_03 AC 111 ms
41,388 KB
testcase_04 AC 106 ms
41,620 KB
testcase_05 AC 113 ms
41,180 KB
testcase_06 AC 109 ms
40,948 KB
testcase_07 AC 115 ms
41,044 KB
testcase_08 AC 116 ms
41,204 KB
testcase_09 AC 94 ms
39,768 KB
testcase_10 AC 113 ms
41,124 KB
testcase_11 AC 96 ms
39,796 KB
testcase_12 AC 135 ms
41,932 KB
testcase_13 AC 303 ms
47,628 KB
testcase_14 AC 109 ms
39,760 KB
testcase_15 AC 185 ms
44,736 KB
testcase_16 AC 651 ms
53,392 KB
testcase_17 AC 733 ms
65,272 KB
testcase_18 AC 778 ms
57,072 KB
testcase_19 AC 738 ms
61,240 KB
testcase_20 AC 783 ms
62,384 KB
testcase_21 AC 644 ms
54,772 KB
testcase_22 AC 652 ms
54,240 KB
testcase_23 AC 676 ms
55,112 KB
testcase_24 AC 821 ms
61,112 KB
testcase_25 AC 692 ms
59,352 KB
testcase_26 AC 805 ms
65,788 KB
testcase_27 AC 782 ms
65,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int k = sc.nextInt();
    	int q = sc.nextInt();
    	boolean[] isRows = new boolean[q];
    	int[] idxes = new int[q];
    	int[] colors = new int[q];
    	for (int i = 0; i < q; i++) {
    	    isRows[i] = (sc.next().charAt(0) == 'R');
    	    idxes[i] = sc.nextInt();
    	    colors[i] = sc.nextInt() - 1;
    	}
    	HashSet<Integer> rows = new HashSet<>();
    	HashSet<Integer> cols = new HashSet<>();
    	long[] ans = new long[k];
    	for (int i = q - 1; i >= 0; i--) {
    	    if (isRows[i]) {
    	        if (!rows.contains(idxes[i])) {
    	            ans[colors[i]] += n - cols.size();
    	            rows.add(idxes[i]);
    	        }
    	    } else {
    	        if (!cols.contains(idxes[i])) {
    	            ans[colors[i]] += n - rows.size();
    	            cols.add(idxes[i]);
    	        }
    	    }
    	}
    	long total = 0;
    	for (int i = 1; i < k; i++) {
    	    total += ans[i];
    	}
    	ans[0] = (long)n * n - total;
    	StringBuilder sb = new StringBuilder();
    	for (long x : ans) {
    	    sb.append(x).append("\n");
    	}
    	System.out.print(sb);
	}
}
0