Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 종만북
- php
- graph
- BASIC
- 따배씨
- web
- 따라하면서 배우는 C언어
- 정수론
- sorting
- greedy
- Algospot
- 백준
- Math
- server
- 생활코딩
- C
- DP
- 인프런
- udemy
- BFS
- Algorithm
- programmers
- dfs
- 따라하며 배우는 C언어
- Python
- BOJ
- C언어
- String
- Cleancode
- JavaScript
Archives
- Today
- Total
몽상실현개발주의
[BOJ] 1759 / 암호 만들기 / Python 파이썬 본문
[BOJ] 1759 / 암호 만들기 / Python 파이썬
https://www.acmicpc.net/problem/1759
풀이
경우의 수를 조합으로 구성하여 쉽게 해결하였다.
from itertools import combinations
L, C = map(int, input().split())
alphas = input().split()
alphas.sort()
aeiou = ('a', 'e', 'i', 'o', 'u')
# 최소 한 개의 모음(a, e, i, o, u)과 최소 두 개의 자음
# 알파벳이 암호에서 증가하는 순서로 배열
res = set()
for com in combinations(range(C), L):
tmp = ""
aeiouCnt = 0
notAeiouCnt = 0
for c in com:
if alphas[c] in aeiou:
aeiouCnt += 1
else:
notAeiouCnt += 1
tmp += alphas[c]
if aeiouCnt < 1 or notAeiouCnt < 2:
continue
res.add(tmp)
res = list(res)
res.sort()
for r in res:
print(r)
'Algorithm PS > BOJ' 카테고리의 다른 글
[BOJ] 1987 / 알파벳 / Python 파이썬 (0) | 2021.08.09 |
---|---|
[BOJ] 2580 / 스도쿠 / Python 파이썬 (0) | 2021.08.05 |
[BOJ] 5014 / 스타트링크 / Python 파이썬 (0) | 2021.08.04 |
[BOJ] 3108 / 로고 / Python 파이썬 (0) | 2021.08.03 |
[BOJ] 2186 / 문자판 / Python 파이썬 (0) | 2021.08.02 |
Comments