일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- heapq
- Re
- 프로그래머스
- java
- python
- divmod
- Set
- 정규식
- programmers
- lambda
- dfs
- 파이썬
- 자바
- 위클리 챌린지
- Zip
- 수학
- 다익스트라
- 그리디
- backjoon
- Combinations
- 추석맞이 코딩챌린지
- 동적 계획법
- 백준
- 재귀함수
- 이분탐색
- DateTime
- KAKAO BLIND RECRUITMENT
- 정렬
- BFS
- 카카오
Archives
- Today
- Total
상상쓰
[백준] 가르침 본문
https://www.acmicpc.net/problem/1062
1062번: 가르침
첫째 줄에 단어의 개수 N과 K가 주어진다. N은 50보다 작거나 같은 자연수이고, K는 26보다 작거나 같은 자연수 또는 0이다. 둘째 줄부터 N개의 줄에 남극 언어의 단어가 주어진다. 단어는 영어 소문
www.acmicpc.net
combinations 을 직접 구현해보았고 구한 candidate 배열과 words 배열의 단어랑 비교하여 읽을 수 있는 단어를 찾는 것을 빠르게 구하는 게 중요했다. 우선, 'a', 'c', 'i', 'n', 't' 는 모든 단어마다 있으므로 K - 5 가 음수면 0을 출력해야 하며, K 가 26이면 모든 N개의 단어를 읽을 수 있으므로 N을 출력해주면 된다.
dictionary 를 이용하여 배운 K개의 글자에 대해서 1로 저장하여 읽을 수 없는 글자에 대해서 break 로 바로 다음 순서로 넘어가게 하였다. 해당 단어를 읽을 수 있다면 temp 에 1을 더하여 answer 을 temp 중 가장 큰 값으로 만들어 준다.
import sys
from collections import defaultdict
N, K = map(int, sys.stdin.readline().split())
acint = {'a', 'c', 'i', 'n', 't'}
words = [set(sys.stdin.readline().strip()[4:-4]) - acint for i in range(N)]
alphabet = list('bdefghjklmopqrsuvwxyz')
candidate = defaultdict(int)
K -= 5
start = 0
end = K
answer = 0
def combinations(alphabet, start, end, candidate):
global K
global words
global answer
if end == 0:
temp = 0
for word in words:
for w in word:
if candidate[w] == 0:
break
else:
temp += 1
answer = max(answer, temp)
else:
for i in range(start, len(alphabet)-end+1):
candidate[alphabet[i]] = 1
combinations(alphabet, i+1, end-1, candidate)
candidate[alphabet[i]] = 0
if K < 0:
print(0)
else:
if K == 21:
print(N)
else:
combinations(alphabet, start, end, candidate)
print(answer)
'Coding Test' 카테고리의 다른 글
[프로그래머스] 구명보트 (0) | 2021.11.02 |
---|---|
[백준] 멀티탭 스케줄링 (0) | 2021.11.01 |
[백준] 지능형 기차 2 (0) | 2021.10.29 |
[백준] 약수 구하기 (0) | 2021.10.29 |
[백준] 빗물 (0) | 2021.10.28 |
Comments