結果

問題 No.506 限られたジャパリまん
ユーザー tailstails
提出日時 2020-11-05 12:39:47
言語 Perl
(5.38.2)
結果
AC  
実行時間 711 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 31 ms
コンパイル使用メモリ 6,016 KB
実行使用メモリ 6,016 KB
最終ジャッジ日時 2024-06-28 04:25:09
合計ジャッジ時間 4,273 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
5,888 KB
testcase_01 AC 7 ms
5,888 KB
testcase_02 AC 9 ms
5,888 KB
testcase_03 AC 9 ms
5,888 KB
testcase_04 AC 21 ms
5,888 KB
testcase_05 AC 15 ms
5,888 KB
testcase_06 AC 7 ms
5,888 KB
testcase_07 AC 14 ms
5,888 KB
testcase_08 AC 711 ms
6,016 KB
testcase_09 AC 318 ms
6,016 KB
testcase_10 AC 17 ms
5,888 KB
testcase_11 AC 627 ms
5,888 KB
testcase_12 AC 371 ms
5,888 KB
testcase_13 AC 7 ms
6,016 KB
testcase_14 AC 12 ms
5,888 KB
testcase_15 AC 8 ms
5,888 KB
testcase_16 AC 599 ms
6,016 KB
testcase_17 AC 26 ms
5,888 KB
testcase_18 AC 29 ms
5,888 KB
testcase_19 AC 73 ms
6,016 KB
testcase_20 AC 156 ms
6,016 KB
testcase_21 AC 47 ms
5,888 KB
testcase_22 AC 190 ms
6,016 KB
testcase_23 AC 119 ms
6,016 KB
testcase_24 AC 27 ms
5,888 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

($h,$w,$k,$p)=glob<>;
@f=map[glob],<>;
for$i(0..(1<<$k)-1){
	if(unpack("%b*",pack(V,$i))==$p){
		my@a;
		$a[0][1]=1;
		$a[$f[$_][1]+1][$f[$_][0]+1]= ~$i&1<<$_ for 0..$k-1;
		for$y(0..$w){
			for$x(0..$h){
				$a[$y+1][$x+1]=
				$a[$y+1][$x+1]?0:
				$a[$y][$x+1]+$a[$y+1][$x];
			}
		}
		if($bv<$a[$w+1][$h+1]){
			$bv=$a[$w+1][$h+1];
			$bi=$i;
		}
	}
}
$,=$/;
print$bv%=1e9+7,map$f[$_][2],grep$bi&1<<$_,0..$k-1;
0