일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- itertools
- Android
- 6603
- 11기
- expo
- 백준
- 최소공배수
- 11053
- permutation
- 1260
- lcm
- Kotlin
- 앱
- 순열
- Python
- 코틀린
- 홈화면
- 나머지
- 파이썬
- 매일11시
- 안드로이드
- LCS
- Combination
- 괄호
- 1182
- 9095
- 뒤로가기
- 코테
- 11057
- 11054
Archives
- Today
- Total
황소개발자
백준 10971 파이썬 python : 외판원 순회 2 @@황소처럼 우직하게@@ 아주나이쑤 본문
반응형
n = int(input())
mat = []
for i in range(n):
mat.append(list(map(int, input().split())))
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
pathes = []
path = [i for i in range(2, n + 1)]
while True:
if path == [-1]:
break
pathes.append([1] + path)
path = next_permutation(path)
ans = 999999999
for path in pathes:
total = 0
flag = False
for i in range(len(path) - 1):
cost = mat[path[i] - 1][path[i + 1] - 1]
if cost == 0:
flag = True
break
total += cost
cost = mat[path[-1] - 1][0]
if cost == 0 or flag:
continue
total += cost
ans = min(total, ans)
print(ans)
직접 다 구현하기
반응형
'백준 문제 풀이' 카테고리의 다른 글
백준 1759 파이썬 python : 암호 만들기 @@황소처럼 우직하게@@ 코로나 조심하세요 (0) | 2020.02.28 |
---|---|
백준 6603 파이썬 python : 로또 - combination 직접구현 (0) | 2020.02.28 |
백준 10819 파이썬 python : 차이를 최대로 @@황소처럼 우직하게@@ 볼륨 쵀돼료! (0) | 2020.02.28 |
백준 10974 파이썬 python : 모든 순열 @@황소처럼 우직하게@@ permutations 구현할 때, 이 코드 참고하세요~ (0) | 2020.02.28 |
백준 10973 파이썬 python : 이전 순열 @@황소처럼 우직하게@@ 스까묵자! (0) | 2020.02.28 |
Comments