結果

問題 No.606 カラフルタイル
ユーザー htensaihtensai
提出日時 2019-11-14 12:35:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,037 ms / 2,000 ms
コード長 1,206 bytes
コンパイル時間 2,714 ms
コンパイル使用メモリ 78,964 KB
実行使用メモリ 65,868 KB
最終ジャッジ日時 2024-09-21 21:23:06
合計ジャッジ時間 17,976 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,396 KB
testcase_01 AC 135 ms
41,008 KB
testcase_02 AC 131 ms
40,912 KB
testcase_03 AC 134 ms
40,892 KB
testcase_04 AC 137 ms
40,928 KB
testcase_05 AC 135 ms
41,068 KB
testcase_06 AC 137 ms
41,116 KB
testcase_07 AC 134 ms
41,064 KB
testcase_08 AC 136 ms
41,008 KB
testcase_09 AC 133 ms
40,960 KB
testcase_10 AC 124 ms
40,196 KB
testcase_11 AC 134 ms
41,152 KB
testcase_12 AC 154 ms
41,652 KB
testcase_13 AC 329 ms
47,708 KB
testcase_14 AC 139 ms
41,232 KB
testcase_15 AC 200 ms
44,020 KB
testcase_16 AC 836 ms
54,124 KB
testcase_17 AC 873 ms
64,276 KB
testcase_18 AC 897 ms
57,708 KB
testcase_19 AC 845 ms
61,420 KB
testcase_20 AC 1,037 ms
56,300 KB
testcase_21 AC 911 ms
58,276 KB
testcase_22 AC 912 ms
58,556 KB
testcase_23 AC 961 ms
54,500 KB
testcase_24 AC 1,019 ms
57,080 KB
testcase_25 AC 838 ms
59,728 KB
testcase_26 AC 881 ms
65,868 KB
testcase_27 AC 920 ms
65,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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