結果

問題 No.2563 色ごとのグループ
ユーザー ngng628ngng628
提出日時 2023-12-02 15:28:44
言語 Crystal
(1.11.2)
結果
WA  
実行時間 -
コード長 727 bytes
コンパイル時間 14,221 ms
コンパイル使用メモリ 295,300 KB
実行使用メモリ 73,472 KB
最終ジャッジ日時 2024-09-26 18:45:11
合計ジャッジ時間 17,293 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 4 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 4 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 10 ms
5,888 KB
testcase_22 AC 8 ms
5,376 KB
testcase_23 AC 13 ms
5,760 KB
testcase_24 AC 116 ms
31,360 KB
testcase_25 AC 111 ms
33,152 KB
testcase_26 AC 163 ms
49,920 KB
testcase_27 AC 168 ms
48,256 KB
testcase_28 AC 210 ms
56,064 KB
testcase_29 AC 249 ms
66,304 KB
testcase_30 AC 248 ms
66,304 KB
testcase_31 AC 254 ms
66,432 KB
testcase_32 AC 246 ms
66,048 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.to_i64) // 2
Math.max(0_i64, (sizes.fetch(color, 0_i64).to_i64 - 1) - n_edges)
}
puts ans
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0