일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 나머지
- 뒤로가기
- 앱
- 코틀린
- lcm
- 안드로이드
- 순열
- itertools
- 11054
- 11053
- 코테
- 9095
- Python
- 최소공배수
- 매일11시
- 괄호
- 11057
- LCS
- 홈화면
- 6603
- 1260
- 1182
- Kotlin
- expo
- 11기
- Android
- permutation
- Combination
- 파이썬
- 백준
Archives
- Today
- Total
목록10971 (1)
황소개발자
백준 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..
백준 문제 풀이
2020. 2. 28. 10:55