結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー universatouniversato
提出日時 2020-05-29 21:59:51
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,536 ms / 2,000 ms
コード長 515 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 47,872 KB
最終ジャッジ日時 2024-11-06 18:35:41
合計ジャッジ時間 30,366 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,288 KB
testcase_01 AC 90 ms
12,288 KB
testcase_02 AC 601 ms
30,208 KB
testcase_03 AC 975 ms
33,408 KB
testcase_04 AC 1,221 ms
33,408 KB
testcase_05 AC 807 ms
33,280 KB
testcase_06 AC 800 ms
33,408 KB
testcase_07 AC 318 ms
20,736 KB
testcase_08 AC 978 ms
44,800 KB
testcase_09 AC 170 ms
14,336 KB
testcase_10 AC 491 ms
26,496 KB
testcase_11 AC 361 ms
22,016 KB
testcase_12 AC 283 ms
14,720 KB
testcase_13 AC 1,101 ms
27,776 KB
testcase_14 AC 879 ms
31,488 KB
testcase_15 AC 1,253 ms
35,584 KB
testcase_16 AC 724 ms
20,352 KB
testcase_17 AC 1,536 ms
32,768 KB
testcase_18 AC 511 ms
18,304 KB
testcase_19 AC 1,323 ms
36,608 KB
testcase_20 AC 364 ms
18,816 KB
testcase_21 AC 668 ms
18,432 KB
testcase_22 AC 1,011 ms
33,408 KB
testcase_23 AC 99 ms
12,288 KB
testcase_24 AC 102 ms
12,544 KB
testcase_25 AC 260 ms
13,568 KB
testcase_26 AC 741 ms
24,576 KB
testcase_27 AC 633 ms
23,808 KB
testcase_28 AC 970 ms
30,848 KB
testcase_29 AC 227 ms
13,312 KB
testcase_30 AC 1,063 ms
33,280 KB
testcase_31 AC 628 ms
27,264 KB
testcase_32 AC 430 ms
23,296 KB
testcase_33 AC 818 ms
32,896 KB
testcase_34 AC 466 ms
19,200 KB
testcase_35 AC 991 ms
33,920 KB
testcase_36 AC 98 ms
12,672 KB
testcase_37 AC 102 ms
12,672 KB
testcase_38 AC 100 ms
12,672 KB
testcase_39 AC 104 ms
12,416 KB
testcase_40 AC 95 ms
12,288 KB
testcase_41 AC 1,155 ms
47,872 KB
testcase_42 AC 402 ms
21,760 KB
testcase_43 AC 626 ms
30,976 KB
testcase_44 AC 278 ms
17,920 KB
testcase_45 AC 598 ms
30,464 KB
testcase_46 AC 88 ms
12,416 KB
testcase_47 AC 91 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, m = gets.to_s.split.map{|t| t.to_i }
x, y = gets.to_s.split.map{|t| t.to_i - 1 }

xys = Array.new(n){ gets.to_s.split.map{|t| t.to_i } }

g = Array.new(n){ [] }
m.times do
  s, t = gets.to_s.split.map{|t| t.to_i - 1 }
  g[s] << t
  g[t] << s
end

inf = Float::INFINITY
d = [inf] * n
d[x] = 0
q = [x]

while ( v = q.shift )
  
  d_v = d[v] 
  g[v].each do |u|
    t = Math.hypot( xys[u][0] - xys[v][0], xys[u][1] - xys[v][1] )
    if d[u] > d_v + t
      d[u] = d_v + t
      q.push u
    end
  end
end

puts d[y]
0