結果

問題 No.367 ナイトの転身
ユーザー airuaiairuai
提出日時 2016-12-02 22:32:46
言語 C++11
(gcc 11.4.0)
結果
MLE  
実行時間 -
コード長 2,589 bytes
コンパイル時間 693 ms
コンパイル使用メモリ 66,856 KB
実行使用メモリ 813,996 KB
最終ジャッジ日時 2024-05-05 17:56:57
合計ジャッジ時間 3,692 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 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 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 MLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <queue>
#include <list>
using namespace std;
#define N 0
#define B 1
#define ull unsigned long long int
struct Data {
	short int x, y, c, s;
};
queue<Data> q;
int h, w, x, y;
int state = N;
bool*** f;
int c = 1;

void pushQ(int x, int y, int c, int s) {
	Data* t = new Data();
	t->x = x, t->y = y, t->c = c, t->s = s;
	q.push(*t);
}

void pushqueue() {
	if (state) { // state = B
		if (x - 1 >= 0) {
			if (y - 1 >= 0) {
				if (!f[y-1][x-1][state]) {
					pushQ(x - 1, y - 1, c, state);
				}
			}
			if (y + 1 < h) {
				if (!f[y+1][x-1][state]) {
					pushQ(x - 1, y + 1, c, state);
				}
			}
		}
		if (x + 1 < w) {
			if (y - 1 >= 0) {
				if (!f[y-1][x+1][state]) {
					pushQ(x + 1, y - 1, c, state);
				}
			}
			if (y + 1 < h) {
				if (!f[y+1][x+1][state]) {
					pushQ(x + 1, y + 1, c, state);
				}
			}
		}
	}
	else { // state = N
		if (x - 2 >= 0) {
			if (y - 1 >= 0) {
				if (!f[y-1][x-2][state]) {
					pushQ(x - 2, y - 1, c, state);
				}
			}
			if (y + 1 < h) {
				if (!f[y+1][x-2][state]) {
					pushQ(x - 2, y + 1, c, state);
				}
			}
		}
		if (x - 1 >= 0) {
			if (y - 2 >= 0) {
				if (!f[y-2][x-1][state]) {
					pushQ(x - 1, y - 2, c, state);
				}
			}
			if (y + 2 < h) {
				if (!f[y+2][x-1][state]) {
					pushQ(x - 1, y + 2, c, state);
				}
			}
		}
		if (x + 1 < w) {
			if (y - 2 >= 0) {
				if (!f[y-2][x+1][state]) {
					pushQ(x + 1, y - 2, c, state);
				}
			}
			if (y + 2 < h) {
				if (!f[y+2][x+1][state]) {
					pushQ(x + 1, y + 2, c, state);
				}
			}
		}
		if (x + 2 < w) {
			if (y - 1 >= 0) {
				if (!f[y-1][x+2][state]) {
					pushQ(x + 2, y - 1, c, state);
				}
			}
			if (y + 1 < h) {
				if (!f[y+1][x+2][state]) {
					pushQ(x + 2, y + 1, c, state);
				}
			}
		}
	}
}

void popq() {
	Data t = q.front();
	q.pop();
	x = t.x, y = t.y, c = t.c, state = t.s;
}

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);
	cin >> h >> w;
	char** d = new char*[h];
	f = new bool**[h];
	for (int i = 0; i < h; ++i) {
		d[i] = new char[w];
		f[i] = new bool*[w];
		for (int j = 0; j < w; ++j) {
			cin >> d[i][j];
			f[i][j] = new bool[2];
			if (d[i][j] == 'S') {
				d[i][j] = '.';
				f[i][j][N] = true;
				f[i][j][B] = false;
				y = i;
				x = j;
			}
			else {
				f[i][j][N] = false;
				f[i][j][B] = false;
			}
		}
	}

	pushqueue();
	while (!(q.empty())) {
		popq();
		f[y][x][state] = true;
		if (d[y][x] == 'G') {
			cout << c << endl;
			goto end;
		}
		else if (d[y][x] == 'R') {
			state ^= 1; // stateが1なら0、0なら1
		}
		++c;
		pushqueue();
	}
	cout << -1 << endl;
end:
	return 0;
}
0