結果

問題 No.2805 Go to School
ユーザー suzuishisuzuishi
提出日時 2024-07-12 22:35:17
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 1,707 bytes
コンパイル時間 712 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 93,980 KB
最終ジャッジ日時 2024-07-12 22:35:34
合計ジャッジ時間 15,378 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
19,100 KB
testcase_01 AC 94 ms
12,160 KB
testcase_02 AC 94 ms
12,160 KB
testcase_03 AC 108 ms
12,288 KB
testcase_04 TLE -
testcase_05 AC 1,404 ms
38,912 KB
testcase_06 AC 1,136 ms
37,760 KB
testcase_07 TLE -
testcase_08 AC 1,393 ms
39,424 KB
testcase_09 AC 1,045 ms
38,528 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:44: warning: assigned but unused variable - l
Syntax OK

ソースコード

diff #

class BinaryHeap
  def initialize
    @data = Array.new
  end
  def size
    @data.size
  end
  def empty?
    @data.size == 0
  end
  def insert(x)
    idx = @data.size
    @data << x
    while idx > 0 && priority(@data[idx], @data[(idx - 1) >> 1]) do
      @data[(idx - 1) >> 1], @data[idx] = @data[idx], @data[(idx - 1) >> 1]
      idx = (idx - 1) >> 1
    end
  end
  alias << insert
  def pop
    return nil if @data.size == 0
    return @data.pop if @data.size == 1
    r = @data[0].dup
    @data[0] = @data.pop
    idx = 0
    while (n_idx = 2 * idx + 1) < @data.size do
      n_idx += 1 if n_idx + 1 < @data.size && priority(@data[n_idx + 1], @data[n_idx])
      break if priority(@data[idx], @data[n_idx])
      @data[idx], @data[n_idx] = @data[n_idx], @data[idx]
      idx = n_idx
    end
    r
  end
  def top
    self.empty? ? nil : @data[0]
  end

  private
  def priority(a, b) # return true iff a has higher priority than b
    a[1] < b[1]
  end
end

n, m, l, s, e = gets.split.map &:to_i
g = Array.new(n << 1) {[]}
m.times do
  a, b, t = gets.split.map &:to_i
  a -= 1
  b -= 1
  2.times do
    g[a] << [b, t]
    g[b] << [a, t]
    a += n
    b += n
  end
end
t = Array.new(n, false)
gets.split.map(&:to_i).each do |i|
  t[i - 1] = true
end
q = BinaryHeap.new
q << [0, 0]
dist = Array.new(n << 1, Float::INFINITY)
dist[0] = 0
while (u, d = q.pop) do
  next if dist[u] < d
  g[u].each do |v, c|
    next if dist[v] <= dist[u] + c
    dist[v] = dist[u] + c
    q << [v, dist[v]]
  end
  if t[u] && dist[u] < s + e && dist[u + n] > [dist[u] + 1, s + 1].max then
    dist[u + n] = [dist[u] + 1, s + 1].max
    q << [u + n, dist[u + n]]
  end
end
puts dist[-1] == Float::INFINITY ? -1 : dist[-1]
0