結果
問題 | No.160 最短経路のうち辞書順最小 |
ユーザー | tails |
提出日時 | 2015-03-01 23:56:08 |
言語 | Perl (5.38.2) |
結果 |
TLE
|
実行時間 | - |
コード長 | 428 bytes |
コンパイル時間 | 84 ms |
コンパイル使用メモリ | 6,812 KB |
実行使用メモリ | 14,024 KB |
最終ジャッジ日時 | 2024-06-24 00:42:55 |
合計ジャッジ時間 | 8,671 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
6,816 KB |
testcase_01 | AC | 3 ms
6,944 KB |
testcase_02 | AC | 4 ms
6,940 KB |
testcase_03 | AC | 4 ms
6,940 KB |
testcase_04 | AC | 511 ms
7,168 KB |
testcase_05 | AC | 474 ms
8,960 KB |
testcase_06 | AC | 849 ms
11,136 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
コンパイルメッセージ
Name "main::m" used only once: possible typo at Main.pl line 1. Main.pl syntax OK
ソースコード
($n,$m,$s,$g)=<>=~/\d+/g; for(<>){ ($a,$b,$c)=/\d+/g; $c{$a,$b}=$c{$b,$a}=$c; } $v[$g]=1; push@a,$g; while(@a){ $a=pop@a; for$b(0..$n-1){ if($c=$c{$a,$b}){ if($v[$b]==0||$v[$b]>$v[$a]+$c) { $v[$b]=$v[$a]+$c; $p[$b]=$a; push@a,$b; }elsif($v[$b]==$v[$a]+$c) { $p[$b].=" $a"; push@a,$b; } } } } print $s; $a=$s; do{ ($a)=sort{$a-$b}$p[$a]=~/\d+/g; print" $a"; }while($a!=$g);