結果

問題 No.611 Day of the Mountain
ユーザー tailstails
提出日時 2017-12-22 12:14:10
言語 cLay
(20240714-1)
結果
AC  
実行時間 1,169 ms / 2,017 ms
コード長 553 bytes
コンパイル時間 3,172 ms
コンパイル使用メモリ 181,240 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-05 12:51:12
合計ジャッジ時間 8,693 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 956 ms
5,248 KB
testcase_01 AC 965 ms
5,376 KB
testcase_02 AC 935 ms
5,376 KB
testcase_03 AC 1,169 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define MD 201712111

int h,w,t[320];
char a[320][320];
mint d[1<<18],*u=d,*v=d+(1<<17);

{
	rd(h,w,a(h));
	if(w>h){
		rep(y,w)rep(x,y)swap(a[y][x],a[x][y]);
		swap(w,h);
	}
	u[0]=1;
	rep(y,h)rep(x,w){
		int ty=(y?t[x]:1<<30);
		int tx=(x?t[x-1]:1<<30);
		rep(b,1<<w){
			bool b0=1&b>>x;
			bool b1=1&b>>x-1;
			v[b]=(ty<tx||ty>tx&&b0==b1||ty==tx&&b0<=b1)*(u[b]+(ty>tx||ty==tx&&!b1)*u[b^1<<x]);
			if(b0&&a[y][x]=='?'){
				v[b]+=(v[b-(1<<x)]+v[b])*8;
			}
		}
		swap(u,v);
		t[x]=(x+y?min(ty,tx):0)+a[y][x]%16%14;
	}
	wt(t[w-1]);
	wt(sum(u(1<<w-1)));
}
0