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
- 브루트포스
- 우선순위 큐
- 그래프
- 스택
- 정렬
- VR
- 시뮬레이션
- 트리
- 다익스트라
- XR Interaction Toolkit
- 다이나믹 프로그래밍
- DFS
- 백준
- 재귀
- 백트래킹
- 그리디 알고리즘
- 유니티
- 자료구조
- Team Fortress 2
- ue5
- 수학
- 구현
- 알고리즘
- Unreal Engine 5
- 누적 합
- 투 포인터
- c++
- BFS
- 유니온 파인드
- 문자열
Archives
- Today
- Total
1일1알
백준 1347번 미로 만들기 C++ 본문
100*100 맵의 중간에서 시작한다고 가정한 뒤에 찾은 길을 저장하고 출력하였다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
using namespace std;
using ll = long long;
int dRow[4] = { -1,0,1,0 };
int dCol[4] = { 0,1,0,-1 };
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int n;
string str;
cin >> n >> str;
int dir = 2;
int row, rowMax, rowMin;
int col, colMax, colMin;
row = rowMax = rowMin = col = colMax = colMin = 50;
vector<vector<bool>> board(101, vector<bool>(101, false));
board[row][col] = true;
for (int i = 0; i < n; i++) {
char move = str[i];
if (move == 'F') {
row += dRow[dir];
col += dCol[dir];
rowMax = max(rowMax, row);
rowMin = min(rowMin, row);
colMax = max(colMax, col);
colMin = min(colMin, col);
board[row][col] = true;
}
else if (move == 'L') {
dir = (dir + 3) % 4;
}
else if (move == 'R') {
dir = (dir + 1) % 4;
}
}
for (int i = rowMin; i <= rowMax; i++) {
for (int j = colMin; j <= colMax; j++) {
if (board[i][j]) cout << '.';
else cout << '#';
}
cout << "\n";
}
};
'알고리즘' 카테고리의 다른 글
백준 1385번 벌집 C++ (0) | 2022.04.26 |
---|---|
백준 1380번 귀걸이 C++ (0) | 2022.04.25 |
백준 1337번 올바른 배열 C++ (0) | 2022.04.23 |
백준 1331번 나이트 투어 C++ (0) | 2022.04.22 |
백준 1292번 쉽게 푸는 문제 C++ (0) | 2022.04.21 |