結果

問題 No.1 道のショートカット
ユーザー horiesinitihoriesiniti
提出日時 2018-03-17 11:09:07
言語 Ruby
(3.4.1)
結果
AC  
実行時間 506 ms / 5,000 ms
コード長 683 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-07-20 16:35:05
合計ジャッジ時間 6,994 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,288 KB
testcase_01 AC 84 ms
12,288 KB
testcase_02 AC 84 ms
12,032 KB
testcase_03 AC 85 ms
12,288 KB
testcase_04 AC 84 ms
12,032 KB
testcase_05 AC 89 ms
12,160 KB
testcase_06 AC 86 ms
12,032 KB
testcase_07 AC 89 ms
12,160 KB
testcase_08 AC 105 ms
12,288 KB
testcase_09 AC 92 ms
12,288 KB
testcase_10 AC 109 ms
12,416 KB
testcase_11 AC 184 ms
12,544 KB
testcase_12 AC 214 ms
13,056 KB
testcase_13 AC 204 ms
13,440 KB
testcase_14 AC 86 ms
12,032 KB
testcase_15 AC 90 ms
12,032 KB
testcase_16 AC 90 ms
12,160 KB
testcase_17 AC 89 ms
12,160 KB
testcase_18 AC 90 ms
12,032 KB
testcase_19 AC 86 ms
12,032 KB
testcase_20 AC 105 ms
12,416 KB
testcase_21 AC 89 ms
12,032 KB
testcase_22 AC 87 ms
12,032 KB
testcase_23 AC 455 ms
12,544 KB
testcase_24 AC 506 ms
12,928 KB
testcase_25 AC 134 ms
12,544 KB
testcase_26 AC 110 ms
12,288 KB
testcase_27 AC 323 ms
13,312 KB
testcase_28 AC 88 ms
12,160 KB
testcase_29 AC 121 ms
12,416 KB
testcase_30 AC 92 ms
12,288 KB
testcase_31 AC 112 ms
12,544 KB
testcase_32 AC 124 ms
12,416 KB
testcase_33 AC 106 ms
12,288 KB
testcase_34 AC 249 ms
12,416 KB
testcase_35 AC 92 ms
12,288 KB
testcase_36 AC 100 ms
12,288 KB
testcase_37 AC 93 ms
12,032 KB
testcase_38 AC 87 ms
12,032 KB
testcase_39 AC 88 ms
12,160 KB
testcase_40 AC 89 ms
12,288 KB
testcase_41 AC 89 ms
12,032 KB
testcase_42 AC 86 ms
12,288 KB
testcase_43 AC 85 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:45: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Main.rb:3: warning: assigned but unused variable - v
Syntax OK

ソースコード

diff #

n=gets.to_i
c=gets.to_i
v=gets.to_i
s=gets.split.map{|e| e.to_i}
t=gets.split.map{|e| e.to_i}
y=gets.split.map{|e| e.to_i}
m=gets.split.map{|e| e.to_i}
g=51.times.map{[]}
s.size.times{|i|
	g[s[i]]<<[t[i],y[i],m[i]]
}
hs={}
hs[[1,0]]=0
dp={}
dp[[1,0]]=0
inf=10**9
ans=inf
while dp.empty? == false
	dp2={}
	dp.each{|e2,v|
		if e2[0]==n
			ans=[ans,v].min
		end
		cost=e2[1]
		g[e2[0]].each{|e3|
			nextCity=e3[0]
			addCost=e3[1]
			addTime=e3[2]
			cost2=cost+addCost
			time2=v+addTime
			if cost2>c
				next
			end
			e4=[nextCity,cost2]
			if hs.key?(e4)==false || hs[e4]>time2
				hs[e4]=time2
				dp2[e4]=time2
			end
		}
		
	}
	dp=dp2
end
if ans==inf
	puts -1
else
	puts ans
end
0