일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 괄호
- 코테
- 매일11시
- expo
- 안드로이드
- itertools
- 9095
- 1182
- 백준
- 코틀린
- 11057
- 11054
- Combination
- 뒤로가기
- 11기
- 순열
- 앱
- LCS
- 1260
- 6603
- 파이썬
- permutation
- 최소공배수
- Kotlin
- 나머지
- 홈화면
- lcm
- Android
- 11053
- Python
Archives
- Today
- Total
황소개발자
백준 14889 파이썬 python : 스타트와 링크 @@황소처럼 우직하게@@ 본문
반응형
import sys
input = sys.stdin.readline
n = int(input())
mat = []
for i in range(n):
mat.append(list(map(int, input().strip().split())))
import itertools
gab = 999999999
team = [i for i in range(n)]
tt = list(itertools.combinations(team, n // 2))
for team1 in tt:
team2 = [x for x in team if x not in team1]
team1_score = 0
team2_score = 0
for x, y in list(itertools.combinations(team1, 2)):
team1_score += mat[x][y] + mat[y][x]
for x, y in list(itertools.combinations(team2, 2)):
team2_score += mat[x][y] + mat[y][x]
gab = min(gab, abs(team1_score - team2_score))
print(gab)
모든 경우의 수에 대하여 고려해봅시다.
콤비네이션으로 모든 팀의 경우의 수를 구하고, 각 팀에서 2명씩 콤비네이션으로 뽑아내서 비교해주기.
채점하는데 몇분걸렸다;;
반응형
'백준 문제 풀이' 카테고리의 다른 글
백준 2609 파이썬 python : 최대공약수와 최소공배수 @@황소처럼 우직하게@@ [유클리드 호제법 알고리즘][gcd][lcm] (0) | 2020.02.27 |
---|---|
백준 10430 파이썬 python : 나머지 @@황소처럼 우직하게@@ 이 문제의 알고리즘은 정말 중요하다.. 오버플로우 방지를 위해서인데 [모듈][나머지 연산] (0) | 2020.02.27 |
파이썬 리스트 빼기 리스트 : 리스트 차집합 한줄로 구현하기 (0) | 2020.02.26 |
백준 1966 파이썬 python : 프린터 큐 @@황소처럼 우직하게@@ (0) | 2020.02.26 |
백준 1182 파이썬 python : 부분수열의 합 @@황소처럼 우직하게@@ (0) | 2020.02.26 |
Comments