結果
問題 | No.277 根掘り葉掘り |
ユーザー | ciel |
提出日時 | 2015-09-05 01:29:01 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 361 bytes |
コンパイル時間 | 109 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 29,540 KB |
最終ジャッジ日時 | 2024-07-19 03:20:55 |
合計ジャッジ時間 | 8,363 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 84 ms
12,032 KB |
testcase_01 | AC | 81 ms
12,032 KB |
testcase_02 | AC | 79 ms
12,416 KB |
testcase_03 | AC | 82 ms
12,416 KB |
testcase_04 | AC | 85 ms
12,160 KB |
testcase_05 | AC | 86 ms
12,160 KB |
testcase_06 | AC | 82 ms
12,032 KB |
testcase_07 | WA | - |
testcase_08 | AC | 81 ms
12,032 KB |
testcase_09 | WA | - |
testcase_10 | AC | 674 ms
29,540 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
コンパイルメッセージ
Syntax OK
ソースコード
#!/usr/bin/ruby def dfs(n,d) r=nil H[n].each{|e| r||=1<<29 x=dfs(e,d+1) r=[r,x+1].min } r||=0 R[n]=[r,d].min L[n]=r r end def dfs2(n,d) H[n].each{|e|dfs2(e,[d,L[n]].min+1)} 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) dfs2(1,0) 1.step(n){|i|p R[i]}