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
- 1차원 DP
- 2차원 dp
- 99클럽
- @GeneratedValue
- @GenericGenerator
- @Transactional
- Actions
- Amazon EFS
- amazon fsx
- Android Studio
- ANSI SQL
- ApplicationEvent
- async/await
- AVG
- AWS
- Azure
- bind
- builder
- button
- c++
- c++ builder
- c03
- Callback
- case when
- CCW
- chat GPT
- CICD
- Collections
- Combination
- combinations
Archives
- Today
- Total
기록
백준_15661_링크와 스타트 본문
문제
https://www.acmicpc.net/problem/15661
풀이
1. make team
팀1이 가질수 있는 선수들의 경우의 수를 구한다.
선수의 수를 n//2로 둔 이유는 중복을 제거하기 위해서이다. (아래 두 경우를 같게 취급)
team1 | team1 | team1 | team2 | team1 | team1 | team2 |
team2 | team2 | team2 | team1 | team2 | team2 | team1 |
2. calculation diff ability
두팀의 능력값을 계산해 차이를 구한다.
코드
import sys
from itertools import combinations
input = sys.stdin.readline
N = int(input().strip())
board = [list(map(int, input().strip().split())) for i in range(N)]
# 2. calculation diff ability
def getAbility(selection) :
ability = 0
for i in range(N) :
for j in range(i, N) :
it = board[i][j]+board[j][i]
isTeam1 = selection[i]==True and selection[j]==True
isTeam2 = selection[i]==False and selection[j]==False
ability += it*isTeam1 - it*isTeam2
return abs(ability)
# 1. make team
ans = float('INF')
for np in range(N//2) :
combi = list(combinations(range(N), np+1))
for playerList in combi :
selection = [False, ]*N
for player in playerList :
selection[player] = True
ans = min(ans, getAbility(selection))
print(ans)
'코딩테스트 > python' 카테고리의 다른 글
백준_16946_벽 부수고 이동하기4 (0) | 2022.10.03 |
---|---|
백준_14391_종이조각 (0) | 2022.05.10 |
백준_10830_행렬 제곱 (0) | 2022.05.03 |
백준_2961_도영이가 만든 맛있는 음식 (0) | 2022.04.22 |
백준_1022_소용돌이 예쁘게 출력하기 (0) | 2022.04.19 |
Comments