링크 : https://programmers.co.kr/learn/courses/30/lessons/60061
def solution(n, build_frame):
q = []
for x in build_frame:
a, b = x[0],x[1]
# 설치
if x[3] == 1:
# 기둥
if (x[2] == 0) and (b==0 or [a,b-1,0] in q or [a,b,1] in q or [a-1,b,1] in q) and b+1 <= n:
q.append([a,b,0])
# 보
if (x[2] == 1) and (b!= 0): # 바닥에는 설치 불가
# 한쪽 끝이 기둥 위
if a+1<= n and ([a, b-1, 0] in q or [a+1, b-1, 0] in q) :
q.append([a,b,1])
# 양쪽 끝이 다른 보와 동시에 연결
elif a+1 <= n and ([a-1,b,1] in q) and ([a+1, b,1] in q):
q.append([a,b,1])
# 삭제
elif x[3] == 0:
# 기둥 삭제
if x[2] == 0 :
# 기둥 위에 보와 기둥 모두 없거나
if [a, b+1, 1] not in q and [a-1,b+1,1] not in q and [a,b+1,1] not in q:
q.remove([a,b,0])
# 기둥 위에 보가 있다면 양옆으로 보 확인
if ([a,b,1] in q and [a+1,b-1,0] in q) or ([a-1,b,1] in q and [a-1,b-1,0] in q):
q.remove([a,b,0]) # 여기부터
# 보 삭제 (양 옆에 보가 있고 기둥이 안 받치고 있으면 삭제 불가)
if x[2]==1:
if not ([a-1,b,1] in q and [a+1,b,1] in q and ([a,b-1,0] not in q or [a+1, b-1, 0] not in q)):
q.remove([a,b,1])
q = sorted(q, key = lambda x : (x[0],x[1]))
return sorted(q)
possible
를 호출. 만약 가능하지 않다면 그 명령 무시한다.# 현재 설치된 구조물이 가능한 구조물인지 확인하는 함수
def possible(answer):
for x, y, stuff in answer:
if stuff == 0: # 설치된 것이 기둥인 경우
# '바닥위' 혹은 '보의 한쪽 끝부분 위' 혹은 '다른 기둥 위'라면 정상
if y==0 or [x-1,y,1] in answer or [x,y,1] in answer or [x,y-1,0] in answer:
continue
return False # 아니라면 거짓 반환
elif stuff == 1: # 설치된 것이 보인 경우
# '한쪽 끝부분이 기둥 위' 혹은 '양쪽 끝부분이 다른 보와 동시에 연결'이라면 정상
if [x,y-1,0] in answer or [x+1,y-1,0] in answer or ([x-1,y,1] in answer and [x+1,y,1] in answer):
continue
return False # 아니라면 거짓 반환
return True
def solution(n,build_frame):
answer = []
for frame in build_frame:
x,y,stuff,operator = frame
if operator == 0: # 삭제하는 경우
answer.remove([x,y,stuff])
if not possible(answer):
answer.append([x,y,stuff])
if operator == 1: # 설치하는 경우
answer.append([x,y,stuff])
if not possible(answer):
answer.remove([x,y,stuff])
return sorted(answer)
+) 다른 사람 풀이
삭제하는 부분.
install
로 beam_board 또는 pillar_board에서 삭제하고res.remove([x, y, is_beam])