結果

問題 No.323 yuki国
ユーザー furafura
提出日時 2020-06-14 04:43:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 75 ms / 5,000 ms
コード長 762 bytes
コンパイル時間 2,560 ms
コンパイル使用メモリ 208,280 KB
実行使用メモリ 6,656 KB
最終ジャッジ日時 2024-06-26 08:46:39
合計ジャッジ時間 4,684 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 48 ms
6,528 KB
testcase_09 AC 47 ms
6,528 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 48 ms
6,528 KB
testcase_14 AC 49 ms
6,400 KB
testcase_15 AC 43 ms
6,528 KB
testcase_16 AC 47 ms
6,400 KB
testcase_17 AC 58 ms
6,656 KB
testcase_18 AC 18 ms
5,376 KB
testcase_19 AC 35 ms
5,376 KB
testcase_20 AC 74 ms
6,400 KB
testcase_21 AC 73 ms
6,656 KB
testcase_22 AC 75 ms
6,400 KB
testcase_23 AC 74 ms
6,528 KB
testcase_24 AC 51 ms
6,528 KB
testcase_25 AC 51 ms
6,656 KB
testcase_26 AC 60 ms
6,528 KB
testcase_27 AC 61 ms
6,528 KB
testcase_28 AC 56 ms
6,400 KB
testcase_29 AC 59 ms
6,400 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;

const int dx[]={1,0,-1,0},dy[]={0,-1,0,1};

int main(){
	int h,w; scanf("%d%d",&h,&w);
	int sn,sy,sx; scanf("%d%d%d",&sn,&sy,&sx);
	int gn,gy,gx; scanf("%d%d%d",&gn,&gy,&gx);
	char B[50][51];
	rep(i,h) scanf("%s",B[i]);

	static bool vis[50][50][1200];
	vis[sy][sx][sn]=true;
	queue<tuple<int,int,int>> Q; Q.emplace(sy,sx,sn);
	while(!Q.empty()){
		int y,x,n; tie(y,x,n)=Q.front(); Q.pop();
		rep(k,4){
			int yy=y+dy[k],xx=x+dx[k];
			if(0<=yy && yy<h && 0<=xx && xx<w){
				int nn=n+(B[yy][xx]=='*'?1:-1);
				if(0<nn && nn<1200 && !vis[yy][xx][nn]){
					vis[yy][xx][nn]=true;
					Q.emplace(yy,xx,nn);
				}
			}
		}
	}
	puts(vis[gy][gx][gn]?"Yes":"No");

	return 0;
}
0