結果
問題 | No.1 道のショートカット |
ユーザー | chrom_sh |
提出日時 | 2015-01-13 22:25:47 |
言語 | Perl (5.38.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,879 bytes |
コンパイル時間 | 110 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 216,696 KB |
最終ジャッジ日時 | 2024-07-08 03:41:16 |
合計ジャッジ時間 | 15,563 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 17 ms
7,168 KB |
testcase_01 | AC | 18 ms
7,040 KB |
testcase_02 | AC | 17 ms
7,040 KB |
testcase_03 | AC | 17 ms
7,040 KB |
testcase_04 | WA | - |
testcase_05 | AC | 17 ms
7,040 KB |
testcase_06 | AC | 18 ms
6,912 KB |
testcase_07 | AC | 17 ms
7,040 KB |
testcase_08 | AC | 72 ms
7,936 KB |
testcase_09 | AC | 21 ms
7,552 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 18 ms
7,040 KB |
testcase_16 | WA | - |
testcase_17 | AC | 17 ms
7,040 KB |
testcase_18 | AC | 18 ms
7,168 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 18 ms
7,168 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 72 ms
10,880 KB |
testcase_26 | WA | - |
testcase_27 | TLE | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
コンパイルメッセージ
Main.pl syntax OK
ソースコード
# http://yukicoder.me/problems/17 use strict; use warnings; use 5.010; use Data::Dumper; my $goal = _read_line(); my $money = _read_line(); my $roads = _read_line(); my $map = read_map(); # 前処理終了。 # 解く my $ans = solve($map, $money, $goal); say $ans; sub _read_line { my $line = <STDIN>; chomp($line); return $line; } sub read_map { my $s = [split(/ /, _read_line())]; my $t = [split(/ /, _read_line())]; my $y = [split(/ /, _read_line())]; my $m = [split(/ /, _read_line())]; my $ret = {}; for (my $i = 0 ; $i < @$s ; $i++) { my $start = $s->[$i]; my $dest = $t->[$i]; $ret->{$start} ||= {}; $ret->{$start}->{$dest} = { cost => $y->[$i], dist => $m->[$i], }; } return $ret; } sub solve { my ($map, $money, $goal) = @_; my $cur = [ { pos => 1, cost => 0, dist => 0, } ]; my $res = []; while (my $state = pop(@$cur)) { while (my ($k, $v) = each(%{$map->{ $state->{ pos } }})) { my $cost = $v->{ cost } + $state->{ cost }; my $dist = $v->{ dist } + $state->{ dist }; next if ($cost > $money); if ($k == $goal) { push @$res, { cost => $cost, dist => $dist, } } else { push @$cur, { pos => $k, cost => $cost, dist => $dist, }; } } } $res = [sort {$a->{dist} <=> $b->{dist}} @$res]; #warn Dumper($res); return -1 if @$res == 0; return $res->[0]->{dist}; }