結果

問題 No.1995 CHIKA Road
ユーザー simansiman
提出日時 2022-07-03 08:30:27
言語 Ruby
(3.4.1)
結果
AC  
実行時間 701 ms / 2,000 ms
コード長 602 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 42,900 KB
最終ジャッジ日時 2024-11-28 21:15:25
合計ジャッジ時間 13,637 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,416 KB
testcase_01 AC 94 ms
12,160 KB
testcase_02 AC 92 ms
12,160 KB
testcase_03 AC 89 ms
12,288 KB
testcase_04 AC 88 ms
12,160 KB
testcase_05 AC 89 ms
12,288 KB
testcase_06 AC 123 ms
13,568 KB
testcase_07 AC 205 ms
18,816 KB
testcase_08 AC 92 ms
12,160 KB
testcase_09 AC 89 ms
12,288 KB
testcase_10 AC 268 ms
17,536 KB
testcase_11 AC 701 ms
42,900 KB
testcase_12 AC 475 ms
33,468 KB
testcase_13 AC 270 ms
24,660 KB
testcase_14 AC 282 ms
24,952 KB
testcase_15 AC 619 ms
41,472 KB
testcase_16 AC 143 ms
15,360 KB
testcase_17 AC 340 ms
26,572 KB
testcase_18 AC 530 ms
32,256 KB
testcase_19 AC 536 ms
30,468 KB
testcase_20 AC 314 ms
24,980 KB
testcase_21 AC 290 ms
22,088 KB
testcase_22 AC 495 ms
30,200 KB
testcase_23 AC 207 ms
18,944 KB
testcase_24 AC 446 ms
28,820 KB
testcase_25 AC 158 ms
15,744 KB
testcase_26 AC 229 ms
20,416 KB
testcase_27 AC 428 ms
28,516 KB
testcase_28 AC 292 ms
22,032 KB
testcase_29 AC 515 ms
32,256 KB
testcase_30 AC 153 ms
15,360 KB
testcase_31 AC 119 ms
13,568 KB
testcase_32 AC 172 ms
17,536 KB
testcase_33 AC 419 ms
28,288 KB
testcase_34 AC 128 ms
14,080 KB
testcase_35 AC 218 ms
19,328 KB
testcase_36 AC 236 ms
20,660 KB
testcase_37 AC 478 ms
29,120 KB
testcase_38 AC 362 ms
27,016 KB
testcase_39 AC 120 ms
13,568 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split.map(&:to_i)
E = Hash.new { |h, k| h[k] = [] }

P = []

M.times do
  a, b = gets.split.map(&:to_i)

  E[a] << b
  P << a
  P << b
end

P.unshift(1)
P.push(N)
P.uniq!
P.sort!
L = P.size
dp = Array.new(L, Float::INFINITY)
dp[0] = 0
I = Hash.new

P.each_with_index do |pos, idx|
  I[pos] = idx
end

(L - 1).times do |i|
  a = P[i]
  n_pos = P[i + 1]
  dist = 2 * (n_pos - a)

  dp[i + 1] = dp[i] + dist if dp[i] + dist < dp[i + 1]

  E[a].each do |u|
    idx = I[u]
    b = P[idx]
    dist = 2 * b - 2 * a - 1

    dp[idx] = dp[i] + dist if dp[i] + dist < dp[idx]
  end
end

puts dp.last
0