結果

問題 No.606 カラフルタイル
ユーザー tentententen
提出日時 2020-09-06 16:12:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,094 ms / 2,000 ms
コード長 1,268 bytes
コンパイル時間 2,385 ms
コンパイル使用メモリ 79,724 KB
実行使用メモリ 67,092 KB
最終ジャッジ日時 2024-11-29 07:15:28
合計ジャッジ時間 17,634 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,376 KB
testcase_01 AC 137 ms
41,408 KB
testcase_02 AC 139 ms
41,232 KB
testcase_03 AC 137 ms
41,144 KB
testcase_04 AC 136 ms
41,636 KB
testcase_05 AC 136 ms
41,472 KB
testcase_06 AC 135 ms
41,384 KB
testcase_07 AC 140 ms
41,212 KB
testcase_08 AC 138 ms
41,436 KB
testcase_09 AC 122 ms
40,040 KB
testcase_10 AC 138 ms
41,588 KB
testcase_11 AC 137 ms
41,368 KB
testcase_12 AC 162 ms
41,756 KB
testcase_13 AC 324 ms
47,852 KB
testcase_14 AC 140 ms
41,576 KB
testcase_15 AC 210 ms
44,200 KB
testcase_16 AC 835 ms
55,344 KB
testcase_17 AC 919 ms
65,844 KB
testcase_18 AC 927 ms
57,820 KB
testcase_19 AC 875 ms
61,608 KB
testcase_20 AC 1,094 ms
64,196 KB
testcase_21 AC 977 ms
60,884 KB
testcase_22 AC 959 ms
57,664 KB
testcase_23 AC 896 ms
55,848 KB
testcase_24 AC 976 ms
63,068 KB
testcase_25 AC 870 ms
58,892 KB
testcase_26 AC 917 ms
66,376 KB
testcase_27 AC 993 ms
67,092 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