Muscardinus

새로운 게임 2 본문

알고리즘 문제/[삼성 SW 역량 테스트 기출 문제]

새로운 게임 2

Muscardinus 2020. 9. 5. 03:15
728x90

www.acmicpc.net/problem/17837

 

17837번: 새로운 게임 2

재현이는 주변을 살펴보던 중 체스판과 말을 이용해서 새로운 게임을 만들기로 했다. 새로운 게임은 크기가 N×N인 체스판에서 진행되고, 사용하는 말의 개수는 K개이다. 말은 원판모양이고, 하�

www.acmicpc.net

#include <iostream>

using namespace std;

struct POS {
	int y, x, d;
};

int dy[] = { 0,0,-1,1 };
int dx[] = { 1,-1,0,0 };
int n, k;
int map[12][12][5];
int color[12][12];
int pos_size = 0;
POS pos[10];
int answer = -1;

int turn(int idx) {
	POS cur = pos[idx];
	POS next;
	next.y = cur.y + dy[cur.d];
	next.x = cur.x + dx[cur.d];
	next.d = cur.d;
	//파랑색 혹은 밖으로 나갈 때
	if (next.y < 0 || next.y >= n || next.x < 0 || next.x >= n || color[next.y][next.x] == 2) {
		next.d = (cur.d == 0 || cur.d == 2) ? (cur.d + 1) : (cur.d - 1);
		next.y = cur.y + dy[next.d];
		next.x = cur.x + dx[next.d];
		pos[idx].d = next.d;
		if (next.y < 0 || next.y >= n || next.x < 0 || next.x >= n || color[next.y][next.x] == 2) {
			return map[cur.y][cur.x][0];
		}
	}
	int bottom = -1;
	int& cur_size = map[cur.y][cur.x][0];
	for (int i = 1; i <= cur_size; i++) {
		if (map[cur.y][cur.x][i] == idx) {
			bottom = i;
			break;
		}
	}
	//같이 이동할 값 저장 배열
	int move[5] = { 0, };
	int& move_size = move[0];
	for (int i = bottom; i <= cur_size; ++i) {
		move[++move_size] = map[cur.y][cur.x][i];
	}
	cur_size = bottom - 1;
	//빨강색
	if (color[next.y][next.x] == 1) {
		for (int i = 1; i <= move_size / 2; i++) {
			int temp = move[i];
			move[i] = move[move_size - i + 1];
			move[move_size - i + 1] = temp;
		}
	}
	int& next_size = map[next.y][next.x][0];
	for (int i = 1; i <= move_size; i++) {
		map[next.y][next.x][++next_size] = move[i];
		pos[move[i]].y = next.y;
		pos[move[i]].x = next.x;
		if (next_size >= 4) return next_size;
	}
	return next_size;
}

int main() {
	ios_base::sync_with_stdio(false);
	cin >> n >> k;
	for (int y = 0; y < n; y++) {
		for (int x = 0; x < n; x++) {
			cin >> color[y][x];
		}
	}
	for (int i = 0; i < k; i++) {
		int y, x, d;
		cin >> y >> x >> d;
		y--; x--; d--;
		pos[pos_size].y = y;
		pos[pos_size].x = x;
		pos[pos_size].d = d;
		int& size = map[y][x][0];
		map[y][x][++size] = pos_size;
		pos_size++;
	}
	int loop = 0;
	while (loop <= 1000 && answer == -1) {
		loop++;
		for (int i = 0; i < k; i++) {
			int h = turn(i);
			if (h >= 4) {
				answer = loop;
				break;
			}
		}
	}
	cout << answer << "\n";
	return 0;
}
728x90

'알고리즘 문제 > [삼성 SW 역량 테스트 기출 문제]' 카테고리의 다른 글

주사위 윷놀이  (0) 2020.09.06
원판 돌리기  (0) 2020.09.05
게리멘더링 2  (0) 2020.09.04
연구소 3  (0) 2020.09.04
이차원 배열과 연산  (0) 2020.09.03
Comments