-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโll occasionally send you account related emails.
Already on GitHub? Sign in to your account
3-kangrae-jo #10
3-kangrae-jo #10
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
๊ณ ์ํ์ จ์ต๋๋ค!! ๊ฐ๋๋์ ๋จ๊ธฐ๊ฐ์ด์ง๋ง ์๊ณ ๋ฆฌ์ฆ ๋ฌธ์ ํธ๋ ์๋ น์ด ์ ์ ๋๋๊ฒ ๊ฐ๋ค์!
์ ๋ ํ๋ฒ ํ์ด๋ณด๋ ๋น์ทํ ์ฝ๋๊ฐ ๋์์ต๋๋ค. ๋ฌธ์ ํธ๋ ๋ฐฉ๋ฒ์ ์ฝ๋๋ฅผ ๋จผ์ ๋ณด๊ณ ๋๋ ํ๋ฅผ ์ฐ๋๊ฒ ๋จธ๋ฆฌ์ ๋ฐํ์ ๋ ๋์ง ์๋๋ผ๊ตฌ์.. ๊ทธ๋์ ์ ๋ ํ๋ฅผ ์ฌ์ฉํด ๋ฌธ์ ๋ฅผ ํ์์ต๋๋ค. ์ด ๋ฌธ์ ๋๋ถ์ bfs์์ ์์์ง์ ์ด ์ฌ๋ฌ ๊ฐ์ผ ๋ ์ด๋ป๊ฒ ํด์ณ๋๊ฐ๋ฉด ๋ ์ง ๊ฐ์ ์ก์์ต๋๋ค!!!
int matureTomato() {
int day = -1;
while (!q.empty()) {
int tomatoes = q.size();
for (int _ = 0; _ < tomatoes; _++) {
int x = q.front().first;
int y = q.front().second;
q.pop();
for (int dir = 0; dir < 4; dir++) {
int nx = x + offset[dir][0];
int ny = y + offset[dir][1];
if (canMove(nx, ny)) {
box[nx][ny] = 1;
q.push(make_pair(nx, ny));
}
}
}
day++;
}
return day;
}
(๋ฌธ์ ํธ๋๋ฐ ๋ง์ด ๋์์ค์ ๊ณ ๋ง์... ๋ง์ง๋ง ์ ๋ ฅ์ค์๋ ์ง์ง ์ด์ฒ๊ตฌ๋๊ฐ ์๋ค..ใ ใ ใ )
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
from collections import deque
def bfs():
while queue:
x, y = queue.popleft() # ํ์ฌ ์์น (x, y)๋ฅผ ๊บผ๋
# ์
if x - 1 >= 0 and box[x - 1][y] == 0:
box[x - 1][y] = box[x][y] + 1
queue.append((x - 1, y))
# ํ
if x + 1 < N and box[x + 1][y] == 0:
box[x + 1][y] = box[x][y] + 1
queue.append((x + 1, y))
# ์ข
if y - 1 >= 0 and box[x][y - 1] == 0:
box[x][y - 1] = box[x][y] + 1
queue.append((x, y - 1))
# ์ฐ
if y + 1 < M and box[x][y + 1] == 0:
box[x][y + 1] = box[x][y] + 1
queue.append((x, y + 1))
์ ๋ ฅ ์ฒ๋ฆฌ
M, N = map(int, input().split()) # M: ๊ฐ๋ก ํฌ๊ธฐ, N: ์ธ๋ก ํฌ๊ธฐ
box = [list(map(int, input().split())) for _ in range(N)] # ํ ๋งํ ์์์ ์ํ ์
๋ ฅ
queue = deque()
์ต์ ํ ๋งํ (1)์ ์์น๋ฅผ ํ์ ๋ฃ๊ธฐ
for i in range(N):
for j in range(M):
if box[i][j] == 1:
queue.append((i, j))
BFS ์คํ
bfs()
๊ฒฐ๊ณผ ๊ณ์ฐ
max_days = 0
for i in range(N):
for j in range(M):
if box[i][j] == 0: # ์ต์ง ์์ ํ ๋งํ ๊ฐ ๋จ์์๋ค๋ฉด
print(-1)
exit()
max_days = max(max_days, box[i][j])
์ฒ์ ์์์ด 1์ด๋ฏ๋ก 1์ ๋นผ์ ๋ ์ง ๊ณ์ฐ
print(max_days - 1 if max_days > 1 else 0)
์ ๋ ๋ฌธ์ ๋ฅผ ํ๋ค๋ณด๋ ์ ๊ฐ๊ฐ์ ํ ๋ง๋์ ๋ํด ์ต์์๋ก +1์ ํด์ค์ผํ๋์ง ์์์ต๋๋ค. ์ผ๋ฐ์ ์ธ BFS๋ฌธ์ ์ ๋ฌ๋ผ ์ฐธ์ ํ์ต๋๋ค. ์ข ๋ ์ง๊ด์ ์ด๊ฒ ์ํ์ข์ฐ๋ฅผ ์ฒดํฌํ๋ ์ฝ๋๋ก ํ์ด๋ณด์์ต๋๋ค.
๊ฐ๋๋ ๋๋ถ์ BFS์ DFS์ ๋ํด์ ์๊ณ ๋ ์๊ณ ๋ฆฌ์ฆ ๊ฐ๊ฐ ์ด๋ ๋์ ๋ ์ ํฉํ์ง ์ ์ ์์์ต๋๋ค. |
๐ ๋ฌธ์ ๋งํฌ
https://www.acmicpc.net/problem/7576
โ๏ธ ์์๋ ์๊ฐ
50m
โจ ์๋ ์ฝ๋
๋ฌธ์
์ด ๋ฌธ์ ๋ฅผ ์ฝ์ผ๋ฉด์ ๋ฏ์ ๋๋์ ๋ค์ง์์๋ค.
๋ฌธ์ ๋ฅผ ์ฝ์ผ๋ฉด ์ฝ์ ์๋ก 'ํ์ด ์๋ผ๋ ๋ฌธ์ ', '๋ฏธ๋ก์ฐพ๊ธฐ ๋ฌธ์ ' ๊ฐ ๋ ์ฌ๋๋ค.
๋ฌธ์ ๋ฅผ ๋ค ์ฝ๊ณ ์ด ๋ฌธ์ ๋ ํ์ ์ BFS๋ฌธ์ ๋ผ๋ ๊ฒ์ ํ์ ํ๋ค.
๋๋น ์ฐ์ ํ์์ ๊ฐ๋จํ ์ ๋ฆฌํ์๋ฉด
ํ์ฌ ์ํ์์ ๋ป์ด๊ฐ ์ ์๋ ์ํฉ๋ค๋ก ๋ป์ด๋๊ฐ๋ณด๋ ๊ฒ์ด๋ค.
๊น์ด ์ฐ์ ํ์์ ํ ๊ฐ์ง ๊ฒฝ์ฐ์ ๋ํด์ ํ๊ณ ๋ค์ง๋ง ๋๋น ์ฐ์ ํ์์ ๊ทธ๋ ์ง ์๋ค.
๊ทธ๋์ ํ ๋งํ ์ ์ํ๋ฅผ ํ๋ฃจํ๋ฃจ์ ๋ฐ๋ผ ์ ๋ฐ์ดํธ ํ๊ธฐ์ ์ข์ ๋ฐฉ์์ด๋ผ๊ณ ์๊ฐ๋๋ค.
์๋ ์ฝ๋
2-1. ๊บผ๋ธ ํ ๋งํ ๋ฅผ ๊ธฐ์ค์ผ๋ก ์ํ์ข์ฐ ํ ๋งํ ์ํ ํ์ธ
2-2. ํ ๋งํ ์ํ๊ฐ 0์ด๋ผ๋ฉด 1๋ก ์ค์ ํ queue์ ๋ฃ๊ธฐ
์ถ๊ฐ ์ค๋ช
๋ฌธ์ ์ ํต์ฌ์ ๋ค์๊ณผ ๊ฐ๋ค๊ณ ์๊ฐํ๋ค.
์ฒซ์งธ๋ก,
์ฌ์ด BFS๋ฌธ์ ๋ ์ถ๋ฐ์ ์ด ํ๋๋ค. ๊ทธ๋ฐ๋ฐ ์ด ๋ฌธ์ ๋ ์ถ๋ฐ์ ์ ๊ฐ์์ ์์น๊ฐ ์ ํด์ ธ์์ง ์๋ค.
์ต์ ํ ๋งํ ๋ ์ด๋์๋ ์์ ์ ๋ ์๊ณ , ์ ์ด์ ์์ ์ ๋์๋ค.
์ด๋ฐ ์กฐ๊ฑด์ ์ ์ฒ๋ฆฌํ๋ ๊ฒ์ด ์ด๋ฒ ๋ฌธ์ ์ ํต์ฌ์ด๋ผ๊ณ ์๊ฐํ๋ค.
๋์งธ๋ก,
ํ ๋งํ ๋ ํ๋ฃจ ๋จ์๋ก ๋ณํ๋ค๋ ๊ฒ์ด๋ค. (์ฒซ๋ฒ์งธ ํต์ฌ๊ณผ ์ฐ๊ด๋ ๊ฒ์)
์ด๊ฒ ๋ฌด์จ ๋ง์ด๋๋ฉด ๊ทธ๋ฅ while๋ฌธ ์์ level๋ฅผ ++ ์ํค๋ ๋ฑ์ ๋จ์ํ ๋ฌธ์ ๊ฐ ์๋๋ผ๋ ๊ฒ์ด๋ค.
์ด๋ฅผ ํด๊ฒฐํ๊ธฐ ์ํด์๋ '์๋ ์ฝ๋ 2๋ฒ'ํญ๋ชฉ์ ์ ์ดํดํด์ผํ๋ค.
(์ ๊ฐ ์ข ๋ ์ ์ค๋ช ํด์ผํ๋๋ฐ ๊ธ๋ก ํํํ๋๊ฒ ์ด์ง ์ด๋ ต๋ค์. ์ฝ๋ ๊ฐ์ด ๋ณด์๋๊ฑฐ ์ถ์ฒ๋๋ฆฝ๋๋ค.)
ํ์ฌ ๋ ์ง์๋ ๋ฑ ์ ๋ ์ ์ต์ ํ ๋งํ ๊ฐ ๋ค์ด์๋ค.
๊ทธ ํ ๋งํ ๋ค์ ๋ํด BFS๋ฅผ ์งํํ๊ณ level์ ++์์ผ์ผ ์ ๋๋ก ๋ ์ง๊ฐ ์ธ์ด์ง๋ค.
์ถ๊ฐ์ ์ธ ์ ๋ณด๋ก๋ ์์ ์ ๊ทผํธ๋์ด ํธ์ จ๋ ๋ฌธ์ ์ฒ๋ผ offset์ ํ์ฉํ ์ขํ์ด๋์ ํ๋ค๋ ๊ฒ ์ ๋๊ฐ ์๋ค.
๊ทธ๋ฆฌ๊ณ ์ด ์ฝ๋๋ฅผ ์ ์์ ํ๋ฉด ๋ฏธ๋ก์ฐพ๊ธฐ ๋ฟ๋ง ์๋๋ผ ์ต๋จ๊ฒฝ๋ก๋ ์ฐพ์ ์ ์๋ค.
๐ ์๋กญ๊ฒ ์๊ฒ๋ ๋ด์ฉ
์ ๋ ์ฃผ๋ก mainํจ์์ ๋ณ์๋ฅผ ์์ฑํ๊ณ , ๋งค๊ฐ๋ณ์๋ก ํจ์์ ๋๊ธฐ๋ ์คํ์ผ์ ์ฝ๋๋ฅผ ๋ง์ด ์์ฑํ๋ค.
์ด๋ฒ ๋ฌธ์ ๋ฅผ ํ๋ฉด์ ๋ญ๊ฐ vector์ปจํ ์ด๋๋ฅผ ๋งค๊ฐ๋ณ์์ ์๊พธ ์ ์ผ๋ ์ฝ๋๊ฐ ๋๋ฌ์ ์ง๋ ๊ฒ ๊ฐ์๋ค.
(& ๋ก ๋ฐ์ผ๋ฉด ์คํ ๊ณต๊ฐ ๋ฌธ์ ๋ ๊ฑฐ์ ์์ ๊ฒ์)
๊ทธ๋์ ์ ์ญ๋ณ์๋ก vector๋ฅผ ๋บ๋๋ฐ, ์ด์ ๊น์ง๋ .resize()๋ฅผ ๋ง์ด ํ์ฉํ๋ค.
๊ทผ๋ฐ 2์ฐจ์ ๋ฐฐ์ด์ด๋ค๋ณด๋ ๋ญ๊ฐ ์ด๋ ค์ ๊ณ ์ฐพ์๋ณด๋ ๊ทธ๋ฅ
box = vector<vector<int> >(N, vector<int>(M, 0));
์ด๋ ๊ฒ ํ๋ฉด ๋๋ค๊ณ ํ๋ค.
์์ผ๋ก ์์ฃผ ์ฌ์ฉํ ๊ธฐ์ ์ธ ๊ฒ ๊ฐ๋ค.