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
- BFS
- 그리디 알고리즘
- Team Fortress 2
- 우선순위 큐
- 그래프
- 백트래킹
- 투 포인터
- 유니티
- c++
- 자료구조
- 시뮬레이션
- 다익스트라
- 유니온 파인드
- 트리
- Unreal Engine 5
- 문자열
- DFS
- 스택
- ue5
- VR
- 브루트포스
- 알고리즘
- 정렬
- 다이나믹 프로그래밍
- 누적 합
- XR Interaction Toolkit
- 수학
- 백준
- 구현
- 재귀
Archives
- Today
- Total
1일1알
백준 16924번 십자가 찾기 C++ 본문
https://www.acmicpc.net/problem/16924
모든 격자판을 탐색하면서 *을 만나면 4방향으로 탐색해서 4방향중 가장 작은 거리가 그 *에서 그릴 수 있는 가장 큰 십자가이다.
#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;
enum class Dir {
UP,
RIGHT,
DOWN,
LEFT,
};
struct Info {
int row;
int col;
int size;
};
int n, m;
vector<Info> ans;
int dRow[4] = { -1,0,1,0 };
int dCol[4] = { 0,1,0,-1 };
vector<vector<char>> board;
vector<vector<bool>> visited;
int GetCrossCnt(int row, int col, Dir dir) {
int ret = 0;
while (true) {
row += dRow[(int)dir];
col += dCol[(int)dir];
if (row <= 0 || row > n) break;
if (col <= 0 || col > m) break;
if (board[row][col] == '.') break;
ret++;
}
return ret;
}
void SetVisited(int row, int col, int dist) {
visited[row][col] = true;
for (int i = 0; i < 4; i++) {
int nextRow = row;
int nextCol = col;
for (int j = 1; j <= dist; j++) {
nextRow += dRow[i];
nextCol += dCol[i];
visited[nextRow][nextCol] = true;
}
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
board = vector<vector<char>>(n + 1, vector<char>(m + 1));
visited = vector<vector<bool>>(n + 1, vector<bool>(m + 1, false));
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
cin >> board[i][j];
}
}
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
if (board[i][j] == '.') continue;
int up = GetCrossCnt(i, j, Dir::UP);
int right = GetCrossCnt(i, j, Dir::RIGHT);
int down = GetCrossCnt(i, j, Dir::DOWN);
int left = GetCrossCnt(i, j, Dir::LEFT);
int minVal = min(up, min(right, min(down, left)));
if (minVal == 0) continue;
for (int k = 1; k <= minVal; k++) {
ans.push_back({ i,j,k });
}
SetVisited(i, j, minVal);
}
}
bool isAns = true;
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
if (board[i][j] == '.') continue;
if (visited[i][j]) continue;
isAns = false;
}
}
if (isAns == false) cout << -1;
else {
cout << ans.size() << "\n";
for (auto a : ans) {
cout << a.row << " " << a.col << " " << a.size << "\n";
}
}
}
'알고리즘' 카테고리의 다른 글
백준 19640번 화장실의 규칙 C++ (0) | 2022.12.24 |
---|---|
백준 20920번 영단어 암기는 괴로워 C++ (0) | 2022.12.23 |
백준 2072번 오목 C++ (0) | 2022.12.21 |
백준 23757번 아이들과 선물 상자 C++ (0) | 2022.12.20 |
백준 11909번 배열 탈출 C++ (0) | 2022.12.18 |