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
- 구현
- 다익스트라
- 백준
- ue5
- BFS
- Team Fortress 2
- 재귀
- 정렬
- 투 포인터
- 스택
- 유니티
- 수학
- 유니온 파인드
- 그리디 알고리즘
- DFS
- c++
- Unreal Engine 5
- 누적 합
- 브루트포스
- 우선순위 큐
- 문자열
- 알고리즘
- 백트래킹
- 자료구조
- 트리
Archives
- Today
- Total
목록백준 4108 C++ (1)
1일1알
백준 4108번 지뢰찾기 C++
https://www.acmicpc.net/problem/4108 4108번: 지뢰찾기 C개의 문자들이 포함된 R개의 줄을 출력한다. 단, 모든 '.' 대신 인접한 칸에 위치한 지뢰의 수로 변경해 출력한다. '*' 칸은 그대로 출력한다. 문자 사이에 공백이나 줄 사이에 공백 줄이 있어선 www.acmicpc.net #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; using int64 = long long; int dRow[8] = { -1,-1, 0, 1, 1,..
알고리즘
2023. 4. 30. 13:23