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
- 트리
- 정렬
- XR Interaction Toolkit
- VR
- 재귀
- 누적 합
- 브루트포스
- 투 포인터
- BFS
- 유니온 파인드
- 유니티
- 자료구조
- Team Fortress 2
- 다이나믹 프로그래밍
- ue5
- DFS
- c++
- 시뮬레이션
- 알고리즘
- 문자열
- Unreal Engine 5
- 우선순위 큐
- 스택
- 그래프
- 그리디 알고리즘
- 수학
- 백트래킹
- 다익스트라
- 구현
- 백준
Archives
- Today
- Total
1일1알
백준 4108번 지뢰찾기 C++ 본문
https://www.acmicpc.net/problem/4108
#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[8] = { -1,-1, 0, 1, 1, 1, 0,-1 };
int dCol[8] = { 0, 1, 1, 1, 0,-1,-1,-1 };
vector<vector<char>> board;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int r, c;
while (true) {
cin >> r >> c;
if (r == 0 && c == 0) break;
board = vector<vector<char>>(r, vector<char>(c));
for (int i = 0; i < r; i++) {
for (int j = 0; j < c; j++) {
cin >> board[i][j];
}
}
for (int i = 0; i < r; i++) {
for (int j = 0; j < c; j++) {
if (board[i][j] == '*') continue;
int cnt = 0;
for (int k = 0; k < 8; k++) {
int nextRow = i + dRow[k];
int nextCol = j + dCol[k];
if (nextRow < 0 || nextRow >= r) continue;
if (nextCol < 0 || nextCol >= c) continue;
if (board[nextRow][nextCol] != '*') continue;
cnt++;
}
board[i][j] = cnt + 48;
}
}
for (int i = 0; i < r; i++) {
for (int j = 0; j < c; j++) {
cout << board[i][j];
}
cout << "\n";
}
}
};
'알고리즘' 카테고리의 다른 글
백준 3060번 욕심쟁이 돼지 C++ (0) | 2023.05.03 |
---|---|
백준 2799번 블라인드 C++ (0) | 2023.05.02 |
백준 23843번 콘센트 C++ (0) | 2023.04.29 |
백준 5464번 주차장 C++ (0) | 2023.04.28 |
백준 1448번 삼각형 만들기 C++ (0) | 2023.04.26 |