일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- programmers
- 모각코
- 장고
- 종합설계
- codetree
- 마라마라빔
- Kruskal
- 소프트웨어공학
- 코드트리
- 그리디알고리즘
- 백트래킹
- 함밥
- DFS
- 실습
- DP
- Planned
- 알고리즘
- 파이썬
- 프로그래머스
- MyPlaylist
- django
- minimum spanning tree
- BFS
- 백준
- 최소스패닝트리
- B대면노래방
- SQL
- 데이터베이스
- 동적계획법
- Bellman-Ford
Archives
- Today
- Total
Leta Learns
[Python] 백준 1759번 - 암호 만들기 본문
문제 https://www.acmicpc.net/problem/1759
처음에는 문자를 하나하나 비교해서 풀어야 하나 라는 생각을 했다.
귀찮기도 하고 감도 잘 안 잡혀서 생각 좀 하다가 java 풀이를 검색했다.
combination을 사용한 풀이가 있길래 나도 combination 함수를 사용하였다.
combination 함수 사용하기 전에 입력받은 알파벳들 정렬하는 과정을 빼먹어서 시간이 좀 걸렸다.
문자열 합칠 때 join 함수 사용하는 것도 잊지말자.
import sys
from itertools import combinations
input = sys.stdin.readline
l, c = map(int, input().split())
char = list(map(str, input().split()))
char.sort()
comb = combinations(char, l)
vowel = ['a', 'e', 'i', 'o', 'u']
for i in comb:
csn = 0 #consonant
vw = 0 #vowel
for j in range(l):
if i[j] in vowel:
vw += 1
else:
csn += 1
if csn >= 2 and vw >= 1:
print(''.join(i))
'Coding > 백준' 카테고리의 다른 글
[Python] 백준 1987번 - 알파벳 (0) | 2022.02.14 |
---|---|
[Python] 백준 10819번 - 차이를 최대로 (0) | 2022.02.14 |
[Python] 백준 2309번 - 일곱 난쟁이 (0) | 2022.02.06 |
[Python] 백준 2589번 - 보물섬 (0) | 2022.02.06 |
[Python] 백준 7562번 - 나이트의 이동 (0) | 2022.02.04 |
Comments