結果

問題 No.2563 色ごとのグループ
ユーザー ngng628ngng628
提出日時 2023-12-02 15:27:06
言語 Crystal
(1.11.2)
結果
WA  
実行時間 -
コード長 713 bytes
コンパイル時間 14,552 ms
コンパイル使用メモリ 296,068 KB
実行使用メモリ 74,368 KB
最終ジャッジ日時 2024-09-26 18:42:29
合計ジャッジ時間 19,779 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 6 ms
5,376 KB
testcase_20 AC 16 ms
7,552 KB
testcase_21 AC 11 ms
5,888 KB
testcase_22 AC 8 ms
5,376 KB
testcase_23 AC 12 ms
5,760 KB
testcase_24 AC 116 ms
31,360 KB
testcase_25 AC 107 ms
33,152 KB
testcase_26 AC 159 ms
49,920 KB
testcase_27 AC 174 ms
49,152 KB
testcase_28 AC 191 ms
56,064 KB
testcase_29 AC 242 ms
66,304 KB
testcase_30 AC 239 ms
65,792 KB
testcase_31 AC 244 ms
66,304 KB
testcase_32 AC 247 ms
66,432 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = read_line.split.map &.to_i64
c = read_line.split.map &.to_i64.pred
sizes = c.tally
graph = Array.new(n) { |color| Array(Array(Int64)).new(sizes[color]? || 0) { [] of Int64 } }
hash = Array.new(n) { Hash(Int64, Int32).new }
m.times do
  u, v = read_line.split.map &.to_i64.pred
  if c[u] == c[v]
    color = c[u]
    hash[color][u] = hash[color].size unless hash[color].has_key?(u)
    hash[color][v] = hash[color].size unless hash[color].has_key?(v)
    u2 = hash[color][u]
    v2 = hash[color][v]
    graph[color][u2] << v2
    graph[color][v2] << u2
  end
end

ans = n.times.sum { |color|
  n_edges = graph[color].sum(&.size) // 2
  Math.max(0_i64, (sizes.fetch(color, 0_i64) - 1) - n_edges)
}

puts ans
0