結果

問題 No.1995 CHIKA Road
ユーザー simansiman
提出日時 2022-07-03 08:30:27
言語 Ruby
(3.3.0)
結果
AC  
実行時間 577 ms / 2,000 ms
コード長 602 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 41,216 KB
最終ジャッジ日時 2024-05-06 14:05:27
合計ジャッジ時間 12,279 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
12,288 KB
testcase_01 AC 78 ms
12,288 KB
testcase_02 AC 76 ms
12,160 KB
testcase_03 AC 76 ms
12,288 KB
testcase_04 AC 76 ms
12,288 KB
testcase_05 AC 85 ms
12,160 KB
testcase_06 AC 111 ms
13,824 KB
testcase_07 AC 184 ms
19,584 KB
testcase_08 AC 82 ms
12,160 KB
testcase_09 AC 80 ms
12,160 KB
testcase_10 AC 242 ms
17,664 KB
testcase_11 AC 577 ms
39,984 KB
testcase_12 AC 399 ms
35,840 KB
testcase_13 AC 229 ms
24,704 KB
testcase_14 AC 231 ms
24,864 KB
testcase_15 AC 526 ms
41,216 KB
testcase_16 AC 121 ms
15,232 KB
testcase_17 AC 288 ms
26,740 KB
testcase_18 AC 446 ms
32,256 KB
testcase_19 AC 446 ms
30,784 KB
testcase_20 AC 275 ms
24,904 KB
testcase_21 AC 263 ms
22,016 KB
testcase_22 AC 417 ms
32,504 KB
testcase_23 AC 183 ms
19,072 KB
testcase_24 AC 373 ms
28,672 KB
testcase_25 AC 135 ms
16,000 KB
testcase_26 AC 200 ms
20,024 KB
testcase_27 AC 364 ms
29,440 KB
testcase_28 AC 246 ms
22,184 KB
testcase_29 AC 424 ms
32,128 KB
testcase_30 AC 132 ms
15,488 KB
testcase_31 AC 106 ms
13,696 KB
testcase_32 AC 153 ms
17,536 KB
testcase_33 AC 345 ms
28,852 KB
testcase_34 AC 109 ms
13,952 KB
testcase_35 AC 189 ms
19,456 KB
testcase_36 AC 213 ms
20,224 KB
testcase_37 AC 389 ms
28,992 KB
testcase_38 AC 299 ms
27,128 KB
testcase_39 AC 105 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