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 |
Tags
- 문자열
- 시뮬레이션
- 유니티
- 백트래킹
- 투 포인터
- 그래프
- 자료구조
- 다익스트라
- 다이나믹 프로그래밍
- 우선순위 큐
- 정렬
- 누적 합
- 브루트포스
- 재귀
- Team Fortress 2
- 알고리즘
- c++
- 유니온 파인드
- 구현
- 스택
- 트리
- 그리디 알고리즘
- VR
- Unreal Engine 5
- ue5
- BFS
- 수학
- DFS
- XR Interaction Toolkit
- 백준
Archives
- Today
- Total
1일1알
백준 8911번 거북이 C++ 본문
https://www.acmicpc.net/problem/8911
구현, 시뮬레이션
#include <iostream>
#include <vector>
#include <algorithm>
#include <stack>
#include <queue>
#include <map>
#include <set>
using namespace std;
int dRow[4] = { -1,0,1,0 };
int dCol[4] = { 0,1,0,-1 };
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
int t;
cin >> t;
while (t--) {
int dir = 0;
int row = 0, col = 0;
int minRow = 0, minCol = 0, maxRow = 0, maxCol = 0;
string str;
cin >> str;
for (int i = 0; i < str.length(); i++) {
char order = str[i];
switch (order) {
case 'F':
row += dRow[dir];
col += dCol[dir];
break;
case 'B':
row -= dRow[dir];
col -= dCol[dir];
break;
case 'L':
dir = (dir + 3) % 4;
break;
case 'R':
dir = (dir + 1) % 4;
break;
}
minRow = min(minRow, row);
minCol = min(minCol, col);
maxRow = max(maxRow, row);
maxCol = max(maxCol, col);
}
int width = maxCol - minCol;
int height = maxRow - minRow;
cout << width * height << "\n";
}
}
'알고리즘' 카테고리의 다른 글
백준 25516번 거리가 k이하인 트리 노드에서 사과 수확하기 C++ (0) | 2022.11.18 |
---|---|
백준 16719번 ZOAC C++ (0) | 2022.11.17 |
백준 15565번 귀여운 라이언 C++ (0) | 2022.11.15 |
백준 15591번 MooTube (Silver) C++ (0) | 2022.11.14 |
백준 12919번 A와 B 2 C++ (0) | 2022.11.13 |