結果

問題 No.1572 XI
ユーザー kmjpkmjp
提出日時 2021-07-05 22:50:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 1,713 bytes
コンパイル時間 2,165 ms
コンパイル使用メモリ 206,592 KB
実行使用メモリ 28,288 KB
最終ジャッジ日時 2024-07-01 12:03:04
合計ジャッジ時間 6,411 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 24 ms
10,832 KB
testcase_05 AC 109 ms
16,872 KB
testcase_06 AC 82 ms
23,344 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 10 ms
18,560 KB
testcase_09 AC 48 ms
13,056 KB
testcase_10 AC 28 ms
16,640 KB
testcase_11 AC 9 ms
5,376 KB
testcase_12 AC 36 ms
10,752 KB
testcase_13 AC 11 ms
5,760 KB
testcase_14 AC 29 ms
10,112 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 25 ms
9,728 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 8 ms
11,904 KB
testcase_19 AC 22 ms
19,712 KB
testcase_20 AC 18 ms
14,976 KB
testcase_21 AC 87 ms
21,504 KB
testcase_22 AC 106 ms
18,048 KB
testcase_23 AC 4 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,948 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 21 ms
27,004 KB
testcase_35 AC 14 ms
27,712 KB
testcase_36 AC 58 ms
27,392 KB
testcase_37 AC 205 ms
28,288 KB
testcase_38 AC 126 ms
27,264 KB
testcase_39 AC 91 ms
27,392 KB
testcase_40 AC 33 ms
26,112 KB
testcase_41 AC 123 ms
27,264 KB
testcase_42 AC 207 ms
28,032 KB
testcase_43 AC 82 ms
28,160 KB
testcase_44 AC 30 ms
28,288 KB
testcase_45 AC 148 ms
28,280 KB
testcase_46 AC 151 ms
28,160 KB
testcase_47 AC 12 ms
28,288 KB
testcase_48 AC 123 ms
28,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------

int H,W;
int SY,SX,GY,GX;
string S[1010];
int D[1010][1010][6];

int dy[4]={0,-1,0,1};
int dx[4]={-1,0,1,0};
int to[4][6]={
	{1,5,2,0,4,3}, //l
	{4,1,0,3,5,2}, //u
	{3,0,2,5,4,1}, //r
	{2,1,5,3,0,4}, //d
};

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>H>>W;
	cin>>SY>>SX;
	cin>>GY>>GX;
	SY--,SX--,GY--,GX--;
	FOR(y,H) cin>>S[y];
	FOR(y,H) FOR(x,W) FOR(i,6) D[y][x][i]=1<<30;
	queue<int> Q;
	D[SY][SX][0]=0;
	Q.push(SY*1000+SX);
	while(Q.size()) {
		int cy=Q.front()%1000000/1000;
		int cx=Q.front()%1000;
		int ct=Q.front()/1000000;
		Q.pop();
		if(cy==GY&&cx==GX&&ct==0) {
			cout<<D[cy][cx][ct]<<endl;
			return;
		}
		FOR(i,4) {
			int ty=cy+dy[i];
			int tx=cx+dx[i];
			int tt=to[i][ct];
			if(ty<0||ty>=H||tx<0||tx>=W||S[ty][tx]=='#') continue;
			if(D[ty][tx][tt]>D[cy][cx][ct]+1) {
				D[ty][tx][tt]=D[cy][cx][ct]+1;
				Q.push(ty*1000+tx+tt*1000000);
			}
			
			
		}
	}
	cout<<-1<<endl;
	
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0