結果

問題 No.160 最短経路のうち辞書順最小
ユーザー tailstails
提出日時 2015-03-02 01:30:34
言語 Perl
(5.38.2)
結果
AC  
実行時間 186 ms / 5,000 ms
コード長 434 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 6,684 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-06-24 00:55:14
合計ジャッジ時間 2,067 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 4 ms
6,944 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 76 ms
7,296 KB
testcase_05 AC 140 ms
9,088 KB
testcase_06 AC 186 ms
11,136 KB
testcase_07 AC 23 ms
6,944 KB
testcase_08 AC 33 ms
6,940 KB
testcase_09 AC 31 ms
6,944 KB
testcase_10 AC 30 ms
6,940 KB
testcase_11 AC 36 ms
6,944 KB
testcase_12 AC 35 ms
6,944 KB
testcase_13 AC 28 ms
6,944 KB
testcase_14 AC 25 ms
6,944 KB
testcase_15 AC 25 ms
6,944 KB
testcase_16 AC 39 ms
6,940 KB
testcase_17 AC 27 ms
6,940 KB
testcase_18 AC 30 ms
6,940 KB
testcase_19 AC 42 ms
6,944 KB
testcase_20 AC 45 ms
6,940 KB
testcase_21 AC 22 ms
6,944 KB
testcase_22 AC 24 ms
6,940 KB
testcase_23 AC 36 ms
6,944 KB
testcase_24 AC 38 ms
6,940 KB
testcase_25 AC 28 ms
6,944 KB
testcase_26 AC 30 ms
6,944 KB
testcase_27 AC 14 ms
6,944 KB
testcase_28 AC 109 ms
14,208 KB
testcase_29 AC 12 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::m" used only once: possible typo at Main.pl line 1.
Main.pl syntax OK

ソースコード

diff #

($n,$m,$s,$g)=<>=~/\d+/g;
for(<>){
    ($a,$b,$c)=/\d+/g;
    $c{$a,$b}=$c{$b,$a}=$c;
}
#print"a\n";

$v[$g]=1;
push@a,$g;
while(@a){
    #@a=sort{$v[$a]-$v[$b]}@a;
    $a=shift@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) {
		$v[$b]=$v[$a]+$c;
		$p[$b]=$a;
		push@a,$b;
	    }
	}
    }
}
#print"b\n";
print $s;
$a=$s;
do{
    $a=$p[$a];
    print" $a";
}while($a!=$g);
0