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 | 31 |
Tags
- 생활코딩
- JavaScript
- 펜윅 트리
- 다익스트라
- 시뮬레이션
- 컴퓨터 구조
- jpa
- dp
- 다이나믹 프로그래밍
- 데이터 분석
- 백준 1753번
- 삼성 SW 역량테스트
- BFS
- ICPC
- 접미사 배열
- Cloud Pub/Sub
- CI/CD
- Cloud Run
- Bit
- r
- Air Table
- REACT
- 삼성SW역량테스트
- 종만북
- 수학
- 그리디
- 고속 푸리에 변환
- 우선순위 큐
- 이분탐색
- LCS
Archives
- Today
- Total
코딩스토리
백준 16236번 - 아기상어 본문
백준 16236번 - 아기 상어
https://www.acmicpc.net/problem/16236
아기 상어 문제는 bfs알고리즘으로 해결하였다.
처음에는 전형적인 bfs문제라 생각하고 문제의 조건 중 가장 가까운 거리에 있는 물고기가 많은 경우의 조건을 잘못
생각해서 bfs를 북 서 동 남 순서대로 돌리면 알아서 조건을 만족할 거라 생각했다.
예제를 돌려보다 이런 방식은 오류가 난다는 것을 알 수 있었다.
vector에 pair로 저장해서 가장 가까운 거리의 물고기를 찾았었는데 정답이 안 나와서
tuple로 바꿔서 tuple(거리, 행, 열) 순으로 저장해 놓은 뒤 sort를 통해 조건을 만족시켰다.
나머지는 일반적인 bfs 문제와 거의 동일하다.
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
#include <iostream>
#include <queue>
#include <vector>
#include <algorithm>
#include <tuple>
#include <cstring>
#pragma warning(disable:4996)
using namespace std;
int n, x, y;
int baby = 2;
int cnt = 0;
int map[21][21];
int dx[4] = { -1,0,0,1 }; //북,서,동,남
int dy[4] = { 0,-1,1,0 };
bool check[21][21] = { false };
int dis[21][21];
vector<tuple<int,int, int>>v;
int count(int a, int b) {
int ans = 0;
while (1) {
memset(check, false, sizeof(check));
memset(dis, 0, sizeof(dis));
v.clear();
queue<pair< int, int >> q;
q.push(make_pair(a, b));
check[a][b] = true;
dis[a][b] = 0;
int c = 0;
while (!q.empty()) {
a = q.front().first;
b = q.front().second;
q.pop();
for (int i = 0; i < 4; i++) {
int nx = a + dx[i];
int ny = b + dy[i];
if (0 <= nx && nx < n && 0 <= ny && ny < n) {
if (check[nx][ny] == false && baby >= map[nx][ny]) {
q.push(make_pair(nx, ny));
check[nx][ny] = true;
dis[nx][ny] = dis[a][b] + 1;
if (baby > map[nx][ny] && map[nx][ny] != 0) v.push_back(make_tuple(dis[nx][ny], nx, ny));
}
}
}
}
if (!v.empty()) {
sort(v.begin(), v.end());
//이동(몇초걸리는지 계산)
tie(c, a, b) = v.front();
map[a][b] = 0;
cnt++;
if (cnt == baby) {
cnt = 0;
baby++;
}
ans += dis[a][b];
}
else break;
}
return ans;
}
int main() {
scanf("%d", &n);
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
scanf("%d", &map[i][j]);
if (map[i][j] == 9) {
x = i;
y = j; //아기상어의 위치
map[i][j] = 0;
}
}
}
printf("%d\n", count(x, y));
}
|
cs |
조건들만 잘 만족시켜주면 쉽게 해결할 수 있다.
'알고리즘 > 삼성 SW 역량테스트 기출 문제' 카테고리의 다른 글
백준 17144번 - 미세먼지 안녕! (0) | 2020.08.17 |
---|---|
백준 16235번 - 나무 재테크 (0) | 2020.08.15 |
백준 14503번 - 로봇 청소기 (0) | 2020.08.09 |
백준 3190번 - 뱀 (0) | 2020.08.06 |
백준 14499번 - 주사위 굴리기 (0) | 2020.08.06 |
Comments