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
- ㅂ
- 오픽
- 영어회화
- 오픽노잼공부방법
- opic
- 안드로이드
- 피보나치수열
- 영어말하기
- 바텀업
- topdown
- 주석
- 오픽점수잘받는방법
- dp
- 오픽공부법
- English
- 안드로이드주석
- stack 스택
- fibo
- 이진탐색
- XML주석
- 탑다운
- XML
- 오픽가격
- dynamicProgramming
- 메모이제이션
- 오픽노잼
- 이진탐색 #나무 자르기
- 다이나믹프로그래밍
- 디피
Archives
RUBY
[백준] 암호만들기 본문
출처:: https://www.acmicpc.net/problem/1759
분류:: 브루트 포스
1. 문제 이해 및 해결과정
2. 풀이방법
#암호 만들기
#https://www.acmicpc.net/problem/1759
import sys
from itertools import combinations
sys.stdin = open("input.txt","r")
n,m=map(int,input().split())
pos=[]
data=input().split()
data.sort()
selected=list(combinations(data,n))
# print(selected)
selected.sort()
for x in selected:
con, vow = 0, 0
for a in x:
if a in 'aeiou':
con+=1
else:
vow+=1
if con>=1 and vow>=2: #최소 한개의 모음,두개의 자음
print(''.join(x))
3. 오답원인
4. 알게된 점
'PS > BOJ' 카테고리의 다른 글
[백준] 링크와 스타트 (0) | 2020.10.09 |
---|---|
[백준] 트리의 부모 찾기 (0) | 2020.10.09 |
[백준] 소수&팰린드롬 (0) | 2020.10.07 |
[백준] 스티커 (0) | 2020.10.05 |
[백준] 날짜 계산 (0) | 2020.10.05 |
Comments