Notice
Recent Posts
Recent Comments
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
- 원형
- 우분투
- MySQL
- 유니티
- 영상 프레임 추출
- 18249
- 단어 수학
- 문자열 압축
- 탄막
- 탄막 스킬 범위
- 백준
- 회의실 배정
- 2020 KAKAO BLIND RECRUITMENT
- 마우스 따라다니기
- 탄막 이동
- 토글 그룹
- 수 만들기
- 3273
- 강의실2
- 걷는건귀찮아
- AI Hub
- 자료구조 목차
- 알고리즘 목차
- 알고리즘
- SWEA
- 그리디알고리즘
- 윈도우
- c#
- 3344
- mysqld.sock
Archives
- Today
- Total
와이유스토리
[시뮬레이션] 백준 3190 뱀 C++ 본문
https://www.acmicpc.net/problem/3190
#include <iostream>
#include <limits.h>
#include <memory.h>
#include <vector>
#include <queue>
using namespace std;
int ans = 0, N = 0, K = 0;
// 상우하좌 0, 1, 2, 3
int dx[4] = { 0, 1, 0, -1 };
int dy[4] = { -1, 0, 1, 0 };
struct snake {
vector<vector<int>> body;
int hx, hy, tx, ty;
};
void path(vector<vector<int>> arr, vector<pair<int, char>> v, snake s, int dir)
{
while ((v.size() == 0) || (ans < v[0].first))
{
s.body[s.hy][s.hx] = dir;
ans++;
s.hx += dx[dir];
s.hy += dy[dir];
if ((s.hx < 0) || (s.hy < 0) || (s.hx >= N) || (s.hy >= N)) return;
if ((s.body[s.hy][s.hx]) != -1) return;
if (arr[s.hy][s.hx] == 0) {
int t = s.body[s.ty][s.tx];
s.body[s.ty][s.tx] = -1;
if (t != -1) {
s.tx += dx[t];
s.ty += dy[t];
}
}
else {
arr[s.hy][s.hx] = 0;
}
}
char d = v[0].second;
v.erase(v.begin());
// 0 : (1, 3), 1 : (2, 0), 2 : (3, 1), 3 : (0, 2)
if (d == 'D') path(arr, v, s, (dir + 1) % 4);
else path(arr, v, s, (dir + 3) % 4);
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
cin >> N >> K;
vector<vector<int>> arr(N, vector<int>(N, 0));
vector<vector<int>> body(N, vector<int>(N, -1));
for (int i = 0; i < K; i++)
{
int a = 0, b = 0;
cin >> a >> b;
arr[a - 1][b - 1] = 1;
}
int L; cin >> L;
vector<pair<int, char>> v;
for (int i = 0; i < L; i++)
{
int a;
char b;
cin >> a >> b;
v.push_back({ a, b });
}
snake s = { body, 0, 0, 0, 0 };
path(arr, v, s, 1); // 우 시작
cout << ans;
}
'코딩테스트 > 시뮬레이션' 카테고리의 다른 글
[시뮬레이션] 프로그래머스 [1차] 프렌즈4블록 C++ (0) | 2022.03.03 |
---|---|
[시뮬레이션] 백준 20056 마법사 상어와 파이어볼 C++ (0) | 2022.02.08 |
[시뮬레이션] 백준 19237 어른 상어 C++ (0) | 2022.02.07 |
[시뮬레이션] 백준 3954 Brainf**k 인터프리터 C++ (0) | 2022.02.05 |
[시뮬레이션] 프로그래머스 키패드 누르기 C++ (0) | 2021.12.29 |
Comments