結果

問題 No.277 根掘り葉掘り
ユーザー cielciel
提出日時 2015-10-14 14:02:29
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,323 ms / 3,000 ms
コード長 771 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 141,448 KB
最終ジャッジ日時 2024-07-21 07:43:26
合計ジャッジ時間 13,889 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
12,288 KB
testcase_01 AC 152 ms
12,288 KB
testcase_02 AC 147 ms
12,288 KB
testcase_03 AC 147 ms
12,416 KB
testcase_04 AC 148 ms
12,288 KB
testcase_05 AC 147 ms
12,160 KB
testcase_06 AC 149 ms
12,288 KB
testcase_07 AC 151 ms
12,288 KB
testcase_08 AC 155 ms
12,288 KB
testcase_09 AC 1,056 ms
141,448 KB
testcase_10 AC 865 ms
34,816 KB
testcase_11 AC 837 ms
33,024 KB
testcase_12 AC 1,011 ms
90,096 KB
testcase_13 AC 871 ms
36,608 KB
testcase_14 AC 856 ms
39,040 KB
testcase_15 AC 1,287 ms
45,056 KB
testcase_16 AC 1,323 ms
39,936 KB
testcase_17 AC 931 ms
39,296 KB
testcase_18 AC 894 ms
38,528 KB
testcase_19 AC 861 ms
37,120 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

if !ENV['RUBY_THREAD_VM_STACK_SIZE']
	require 'rubygems';RUBY=Gem.ruby
	exec({'RUBY_THREAD_VM_STACK_SIZE'=>'100000000'},RUBY,$0,close_others:false)
end

def dfs(n,d,z)
    r=nil
    H[n].each{|e|
        if !z.has_key?(e)
            z[e]=1
            r||=1<<29
            x=dfs(e,d+1,z)
            r=[r,x+1].min
            z.delete(e)
        end
    }
    r||=0
    R[n]=[r,d].min
    L[n]=r
    r
end
def dfs2(n,d,z)
    H[n].each{|e|
        if !z.has_key?(e)
            z[e]=1
            dfs2(e,[d,L[n]].min+1,z)
            z.delete(e)
        end
    }
    R[n]=[R[n],d].min
end
        
n=gets.to_i
H=Hash.new{|h,k|h[k]=[]}
R={}
L={}
(n-1).times{
    x,y=gets.split.map(&:to_i)
    H[x]<<y
    H[y]<<x
}
dfs(1,0,{1=>1})
dfs2(1,0,{1=>1})
1.step(n){|i|p R[i]}
0