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 |
Tags
- 딥러닝 음성 합성
- waveglow
- DCTTS
- 트레이닝
- korean tts
- singing voice synthesis
- 딥러닝 보코더
- 윈도우
- 노래합성
- YOLO
- Vocoder
- you only look once
- TTS
- 타코트론
- melgan
- deep voice
- 보코더
- 딥러닝
- 한국어 tts
- 학습
- 음성 합성
- tacotron
- text-to-speech
- 한국어 음성 합성
Archives
- Today
- Total
chldkato
백준 1039 교환 (파이썬) 본문
https://www.acmicpc.net/problem/1039
1. 입력의 자릿수에 대해 2개씩 조합할 수 있는 경우를 구해놓는다
2. 자릿수를 K번째 까지 계속 바꾼 후 만들 수 있는 가장 큰 수를 출력한다
만약 ans 값이 초기값인 0 그대로면 만들 수 없다는 뜻이므로 -1 출력
from collections import deque
from itertools import combinations
import sys, copy
input = sys.stdin.readline
def bfs():
c = set()
ans = 0
qlen = len(q)
while qlen:
x = q.popleft()
l = list(str(x))
for i, j in d:
s = copy.deepcopy(l)
temp_i, temp_j = s[i], s[j]
s[i], s[j] = temp_j, temp_i
if s[0] == '0':
continue
nx = int(''.join(s))
if nx not in c:
ans = max(ans, nx)
c.add(nx)
q.append(nx)
qlen -= 1
return ans
n, k = map(int, input().split())
item = [i for i in range(len(str(n)))]
d = list(combinations(item, 2))
q = deque()
q.append(n)
ans = 0
while k:
ans = bfs()
k -= 1
if not ans:
print(-1)
else:
print(ans)
'백준' 카테고리의 다른 글
백준 1981 배열에서 이동 (파이썬) (0) | 2020.02.25 |
---|---|
백준 4991 로봇 청소기 (파이썬) (0) | 2020.02.25 |
백준 2842 집배원 한상덕 (파이썬) (0) | 2020.02.24 |
백준 6087 레이저 통신 (파이썬) (0) | 2020.02.23 |
백준 2933 미네랄 (파이썬) (0) | 2020.02.23 |
Comments