結果
問題 | No.606 カラフルタイル |
ユーザー | tenten |
提出日時 | 2023-12-19 10:07:41 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 456 ms / 2,000 ms |
コード長 | 2,622 bytes |
コンパイル時間 | 2,842 ms |
コンパイル使用メモリ | 85,264 KB |
実行使用メモリ | 68,760 KB |
最終ジャッジ日時 | 2024-09-27 08:44:20 |
合計ジャッジ時間 | 10,199 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 66 ms
51,048 KB |
testcase_01 | AC | 67 ms
51,080 KB |
testcase_02 | AC | 66 ms
51,236 KB |
testcase_03 | AC | 69 ms
51,276 KB |
testcase_04 | AC | 72 ms
51,296 KB |
testcase_05 | AC | 73 ms
51,060 KB |
testcase_06 | AC | 67 ms
51,256 KB |
testcase_07 | AC | 67 ms
51,108 KB |
testcase_08 | AC | 68 ms
51,300 KB |
testcase_09 | AC | 69 ms
51,164 KB |
testcase_10 | AC | 67 ms
51,168 KB |
testcase_11 | AC | 69 ms
51,376 KB |
testcase_12 | AC | 71 ms
51,348 KB |
testcase_13 | AC | 165 ms
57,040 KB |
testcase_14 | AC | 69 ms
51,108 KB |
testcase_15 | AC | 98 ms
51,532 KB |
testcase_16 | AC | 285 ms
58,712 KB |
testcase_17 | AC | 425 ms
68,584 KB |
testcase_18 | AC | 320 ms
63,024 KB |
testcase_19 | AC | 332 ms
63,060 KB |
testcase_20 | AC | 456 ms
68,760 KB |
testcase_21 | AC | 361 ms
63,120 KB |
testcase_22 | AC | 365 ms
63,088 KB |
testcase_23 | AC | 376 ms
63,056 KB |
testcase_24 | AC | 438 ms
65,580 KB |
testcase_25 | AC | 382 ms
62,692 KB |
testcase_26 | AC | 434 ms
67,688 KB |
testcase_27 | AC | 431 ms
67,936 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int k = sc.nextInt(); int q = sc.nextInt(); boolean[] isRow = new boolean[q]; int[] idxes = new int[q]; int[] colors = new int[q]; for (int i = 0; i < q; i++) { isRow[i] = (sc.next().charAt(0) == 'R'); idxes[i] = sc.nextInt(); colors[i] = sc.nextInt() - 1; } long[] ans = new long[k]; ans[0] = (long)n * n; HashSet<Integer> rows = new HashSet<>(); HashSet<Integer> cols = new HashSet<>(); for (int i = q - 1; i >= 0; i--) { int value; if (isRow[i]) { if (rows.contains(idxes[i])) { continue; } rows.add(idxes[i]); value = n - cols.size(); } else { if (cols.contains(idxes[i])) { continue; } cols.add(idxes[i]); value = n - rows.size(); } ans[colors[i]] += value; ans[0] -= value; } System.out.println(String.join("\n", Arrays.stream(ans).mapToObj(String::valueOf).toArray(String[]::new))); } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }