結果

問題 No.2913 二次元距離空間
ユーザー tailstails
提出日時 2024-10-04 22:05:32
言語 cLay
(20240714-1)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 423 bytes
コンパイル時間 3,024 ms
コンパイル使用メモリ 175,908 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-10-04 22:05:37
合計ジャッジ時間 3,304 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 6 ms
7,296 KB
testcase_17 AC 6 ms
7,168 KB
testcase_18 AC 26 ms
7,168 KB
testcase_19 AC 30 ms
7,040 KB
testcase_20 AC 27 ms
7,296 KB
testcase_21 AC 4 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 28 ms
7,168 KB
testcase_24 AC 3 ms
5,248 KB
testcase_25 AC 28 ms
7,168 KB
testcase_26 AC 4 ms
5,632 KB
testcase_27 AC 29 ms
7,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@h,@w;
string@s[h];
DijkstraHeap<ll>d;
d.malloc(h*w,1);
d.change(0,0);
while(d.size){
	ll a=d.pop();
	ll v=d.val[a];
	ll y=a/w;
	ll x=a%w;
	if(y    &&s[y-1][x]!='#')d.change(a-w,v+1);
	if(y<h-1&&s[y+1][x]!='#')d.change(a+w,v+1);
	if(x    &&s[y][x-1]!='#')d.change(a-1,v+h*w);
	if(x<w-1&&s[y][x+1]!='#')d.change(a+1,v+h*w);
}
if(d.visited[h*w-1]){
	wt("Yes");
	ll v=d.val[h*w-1];
	wt(v/(h*w),v%(h*w));
}else{
	wt("No");
}
0