Recent Posts
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 깡돼후
- taint
- 달인막창
- k8s #kubernetes #쿠버네티스
- terminal
- Value too long for column
- tolerated
- 코루틴 빌더
- 겨울 부산
- JanusGateway
- 오블완
- vfr video
- 코루틴 컨텍스트
- VARCHAR (1)
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
- preemption #
- JanusWebRTCGateway
- 티스토리챌린지
- Spring Batch
- PytestPluginManager
- JanusWebRTCServer
- pytest
- 개성국밥
- 자원부족
- mp4fpsmod
- table not found
- PersistenceContext
- kotlin
- python
- JanusWebRTC
Archives
너와 나의 스토리
[SW Expert Academy] 1824. 혁진이의 프로그램 검증 본문
반응형
문제: https://swexpertacademy.com/main/solvingProblem/solvingProblem.do
소스 코드:
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <queue>
#include <vector>
#include <string.h>
#include <algorithm>
#include <deque>
#include <cmath>
#include <string>
#include <stdio.h>
#include <set>
#include <cstdlib>
using namespace std;
int tc, n, m;
int dx[4] = { -1,0,1,0 };
int dy[4] = { 0,1,0,-1 };
char arr[22][22];
bool visit[22][22][4][17];
struct state {
int curx;
int cury;
int dir;
int memory;
};
queue<state> q;
bool func() {
while (!q.empty()) q.pop();
q.push({ 0, 0, 1, 0 });
while (!q.empty()) {
int curx = q.front().curx;
int cury = q.front().cury;
int dir = q.front().dir;
int memory = q.front().memory;
q.pop();
if (visit[curx][cury][dir][memory]) continue;
visit[curx][cury][dir][memory]=true;
if (arr[curx][cury] == '<') {
dir = 3;
}
else if (arr[curx][cury] == '>') {
dir = 1;
}
else if (arr[curx][cury] == '^') {
dir = 0;
}
else if (arr[curx][cury] == 'v') {
dir = 2;
}
else if (arr[curx][cury] == '_') {
if (memory == 0) {
//if (visit[curx][cury]==5|| visit[curx][cury] ==12) return false;
dir = 1;
}
else {
//if (visit[curx][cury] == 7 || visit[curx][cury] == 12) return false;
dir = 3;
}
}
else if (arr[curx][cury] == '|') {
if (memory == 0) {
//if (visit[curx][cury] == 6 || visit[curx][cury] == 10) return false;
dir = 2;
}
else {
//if (visit[curx][cury] == 4|| visit[curx][cury] == 10) return false;
dir = 0;
}
}
else if (arr[curx][cury] == '?') {
for (int i = 0; i < 4; i++) {
int x = (curx + dx[i] + n) % n;
int y = (cury + dy[i] + m) % m;
q.push({ x,y,i,memory });
}
continue;
}
else if (arr[curx][cury] == '@') return true;
else if (arr[curx][cury] == '+') {
memory = (memory + 1) % 16;
}
else if (arr[curx][cury] == '-') {
memory = (memory - 1+16) % 16;
}
else if (arr[curx][cury] == '.') {
}
else {
memory = arr[curx][cury] - '0';
}
curx = (curx + dx[dir]+n) % n;
cury = (cury + dy[dir] + m) % m;
q.push({ curx,cury,dir,memory });
}
return false;
}
int main() {
cin.tie(0), cout.tie(0);
ios::sync_with_stdio(false);
cin >> tc;
for (int z = 1; z <= tc; z++) {
cin >> n >> m;
memset(visit, 0, sizeof(visit));
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
cin >> arr[i][j];
}
}
if (func()) {
cout << "#" << z << " YES\n";
}
else {
cout << "#" << z << " NO\n";
}
}
return 0;
}
반응형
'Algorithm > 구현' 카테고리의 다른 글
"2018 KAKAO BLIND RECRUITMENT" > [1차] 캐시 (0) | 2020.10.10 |
---|---|
"2018 KAKAO BLIND RECRUITMENT" > [1차] 프렌즈4블록 (0) | 2020.10.09 |
[BOJ] 18809 Gaaaaaaaaaarden (0) | 2020.05.19 |
[BOJ] 18808 스티커 붙이기 (0) | 2020.05.19 |
[Programmers] 2019 카카오 개발자 겨울 인턴십 - 크레인 인형뽑기 게임 (0) | 2020.05.04 |
Comments