結果

問題 No.606 カラフルタイル
ユーザー simansiman
提出日時 2022-04-03 02:43:02
言語 Ruby
(3.3.0)
結果
AC  
実行時間 496 ms / 2,000 ms
コード長 587 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 47,744 KB
最終ジャッジ日時 2024-11-22 11:00:00
合計ジャッジ時間 8,563 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,160 KB
testcase_01 AC 90 ms
12,288 KB
testcase_02 AC 86 ms
12,032 KB
testcase_03 AC 90 ms
12,032 KB
testcase_04 AC 86 ms
12,032 KB
testcase_05 AC 86 ms
12,288 KB
testcase_06 AC 85 ms
12,032 KB
testcase_07 AC 91 ms
12,032 KB
testcase_08 AC 90 ms
12,160 KB
testcase_09 AC 85 ms
12,160 KB
testcase_10 AC 85 ms
12,032 KB
testcase_11 AC 84 ms
12,288 KB
testcase_12 AC 89 ms
12,288 KB
testcase_13 AC 112 ms
14,336 KB
testcase_14 AC 85 ms
12,032 KB
testcase_15 AC 92 ms
12,416 KB
testcase_16 AC 327 ms
36,480 KB
testcase_17 AC 486 ms
46,592 KB
testcase_18 AC 379 ms
41,344 KB
testcase_19 AC 377 ms
40,960 KB
testcase_20 AC 489 ms
43,520 KB
testcase_21 AC 362 ms
40,192 KB
testcase_22 AC 355 ms
40,192 KB
testcase_23 AC 368 ms
39,168 KB
testcase_24 AC 428 ms
42,368 KB
testcase_25 AC 408 ms
37,248 KB
testcase_26 AC 477 ms
47,744 KB
testcase_27 AC 496 ms
45,824 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, K, Q = gets.split.map(&:to_i)
query_list = Q.times.map { gets.chomp.split }
counter = Hash.new(0)
row_c = 0
col_c = 0
row_visited = Hash.new(false)
col_visited = Hash.new(false)

query_list.reverse_each do |a, b, c|
  b = b.to_i
  c = c.to_i

  next if row_visited[b] && a == 'R'
  next if col_visited[b] && a == 'C'

  if a == 'C'
    counter[c] += N - row_c if c != 1
    col_visited[b] = true
    col_c += 1
  else
    counter[c] += N - col_c if c != 1
    row_visited[b] = true
    row_c += 1
  end
end

counter[1] = N * N - counter.values.sum

puts (1..K).map { |c| counter[c] }
0