-
Notifications
You must be signed in to change notification settings - Fork 1
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
2-wjdheesp44 #6
2-wjdheesp44 #6
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.
์ ๋ ํฌ์๋์ด ๋งํ์ ๊ฑฐ์ฒ๋ผ ๋ฑ์ด ์ด๋ํ ํ ์ด๋ฅผ ์ธ๋์ง, ์ด๋ฅผ ์ธ๊ณ ์ด๋ํ๋์ง ํท๊ฐ๋ ธ์ด์. ์ ๋ ๋ฌธ์ ์ดํด๊ฐ ์ ์๋์ ์์ฑํด์ฃผ์ ์๋์ฝ๋ ๋ณด๊ณ ์ดํดํ๋ค์. ๊ผผ๊ผผํ๊ฒ ์์ฑํด์ฃผ์ จ๋ค์!
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.
์ด๋ ๊ฒ ์ด๋ํ๋ ๋ฌธ์ ๋ ์ญ์ ๊ทธ๋ฆผ ๊ทธ๋ฆฌ๋ฉด์ ํ๋ฉด ๋ ์ฝ๊ฒ ํ ์ ์์ฃ .
while (true) {
time++;
nextPos();
if (!(wallCheck() && moveSnake()))
break;
appleCheck();
turn();
}
์ ๋ ๊ธฐ๋ฅ๋ณ๋ก ์ด๋ ๊ฒ ํ๋๋ฐ ์ทจํฅ์ฐจ์ด๊ฒ ์ฃ
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 change(d, c):
# ์(0) ์ฐ(1) ํ(2) ์ข(3)
# ๋์ชฝ ํ์ : ์(0) -> ์ฐ(1) -> ํ(2) -> ์ข(3) -> ์(0) : +1 ๋ฐฉํฅ
# ์ผ์ชฝ ํ์ : ์(0) -> ์ข(3) -> ํ(2) -> ์ฐ(1) -> ์(0) : -1 ๋ฐฉํฅ
if c == "L":
d = (d - 1) % 4
else:
d = (d + 1) % 4
return d
# ์ ์ฐ ํ ์ข
dy = [-1, 0, 1, 0]
dx = [0, 1, 0, -1]
def start():
direction = 1 # ์ด๊ธฐ ๋ฐฉํฅ
time = 1 # ์๊ฐ
y, x = 0, 0 # ์ด๊ธฐ ๋ฑ ์์น
visited = deque([[y, x]]) # ๋ฐฉ๋ฌธ ์์น
arr[y][x] = 2
while True:
y, x = y + dy[direction], x + dx[direction]
if 0 <= y < N and 0 <= x < N and arr[y][x] != 2:
if not arr[y][x] == 1: # ์ฌ๊ณผ๊ฐ ์๋ ๊ฒฝ์ฐ
temp_y, temp_x = visited.popleft()
arr[temp_y][temp_x] = 0 # ๊ผฌ๋ฆฌ ์ ๊ฑฐ
arr[y][x] = 2
visited.append([y, x])
if time in times.keys():
direction = change(direction, times[time])
time += 1
else: # ๋ณธ์ธ ๋ชธ์ ๋ถ๋ชํ๊ฑฐ๋, ๋ฒฝ์ ๋ถ๋ชํ ๊ฒฝ์ฐ
return time
if __name__ == "__main__":
# input
N = int(input())
K = int(input())
arr = [[0] * N for _ in range(N)]
for _ in range(K):
a, b = map(int, input().split())
arr[a - 1][b - 1] = 1 # ์ฌ๊ณผ ์ ์ฅ
L = int(input())
times = {}
for i in range(L):
X, C = input().split()
times[int(X)] = C
print(start())
- change(d, c) -> ๋ฑ์ ๋ฐฉํฅ์ ๋ณ๊ฒฝํ๋ ์ญํ , ํ์ฌ ๋ฐฉํฅ - d, ํ์ ํ ๋ฐฉํฅ์ ๋ํ๋ด๋ ๋ฌธ์ - c
- start() -> ๊ฒ์์ด ์์๋๋ ์ง์ . ๋ฑ์ด ์ด๋ํ๋ฉด์ ๊ฒ์์ด ์งํ ๋๋ค.
- ํ์ฌ ๋ฐฉํฅ์ ๋ฐ๋ผ ๋ค์ ์์น๋ฅผ ๊ณ์ฐ
- ๋ค์ ์์น๊ฐ ์ ํจํ ๋ฒ์ ๋ด์ ์๊ณ , ๋ฑ์ ๋ชธํต์ด ์๋ ์์น๋ผ๋ฉด
- ์ฌ๊ณผ๊ฐ ์๋์ง ํ์ธํ์ฌ, ์ฌ๊ณผ๊ฐ ์๋ค๋ฉด ๋ฑ์ ๊ผฌ๋ฆฌ๋ฅผ ์ค์.
- ๋ฑ์ ๋จธ๋ฆฌ๋ฅผ ๋ค์ ์์น๋ก ์ด๋์ํด.
- ์ด๋ํ ์์น๋ฅผ ๋ฐฉ๋ฌธํ ๊ฒ์ผ๋ก ํ์ํ๊ณ , ๋ฑ์ ๋ชธํต ์์น๋ฅผ ๊ธฐ๋ก.
- ์๊ฐ์ด ํน์ ์๊ฐ๋์ ๋๋ฌํ๋ฉด ๋ฐฉํฅ์ ๋ณ๊ฒฝ.
- ๋ฒฝ์ด๋ ๋ฑ์ ๋ชธํต์ ๋ถ๋ชํ๋ฉด ๊ฒ์์ด ์ข ๋ฃ๋๊ณ ํ์ฌ ์๊ฐ ๋ฐํ
๐ ๋ฌธ์ ๋งํฌ
3190๋ฒ ๋ฑ
โ๏ธ ์์๋ ์๊ฐ
1์๊ฐ
โจ ์๋ ์ฝ๋
๊ตฌํ ๋ฌธ์ ๋ก ๊ทธ๋๋ก ๊ตฌํํด์ฃผ๋ฉด ๋๋ ๋ฌธ์ ์์ต๋๋ค.
ํฌ๊ฒ 3๊ฐ์ง ๊ธฐ๋ฅ์ ๊ตฌํํ๋ฉด ๋๋ ๊ฒ์ด์์ต๋๋ค.
์์
์ฌ๊ณผ๊ฐ ์๋ ์นธ = 2
๋ฑ์ด ์๋ ์นธ = 1
์๋ฌด๊ฒ๋ ์๋ ์นธ = 0
์ด๋ฐ ์์ผ๋ก ์นธ์ ๊ตฌ๋ณํด ์ฃผ์์ต๋๋ค.
๋ค์ ์์ ์์ ์ฌ๊ณผ๋ ๋นจ๊ฐ ๋ฐํ์ผ๋ก ๋ํ๋์ต๋๋ค.
์์ 1
๋ฒฝ์ ๋ถ๋ชํ์ gameover ๋ฉ๋๋ค.์์ 2
๋ฒฝ์ ๋ถ๋ชํ์ gameover ๋ฉ๋๋ค.์์ 3
์๊ธฐ์์ ์๊ฒ ๋ถ๋ชํ์ gameover ๋ฉ๋๋ค. (๋ฑ ๊ธธ์ด ๋๋ฌธ์)๐ ์๋กญ๊ฒ ์๊ฒ๋ ๋ด์ฉ
์ฒ์์ ๋ฌธ์ ๋ฅผ ๋ณผ ๋, ๋ฑ์ด ์ด๋ํ ํ ์ด๋ฅผ ์ธ๋์ง, ์ด๋ฅผ ์ธ๊ณ ์ด๋ํ๋์ง ํท๊ฐ๋ ธ์ต๋๋ค... ๋ฌธ์ ๋ฅผ ์ ์ฝ๊ณ ์๋ฎฌ๋ ์ด์ ๋ฌธ์ ๋ ๊ทธ๋ฆผ์ ์ ํํ ๊ทธ๋ ค์ผ ์ฝ๋๋ฅผ ์ง๊ธฐ ์ข๋ค๋ ๊ฒ์ ๋ค์๊ธ ๊นจ๋ซ๊ฒ ๋๋ ๊ฒ ๊ฐ์์.