結果

問題 No.307 最近色塗る問題多くない?
ユーザー tailstails
提出日時 2015-11-27 23:14:16
言語 Perl
(5.38.2)
結果
TLE  
実行時間 -
コード長 503 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 59,976 KB
最終ジャッジ日時 2024-09-14 00:34:02
合計ジャッジ時間 21,173 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
13,884 KB
testcase_01 AC 4 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 13 ms
6,940 KB
testcase_05 AC 5 ms
6,944 KB
testcase_06 AC 5 ms
6,944 KB
testcase_07 AC 117 ms
13,056 KB
testcase_08 AC 1,260 ms
54,004 KB
testcase_09 AC 427 ms
31,744 KB
testcase_10 AC 26 ms
6,944 KB
testcase_11 AC 61 ms
8,704 KB
testcase_12 AC 5 ms
6,944 KB
testcase_13 AC 69 ms
6,940 KB
testcase_14 AC 41 ms
9,088 KB
testcase_15 AC 67 ms
10,624 KB
testcase_16 AC 62 ms
8,576 KB
testcase_17 AC 1,101 ms
30,080 KB
testcase_18 TLE -
testcase_19 AC 3,361 ms
45,824 KB
testcase_20 AC 8 ms
6,940 KB
testcase_21 AC 2,385 ms
39,808 KB
testcase_22 AC 2,049 ms
59,976 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

($h,$w)=<>=~/\d+/g;
for$y(1..$h){
	@f{map"$_,$y",1..$w}=<>=~/\d/g;
}

sub f{
	my($x,$y)=@_;
	if($x>0&&$x<=$w&&$y>0&&$y<=$h){
		if($f{"$x,$y"}==$c){
			$f{"$x,$y"}=$d;
			++$t;
			f($x-1,$y);
			f($x+1,$y);
			f($x,$y-1);
			f($x,$y+1);
		}
	}
}

for(1..<>){
	($y,$x,$d)=<>=~/\d+/g;
	if(!$n && $f{"$x,$y"}!=$d){
		$t=0;
		$c=1-$d;
		f($x,$y);
		if($t==$h*$w){
			$n=1;
		}
	}
}

if($n){
	for$y(1..$h){
		print join($",($d)x$w),$/;
	}
}else{
	for$y(1..$h){
		print join($",@f{map"$_,$y",1..$w}),$/;
	}
}

0