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
- XR Interaction Toolkit
- 백트래킹
- 유니티
- 다이나믹 프로그래밍
- BFS
- DFS
- 자료구조
- ue5
- Unreal Engine 5
- 구현
- 스택
- 문자열
- 수학
- 우선순위 큐
- 그래프
- 재귀
- 트리
- 그리디 알고리즘
- 정렬
- 시뮬레이션
- 브루트포스
- 누적 합
- c++
- 다익스트라
- 유니온 파인드
- 투 포인터
- 알고리즘
- VR
Archives
- Today
- Total
1일1알
백준 1913번 달팽이 C++ 본문
https://www.acmicpc.net/problem/1913
#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 <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
int dRow[4] = { -1,0,1,0 };
int dCol[4] = { 0,1,0,-1 };
int n, target;
int dir = 3;
vector<vector<int>> board;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> target;
board = vector<vector<int>>(n, vector<int>(n, -1));
int currRow = n / 2;
int currCol = n / 2;
int targetRow = -1;
int targetCol = -1;
int num = 0;
while (true) {
board[currRow][currCol] = ++num;
if (board[currRow][currCol] == target) {
targetRow = currRow;
targetCol = currCol;
}
if (currRow == 0 && currCol == 0) break;
int rightDir = (dir + 1) % 4;
int nextRow = currRow + dRow[rightDir];
int nextCol = currCol + dCol[rightDir];
if (board[nextRow][nextCol] == -1) {
dir = rightDir;
}
else {
nextRow = currRow + dRow[dir];
nextCol = currCol + dCol[dir];
}
currRow = nextRow;
currCol = nextCol;
}
for (auto a : board) {
for (auto b : a) {
cout << b << " ";
}
cout << "\n";
}
cout << targetRow + 1 << " " << targetCol + 1;
};
'알고리즘' 카테고리의 다른 글
백준 1464번 뒤집기 3 C++ (1) | 2023.02.19 |
---|---|
백준 24230번 트리 색칠하기 C++ (0) | 2023.02.18 |
백준 13265번 색칠하기 C++ (0) | 2023.02.14 |
백준 4097번 수익 C++ (0) | 2023.02.13 |
백준 19638번 센티와 마법의 뿅망치 C++ (0) | 2023.02.12 |