結果

問題 No.416 旅行会社
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2016-09-24 01:51:51
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 735 bytes
コンパイル時間 60 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 69,924 KB
最終ジャッジ日時 2024-11-17 20:19:27
合計ジャッジ時間 74,804 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 80 ms
27,032 KB
testcase_02 AC 81 ms
50,448 KB
testcase_03 AC 83 ms
50,380 KB
testcase_04 AC 80 ms
50,816 KB
testcase_05 AC 83 ms
12,160 KB
testcase_06 AC 84 ms
50,248 KB
testcase_07 AC 177 ms
19,104 KB
testcase_08 AC 1,614 ms
17,792 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# Here your code !
n,m,q = gets.split.map(&:to_i)
F = (n + 1).times.map{|i| i }
def root(a)
    if F[a] == a
        a
    else
        F[a] = root(F[a])
    end
end
def union(a,b)
    F[root(b)] = root(a)
end
def same?(a,b)
    root(a) == root(b)
end

ans = Array.new(n + 1)
E = []
H = {}
m.times do |i|
    k = gets.chomp
    e = E.size
    a,b = k.split.map(&:to_i)
    E << [a, b, -1]
    H[k] = e
end
(1 .. q).each do |i|
    k = gets.chomp
    e = H[k]
    E[e][2] = i
end

E.sort_by! {|(from, to, ev)| ev < 0 ? ev : q - ev }
E.each do |(from, to, ev)|
    union(from,to)
    (2 .. n).each do |i|
        if same?(1, i)
            ans[i] ||= ev
        end
    end
end
(2 .. n).each do |i|
    ans[i] ||= 0
end
puts ans[2 .. n]
0