일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 1260
- 1182
- expo
- Kotlin
- 11053
- 코테
- permutation
- Android
- 홈화면
- 순열
- 6603
- 괄호
- LCS
- 9095
- Combination
- 11기
- lcm
- 뒤로가기
- Python
- 안드로이드
- 최소공배수
- 매일11시
- 11054
- 백준
- 앱
- itertools
- 나머지
- 11057
- 코틀린
- 파이썬
Archives
- Today
- Total
황소개발자
백준 1759 파이썬 python : 암호 만들기 @@황소처럼 우직하게@@ 코로나 조심하세요 본문
반응형
import sys
input = sys.stdin.readline
def next_permutation(lst):
n = len(lst)
i = n - 1
while i > 0 and lst[i - 1] >= lst[i]:
i -= 1
if i == 0:
return [-1]
j = n - 1
while lst[i - 1] >= lst[j]:
j -= 1
tmp = lst[j]
lst[j] = lst[i - 1]
lst[i - 1] = tmp
lst = lst[:i] + sorted(lst[i:])
return lst
L, C = map(int, input().split())
lst = input().split()
lst.sort()
bit = [0] * (C - L) + [1] * L
bites = []
while True:
if bit == [-1]:
break
bites = [bit.copy()] + bites
bit = next_permutation(bit)
for bit_one in bites:
moum_count = 0
jaum_count = 0
password = []
for idx, x in enumerate(bit_one):
if x == 1:
if lst[idx] == 'i' or lst[idx] == 'o' or lst[idx] == 'e' or lst[idx] == 'a' or lst[idx] == 'u':
moum_count += 1
else:
jaum_count += 1
password.append(lst[idx])
if moum_count < 1:
continue
if jaum_count < 2:
continue
print(''.join(password))
반응형
'백준 문제 풀이' 카테고리의 다른 글
백준 14501 파이썬 python : 퇴사 @@황소처럼 우직하게@@ 재귀로 간단구현 (10) | 2020.02.28 |
---|---|
백준 1182 파이썬 python : 부분수열의 합 @@황소처럼 우직하게@@ (0) | 2020.02.28 |
백준 6603 파이썬 python : 로또 - combination 직접구현 (0) | 2020.02.28 |
백준 10971 파이썬 python : 외판원 순회 2 @@황소처럼 우직하게@@ 아주나이쑤 (0) | 2020.02.28 |
백준 10819 파이썬 python : 차이를 최대로 @@황소처럼 우직하게@@ 볼륨 쵀돼료! (0) | 2020.02.28 |
Comments