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
- pytest
- tolerated
- kotlin
- 겨울 부산
- terminal
- taint
- 티스토리챌린지
- k8s #kubernetes #쿠버네티스
- preemption #
- mp4fpsmod
- PersistenceContext
- vfr video
- VARCHAR (1)
- JanusWebRTCGateway
- 개성국밥
- table not found
- 달인막창
- PytestPluginManager
- JanusWebRTC
- 깡돼후
- JanusWebRTCServer
- JanusGateway
- 자원부족
- Spring Batch
- python
- 코루틴 빌더
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
- 코루틴 컨텍스트
- 오블완
- Value too long for column
Archives
너와 나의 스토리
[BOJ] 13567 로봇 본문
반응형
문제: https://www.acmicpc.net/problem/13567
문제 풀이:
int dx[4] = { 1,0,-1,0 };
int dy[4] = { 0,1,0,-1 };
0: 상 1: 우 2: 하 3: 좌
로 설정해 놓고
좌표를 가리키는 변수 하나, (x,y) 값을 표시하는 변수 하나 만들고 기록하면서 움직이면 됨
소스 코드:
#include <iostream>
#include <vector>
#include <string.h>
#include <string>
#include <queue>
#include <string>
using namespace std;
typedef pair<int, int> P;
int n, m;
int dx[4] = { 1,0,-1,0 };
int dy[4] = { 0,1,0,-1 };
int dir;
P pos;
bool move(int dist) {
pos.first += dx[dir] * dist;
pos.second += dy[dir] * dist;
if (pos.first<0 || pos.first>n || pos.second<0 || pos.second>n) return false;
return true;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
dir = 1;
for (int i = 0; i < m; i++) {
string s;
int t;
cin >> s>>t;
if (s == "MOVE") {
if (!move(t)) {
cout << "-1\n";
return 0;
}
}
else if (s == "TURN") {
if (t == 0) dir = (dir - 1 + 4) % 4;
else dir = (dir + 1) % 4;
}
}
cout << pos.second << " " << pos.first<< '\n';
return 0;
}
반응형
'Algorithm > 구현' 카테고리의 다른 글
[Programmers] 2019 카카오 개발자 겨울 인턴십 - 크레인 인형뽑기 게임 (0) | 2020.05.04 |
---|---|
1770. [SW Test 샘플문제] 블록 부품 맞추기 (4) | 2019.11.07 |
(BOJ) 2933 미네랄 (0) | 2019.07.28 |
(BOJ) 11559 Puyo Puyo (0) | 2019.07.22 |
(BOJ) 1100 하얀 칸 (0) | 2019.07.21 |
Comments