結果

問題 No.157 2つの空洞
ユーザー tailstails
提出日時 2015-02-27 00:10:57
言語 Perl
(5.38.2)
結果
AC  
実行時間 26 ms / 2,000 ms
コード長 870 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-23 21:51:22
合計ジャッジ時間 969 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
6,812 KB
testcase_01 AC 5 ms
6,944 KB
testcase_02 AC 5 ms
6,940 KB
testcase_03 AC 6 ms
6,940 KB
testcase_04 AC 6 ms
6,944 KB
testcase_05 AC 6 ms
6,940 KB
testcase_06 AC 10 ms
6,944 KB
testcase_07 AC 6 ms
6,944 KB
testcase_08 AC 5 ms
6,944 KB
testcase_09 AC 6 ms
6,944 KB
testcase_10 AC 5 ms
6,944 KB
testcase_11 AC 10 ms
6,940 KB
testcase_12 AC 14 ms
6,940 KB
testcase_13 AC 16 ms
6,940 KB
testcase_14 AC 14 ms
6,940 KB
testcase_15 AC 17 ms
6,940 KB
testcase_16 AC 18 ms
6,940 KB
testcase_17 AC 15 ms
6,940 KB
testcase_18 AC 20 ms
6,944 KB
testcase_19 AC 26 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

($w,$h)=<>=~/\d+/g;
$/=\1;
for$y(1..$h){
    for$x(1..$w+1){
	$f{$x,$y}=<>;
    }
}
l1:{
    for$y(1..$h){
	for$x(1..$w){
	    if($f{$x,$y}eq'.'){
		$f{$x,$y}=A;
		last l1;
	    }
	}
    }
}
for(0..99){
for$y(1..$h){
    for$x(1..$w){
	if($f{$x,$y}eq'.'){
	    if($f{$x-1,$y}eq A || $f{$x+1,$y}eq A || $f{$x,$y-1}eq A || $f{$x,$y+1}eq A ){
		$f{$x,$y}=A;
	    }
	}
    }
}
}
for$l(0..99){
    for$y(1..$h){
	for$x(1..$w){
	    if($f{$x,$y}eq 'A'){
		if($f{$x-1,$y}eq '.'|| $f{$x+1,$y}eq '.' || $f{$x,$y-1}eq '.' || $f{$x,$y+1}eq '.' ){
		    print $l;
		    exit;
		}
		if($f{$x-1,$y}eq'#'){
		    $f{$x-1,$y}=B;
		}
		if($f{$x+1,$y}eq'#'){
		    $f{$x+1,$y}=B;
		}
		if($f{$x,$y-1}eq'#'){
		    $f{$x,$y-1}=B;
		}
		if($f{$x,$y+1}eq'#'){
		    $f{$x,$y+1}=B;
		}
	    }
	}
    }
    for$y(1..$h){
	for$x(1..$w){
	    if($f{$x,$y}eq B){
		$f{$x,$y}=A;
	    }
	}
    }
}
0