-
Notifications
You must be signed in to change notification settings - Fork 2
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
46-9kyo-hwang #167
46-9kyo-hwang #167
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.
๊ณ ์ํ์
จ์ต๋๋ค! ์ฌ๋ฌ ๋ฌธ์ ๋ค๋ ์์๋๋ฐ ๋ก๋ด์ฒญ์๊ธฐ๊ฐ ์ด์์ ์์ด์ ๋ก๋ด ์ฒญ์๊ธฐ๋ง ์ผ๋จ ๋ฆฌ๋ทฐํ์ต๋๋ค.
cpp์ ์ต์ํ์ง ์์๋ฐ ๋ก์ง์ ๋๋ฌด ์ค๋ช
์ ์ํ์
์ ์ฝ์ด์ก์ต๋๋ค ใ
ใ
ใ
ใ
๋๋ถ์ ๋ง์ด ๋ฐฐ์๋๋ค ๐โโ๏ธ
vector<vector<int>> Room; | ||
int r, c, d; | ||
|
||
bool OutOfBound(int InR, int InC) |
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.
์๋์์ ์ฌ์ฉํ๋ ๋ฉ์๋์ ๊ฐ์ด boolean์ ๊ฒฝ์ฐ is๋ก ๋ค์ด๋ฐํ์๋ฉด ๋ ์ฝ๊ธฐ ์ข์ ๊ฒ ๊ฐ์์ ๐
bool OutOfBound(int InR, int InC) -> bool isOutOfBound(int InR, int InC)
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.
์ ๋ ์์ ์ is๋ฅผ ๋ถ์์๋๋ฐ, C์์ ๋ฐฐ์ด ์ธ๋ฑ์ค ๋ฒ์ด๋๋ฉด ์ปดํ์ผ๋ฌ์์ out of bound ์๋ฌ๋ฅผ ๋์ด์ฃผ๋ ๊ฑฐ ๋ณด๊ณ "๊ตณ์ด is ์๋ถ์ฌ๋ ๋ ๋ฏ?" ํ๋ฉด์ ์๋ถ์ด๋๊ฒ ์ง๊ธ๊น์ง ๋ฒ๋ฆ์ด ๋๋ค์ ใ
ใ
๋ค์๋ถํด ๋ค์ ๋ถ์ฌ๋ณด๊ฒ ์ต๋๋ค :)
const auto& [dr, dc] = Offset[(d + 2) % 4]; | ||
int nr = r + dr, nc = c + dc; | ||
|
||
if(!OutOfBound(nr, nc) && Room[nr][nc] != 1) |
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.
ํด๋น ๋ผ์ธ์ ์๋์ ๊ฐ์ด ๋๊ณ break ์ผ๋ก ๋๋ฉด else๋ฌธ์ ์ค ์ผ ์ ์์ง์์๊น์..?!
if(isOutOfBound(nr, nc) || Room[nr][nc] == WALL) {
break;
}
r = nr, c = nc;
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.
๋ง์ต๋๋ค. ๋ค๋ง ์ฌ๊ธฐ ๊ฐ์ ๊ฒฝ์ฐ์ ๋ฌธ์ ์์ ์ฃผ์ด์ง ์กฐ๊ฑด๊ณผ ์ผ์นํ๋๋ก ์ผ๋ถ๋ฌ ์์ฑํ๊ธด ํ์ต๋๋ค ใ ใ
} | ||
|
||
bool IsThereABlankSpace() | ||
{ |
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.
ํน์ ์ค๊ดํธ๋ ์ฝ๊ธฐ ํธํ๊ฒ ํ์๋ ค๊ณ , ์์ ๊ฐ์ด ์ฌ์ฉํ์๊ณ ๊ณ์ ๊ฑด๊ฐ์?!
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.
์๊ฑฐ๋ ์์ ์ ๊ฐ ๊ณต๋ถํ๊ณ ์๋ Unreal Engine์ C++ ์ฝ๋ ์ปจ๋ฒค์
๊ณผ ๋น์ทํ๊ฒ ๋ง์ถ๋ ค๊ณ ์ด๋ ๊ฒ ํ๋ ์ค์
๋๋ค :)
์ธ๋ฆฌ์ผ C++ ์ปจ๋ฒค์
์ด ์ค๊ดํธ๋ฅผ ๋ค์ ์ค๋ก ๋๊ธฐ๋๋ผ๊ตฌ์.
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.
๋ฆฌ๋ทฐ๊ฐ ๋ฆ์๋ค์....๐ง๐ปโโ๏ธ
30๋ถ๋ง์ ๋๋ฑ ํ๋ค๋ ์ญ์...๐
์ ๋ ์๋ฌ๊ฐ ๋์ ํ๋ฃจ ์ง๋๊ณ ๋ค์ ํ์์ต๋๋ค ํํ
์ฝ๋๋ง ์ค์ฝ ๋จ๊ธฐ๊ณ ๊ฐ๊ฒ ์ต๋๋ค!!
์ฝ๋
input = open(0).readline
dir = [0, 1, 2, 3] # ๋ถ, ๋, ๋จ, ์
dx = [-1, 0, 1, 0]
dy = [0, 1, 0, -1]
ans = 0
def now_clean(x, y, d):
global ans
if room[x][y] == 0: # ํ์ฌ ์ฒญ์ X
ans += 1
room[x][y] = 2 # ์ฒญ์ ์๋ฃ ํ์
around_clean(x, y, d)
def around_clean(x, y, d):
for _ in range(4):
d = (d + 3) % 4 # ๋ฐ์๊ณ๋ก 90๋ ํ์
if room[x + dx[d]][y + dy[d]] == 0: # ์์ ๋น์นธ์ด ์ฒญ์ X
now_clean(x + dx[d], y + dy[d], d)
return
back(x, y, d)
def back(x, y, d):
bd = (d + 2) % 4 # ํ์ง ๋ฐฉํฅ
if room[x + dx[bd]][y + dy[bd]] != 1: # ๋ฒฝ์ด ์๋ ๊ฒฝ์ฐ ํ์ง
now_clean(x + dx[bd], y + dy[bd], d)
N, M = map(int, input().split())
initial_x, initial_y, initial_d = map(int, input().split())
room = [list(map(int, input().split())) for _ in range(N)]
now_clean(initial_x, initial_y, initial_d)
print(ans)
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.
๋ฌธ์ ์์ ์ซ์๊ฐ ๋ค์ฃฝ๋ฐ์ฃฝ ์์ฌ์๋๊ฑฐ ๋ณด๊ณ ๊ณ ๋ฏผํ์๋๋ฐ... PR์ ๋ฌธ์ ์ ๋ฆฌ๋ ๊ฑฐ ๋ณด๊ณ ์ดํดํ๋ค์ ๐ข
๋ฌธ์ ์ ์ฃผ์ด์ง๋๋ก ๊ตฌํํ๋ฉด ๋์ง๋ง...
์ฝ๊ฐ ๋ค๋ฅธ ๋ฐฉ๋ฒ์ผ๋ก ํ์ดํ ๋ฐฉ๋ฒ์ผ๋ก ์ฝ๋ ๋จ๊น๋๋ค!
2๋ฒ ๊ณผ์ ์์ ๊ฒฐ๊ตญ ์ฃผ๋ณ์ ๋๋ฉด์ ์ฒญ์๋ฅผ ํ๋์ง ์ํ๋์ง ํ์ธํ๊ธฐ ๋๋ฌธ์
3๋ฒ ๊ณผ์ ์ ๋จผ์ ํด์ฃผ๊ณ , 2๋ฒ์ ํด์ฃผ์์ต๋๋ค.
๋ฐ์๊ณ๋ก 4๋ฒ ๋ ๋๊น์ง ( ์์ํ๊ฐ ๋ ๋๊น์ง ), ์ฒญ์ํด์ผ ํ๋ ๊ณณ์ด ์๋ค๋ฉด
2๋ฒ์ ์ํํ๋ ๊ฒ์ผ๋ก ํ์์ต๋๋ค.
input = open("input.txt").readline
N, M = map(int, input().split())
r, c, d = map(int, input().split())
room = [list(map(int, input().split())) for _ in range(N)]
offset = ((-1, 0), (0, 1), (1, 0), (0, -1))
cnt = 0
while True:
# 1
if room[r][c] == 0:
room[r][c] = 2
cnt += 1
is_clean = False
# 3 (๋ฐ์๊ณ๋ก ํ์ )
for turn in range(1, 5):
dr, dc = offset[d-turn]
nr, nc = r + dr, c + dc
if nr < 0 or nr == N or nc < 0 or nc == M or room[nr][nc] != 0:
continue
r, c = nr, nc
d = (d - turn)%4
is_clean = True
break
# 2 (๋ค๋ก ํ์นธ)
if not is_clean:
dr, dc = offset[d-2]
nr, nc = r + dr, c + dc
if nr < 0 or nr == N or nc < 0 or nc == M or room[nr][nc] == 1:
break
r, c = nr, nc
print(cnt)
ํ์ด์ฌ์ ๋ง์ด๋์ค๋ก๋ ๋ฆฌ์คํธ ์ ๊ทผ์ด ๊ฐ๋ฅํ๊ณ , ๋๋จธ์ง๋ฅผ ๊ณ์ฐํ๋ ๊ฒ๋ ์ ๊ตฌํด์ฃผ๊ธฐ ๋๋ฌธ์ ๋ ๋ค ๋นผ๊ณ ๋ค๋ฅธ ์ฒ๋ฆฌ๋ ์ํด์คฌ์ต๋๋ค.
๐ ๋ฌธ์ ๋งํฌ
14503 ๋ก๋ด ์ฒญ์๊ธฐ
โ๏ธ ์์๋ ์๊ฐ
30๋ถ
โจ ์๋ ์ฝ๋
1. ๋ฌธ์
๋, ์, ๋จ, ๋ถ ๋ฐฉํฅ์ผ๋ก ์์ง์ผ ์ ์๋ ๋ก๋ด ์ฒญ์๊ธฐ๊ฐ
๋ก๋ด ์ฒญ์๊ธฐ๊ฐ ์๋์ ์์ํ ํ ์๋์ ๋ฉ์ถ ๋๊น์ง ์ฒญ์ํ๋ ์นธ์ ๊ฐ์๋ฅผ ์ถ๋ ฅํ๋ค.
2. ํ์ด
์ฌํํ ๊ตฌํ/์๋ฎฌ๋ ์ด์ ๋ฌธ์ ์ด๋ค. ๋ฌธ์ ์์ ์ค๋ช ํ ๋๋ก ์ฐจ๊ทผ์ฐจ๊ทผ ํ๋์ฉ ๊ตฌํํด๋ณด์.
์ ๋ ฅ
์ฃผ์ด์ง๋ ๋ฐ์ดํฐ๋ฅผ ์ ์ฅํ๋ค. ๋ก๋ด ์ฒญ์๊ธฐ๋ 4๊ฐ์ง ๋ฐฉํฅ์ ๊ฐ์ง๊ณ ์๋๋ฐ ๊ฐ๊ฐ ๋ถ - 0, ๋ - 1, ๋จ - 2, ์ - 3 ์ด๋ผ ํ์ผ๋ฏ๋ก ๊ทธ์ ๋ง๊ฒ ๋ฐฉํฅ ์คํ์ ์ ๋ณด๋ฅผ ํจ๊ป ์ ์ฅํ๋ค.
๋ก๋ด ์ฒญ์๊ธฐ๊ฐ ๋์์ ๋ฉ์ถ ๋๊น์ง ๋ฌดํ ๋ฐ๋ณต๋ฌธ์ ๋๋ฆฐ๋ค. ๋์์ ๋ฉ์ถ๋ฉด ์ฒญ์ํ ๋ฐฉ ๊ฐ์ cnt๋ฅผ ์ถ๋ ฅํ๋ค.
๋์ 1
๋ง์ฝ ํ์ฌ ์นธ์ด ์ฒญ์๋์ง ์์ ๋น ์นธ(0)์ด๋ผ๋ฉด ์ฒญ์(2)ํ๋ค. ๊ทธ๋ฆฌ๊ณ ์ฒญ์ํ ์นธ ์(cnt)๋ฅผ 1 ์ฆ๊ฐ์ํจ๋ค.
๋์ 2
์ฃผ๋ณ 4๋ฐฉํฅ์ ์ฒญ์๋์ง ์์ ๋น ์นธ์ด ์๋ค๋ฉด(is_there_a_blank_space() == False)
is_there_a_blank_space()
ํจ์๋ ๋ค์๊ณผ ๊ฐ๋ค.๋ฐฉํฅ ์คํ์ ๊ฐ์ ํ๋์ฉ ๊บผ๋ด์ ํ์ฌ ์ขํ(r, c)์ ๋ํด ์ธ์ ์นธ ์ขํ(nr, nc)๋ฅผ ์ป์ด์จ๋ค.
๋์ 3
is_there_a_blank_space()
ํจ์๊ฐ True์ธ ๊ฒฝ์ฐ ์ง์ ํ๋ค.๐ ์๋กญ๊ฒ ์๊ฒ๋ ๋ด์ฉ
์ solved.ac์์ ๊ณจ๋๋ ํ ๋ ค๊ณ ๊ฒ์ํด์ ์ ํผ ๊ฑฐ ํ๋ ๊ณจ๋๋๋ฐ ์๊ฐ๋ณด๋ค ๋๋ฌด ์ฌ์ด ๊ฑธ ํผ ๊ฒ ๊ฐ๋ค์.
๋ค์์ ์ข ๋ ์ด๋ ค์ด ๊ฑฐ ๊ฐ์ ธ์ค๊ฒ ์ต๋๋ค.