알고리즘

[ 프로그래머스 ] 2020 카카오 - 자물쇠와 열쇠

황성안 2021. 10. 13. 23:02
728x90

출저 : https://programmers.co.kr/learn/courses/30/lessons/60059?language=python3

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
# 회전 시키기 (+ 90 위치 변경)
def roll(lst):
    n = len(lst)
    change_pan = [[0]*for _ in range(n)]
    
    for i in range(n):
        for j in range(n):
            change_pan[j][n-1-i] = lst[i][j]
    return change_pan
 
# 잠금 해제 가능 체크
def check(sX, sY, key, lock, expendSize, start ,end):
    expendlst = [[0* expendSize for _ in range(expendSize)]
    
    # expendSize에 key 추가
    for i in range(len(key)):
        for j in range(len(key)):
            expendlst[sX+i][sY+j] += key[i][j]
            
            
    # expendList에 ock 추가 + 기존값
    for i in range(start, end):
        for j in range(start, end):
            expendlst[i][j] += lock[i - start][j - start]
            if expendlst[i][j] != 1:
                return False
    return True
    
        
        
        
def solution(key, lock):
    start = len(key) - 1  # expendList에서 lock의 시작 지점
    end = start + len(lock)  # expendList에서 lock이 끝나는 지점
    expendSize = len(lock) + start * 2  # expendList 배열의 크기
 
    # lock은 고정이고 key가 움직이는거!!!
    for a in range(04):
        for i in range(end):
            for j in range(end):
                if check(i, j, key, lock, expendSize, start, end):
                    return True
        key = roll(key)
 
    return False
cs

 

참고 : https://www.youtube.com/watch?v=RrWnBaflV2o 

 

728x90

'알고리즘' 카테고리의 다른 글

[ 프로그래머스 ] 섬 연결하기  (0) 2021.09.24
[ 프로그래머스 ] 구명보트  (0) 2021.09.17
[ 프로그래머스 ] 큰 수 만들기  (0) 2021.09.16
[ 프로그래머스 ] 카펫  (0) 2021.09.14
[프로그래머스] 소수 찾기  (0) 2021.09.14