結果

問題 No.2805 Go to School
ユーザー suzuishisuzuishi
提出日時 2024-07-12 23:07:39
言語 Crystal
(1.11.2)
結果
WA  
実行時間 -
コード長 1,824 bytes
コンパイル時間 14,566 ms
コンパイル使用メモリ 297,208 KB
実行使用メモリ 87,020 KB
最終ジャッジ日時 2024-07-12 23:08:05
合計ジャッジ時間 22,620 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,948 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 401 ms
68,776 KB
testcase_05 AC 145 ms
31,724 KB
testcase_06 AC 165 ms
38,312 KB
testcase_07 AC 380 ms
66,128 KB
testcase_08 AC 157 ms
34,956 KB
testcase_09 AC 201 ms
39,796 KB
testcase_10 AC 465 ms
79,972 KB
testcase_11 AC 260 ms
54,052 KB
testcase_12 AC 410 ms
77,256 KB
testcase_13 AC 71 ms
18,764 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 86 ms
26,200 KB
testcase_25 AC 425 ms
78,684 KB
testcase_26 AC 218 ms
62,348 KB
testcase_27 AC 21 ms
13,312 KB
testcase_28 AC 29 ms
19,300 KB
testcase_29 AC 136 ms
42,480 KB
testcase_30 AC 141 ms
38,428 KB
testcase_31 WA -
testcase_32 AC 473 ms
84,488 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 3 ms
6,944 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 262 ms
61,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BinaryHeap
  def initialize
    @data = Array(Int64).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])
      @data[(idx - 1) >> 1], @data[idx] = @data[idx], @data[(idx - 1) >> 1]
      idx = (idx - 1) >> 1
    end
  end
  def << (x)
    insert(x)
  end
  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
      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

  def priority(a, b) # return true iff a has higher priority than b
    (a >> 30) < (b >> 30)
  end
end

INF = 1 << 30
Mask = (1 << 30) - 1
n, m, l, s, e = read_line.split.map &.to_i
g = Array.new(n << 1) {[] of Array(Int32)}
m.times do
  a, b, t = read_line.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)
read_line.split.map(&.to_i).each do |i|
  t[i - 1] = true
end
q = BinaryHeap.new
q << 0_i64
dist = Array.new(n << 1, INF)
dist[0] = 0
while (ud = q.pop)
  u, d = ud & Mask, ud >> 30
  next if dist[u] < d
  g[u].each do |(v, c)|
    next if dist[v] <= dist[u] + c
    dist[v] = dist[u] + c
    q << (dist[v].to_i64 << 30 | v)
  end
  if u < n && t[u] && dist[u] < s + e && dist[u + n] > [dist[u] + 1, s + 1].max
    dist[u + n] = [dist[u] + 1, s + 1].max
    q << (dist[u + n].to_i64 << 30 | (u + n))
  end
end
puts dist[-1] == INF ? -1 : dist[-1]
0