티스토리 뷰
문제출처 - https://programmers.co.kr/learn/courses/30/lessons/42890
from itertools import *
def checkMinimality(candidate, target):
for i in range(len(candidate)):
cnt = 0
for j in range(len(candidate[i])):
if candidate[i][j] in target:
cnt += 1
if cnt == len(candidate[i]):
return False
return True
def checkUniqueness(relation, combi):
arr = []
for i in range(len(relation)):
temp = []
for j in range(len(combi)):
temp.append(relation[i][combi[j]])
if temp in arr:
return False
arr.append(temp)
return True
def solution(relation):
answer = 0
combiList = [i for i in range(len(relation[0]))] # column 개수만큼 배열 할당
combination = [] # 가능한 column의 모든 조합
candidate = [] # 후보키 list
# column으로 가능한 모든 조합 만들기
for i in range(1, len(relation[0])+1):
combination.append(list(combinations(combiList, i)))
# 모든 조합의 유일성, 최소성 따져보기
for i in range(len(combination)):
for j in range(len(combination[i])):
# 유일성, 최소성 둘다 만족하면 후보키에 추가
if checkUniqueness(relation, combination[i][j]) and checkMinimality(candidate, combination[i][j]):
answer += 1
candidate.append(list(combination[i][j]))
return answer
설명
1. column으로 만들수있는 가능한 모든 조합을 찾는다.
2. 유일성, 최소성을 만족하는지 체크한다.
checkMinimality
만약에 후보키 리스트(candidate)가 [[0], [1, 2]]이고 target이 [0, 3]인 경우
candidate[0][0]의 0이 target 안에 포함되어 있기 때문에 최소성을 만족하지 않아 false를 리턴한다.
candidate가 [[0], [1, 2]]이고 target이 [1, 2, 3]인 경우도 마찬가지로
candidate[1][0]의 1과 candidate[1][1]의 2가 모두 target에 포함되어 있기 때문에 최소성을 만족하지 않는다.
checkUniqueness
temp라는 배열에 각 튜플마다 조합(combi)에 해당하는 column의 값들을 넣어준다.
temp가 arr에 이미 존재한다면 유일성을 만족하지 않기 때문에 해당 조합(combi)는 후보키가 될 수 없다!!
'ALGORITHM > 프로그래머스' 카테고리의 다른 글
[Python][힙] 프로그래머스 - 디스크 컨트롤러(LEVEL3) (3) | 2020.04.11 |
---|---|
[Python][2019 KAKAO] 프로그래머스 - 실패율(LEVEL2) (0) | 2020.04.05 |
[Python][2020 KAKAO] 프로그래머스 - 자물쇠와 열쇠(LEVEL3) (3) | 2020.04.02 |
[Python][2020 KAKAO] 프로그래머스 - 기둥과 보 설치(LEVEL3) (0) | 2020.03.25 |
[Python][2020 KAKAO] 프로그래머스 - 괄호변환(LEVEL2) (2) | 2020.03.22 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 구현
- Python
- 스택
- C++
- SWExpert
- 코딩테스트
- 해시
- 딕셔너리
- Permutation
- combination
- 힙
- 파이썬
- 완전탐색
- 프로그래머스
- 문자열
- 정렬
- programmers
- left join
- 괄호
- 2020 KAKAO BLIND RECRUITMENT
- BOJ
- SW Expert
- 순열
- 백준
- 우선순위큐
- 문자열처리
- 재귀
- hash
- 2019 Kakao Blind Recruitment
- dictionary
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함