일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- DFS
- 카카오코테
- dp
- 부주상골수술
- 스택
- SQLD
- SWIFT
- IOS
- 카카오인턴십
- 독학
- BFS
- c++
- 롯데정보통신
- 리눅스
- 구현
- 코테
- 독일어독학
- 부주상골
- 코딩테스트
- 부주상골수술후기
- istringstream
- sql
- 카카오인턴
- 백준
- ChatGPT
- 세브란스
- 프로그래머스
- 부주상골증후군
- 독일어
- 분할정복
Archives
- Today
- Total
슈뢰딩거의 고등어
[BOJ] 3190 뱀 (C++) 본문
https://www.acmicpc.net/problem/3190
deque 사용
#include <iostream>
#include <vector>
#include <deque>
using namespace std;
const int dy[] = {-1, 0, 1, 0};
const int dx[] = {0, 1, 0, -1};
int n, k, l, res;
int map[101][101];
int x, y, dir;
vector <pair <int, char>> turn;
deque <pair <int, int>> snake;
void solve() {
int idx = 0;
while(true) {
res++;
int ny = snake.front().first + dy[dir];
int nx = snake.front().second + dx[dir];
if(ny < 0 || ny >= n || nx >= n || nx < 0 || map[ny][nx] == 2) break;
else if(map[ny][nx] == 0) {
snake.push_front(make_pair(ny, nx));
map[ny][nx] = 2;
map[snake.back().first][snake.back().second] = 0;
snake.pop_back();
}
else if(map[ny][nx] == 1) {
snake.push_front(make_pair(ny, nx));
map[ny][nx] = 2;
}
if(idx < turn.size()) {
if(turn[idx].first == res) {
if(turn[idx].second == 'D')
dir = (dir + 1) % 4;
if(turn[idx].second == 'L')
dir = (dir + 3) % 4;
idx++;
}
}
}
}
int main() {
x = 0; y = 0; dir = 1;
map[y][x] = 2;
snake.push_front(make_pair(y, x));
scanf("%d", &n);
scanf("%d", &k);
for(int i=0; i<k; i++) {
int a, b;
scanf("%d %d", &a, &b);
a--; b--;
map[a][b] = 1;
}
scanf("%d", &l);
while(l--) {
int x;
char c;
scanf("%d %c", &x, &c);
turn.push_back(make_pair(x, c));
}
solve();
printf("%d\n", res);
return 0;
}
'알고리즘' 카테고리의 다른 글
상하좌우 기울이기 문제 회전하여 한 방향만 구현하기 (회전, 기울이기) (0) | 2022.01.04 |
---|---|
[BOJ] 14891 톱니바퀴 (C++) (0) | 2022.01.03 |
[BOJ] 14503 로봇청소기 (C++) (0) | 2021.12.31 |
[BOJ] 14889 스타트와 링크 - 조합 (C++) (0) | 2021.12.27 |
DFS 순열 조합 (0) | 2021.12.26 |
Comments