반응형
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
- SGD
- 로지스틱 회귀
- 추천 시스템
- 인공지능
- 백준
- 컴퓨터 그래픽스
- Support Vector Machine
- Unsupervised learning
- Vision
- Kaggle
- neural network
- logistic regression
- OpenGL
- petal to metal
- C++
- cs231n
- recommender system
- Computer Vision
- 컴퓨터 비전
- Regularization
- 신경망
- SVM
- 딥러닝
- 그래픽스
- 비용함수
- CNN
- CPP
- pre-trained
- 머신러닝
- 파이썬
Archives
- Today
- Total
kwan's note
백준 - 14889번: 스타트와 링크 파이썬 본문
반응형
난이도 실버3:
직전에 올렸던 permutation과 combination을 구현해서 작성한 코드이다.
실질적으로는 combination만 사용하였다.
def permutation(arr, r):
used = [0]*len(arr)
per2return=[]
def generate(item, used):
if len(item) == r:
per2return.append(item.copy())
return
# 3.
for i in range(len(arr)):
if not used[i]:
item.append(arr[i])
used[i] = 1
generate(item, used)
used[i] = 0
item.pop()
generate([], used)
return per2return
def combination(arr, r):
comb_return=[]
def generate(chosen):
if len(chosen) == r:
comb_return.append(chosen.copy())
return
start = arr.index(chosen[-1]) + 1 if chosen else 0
for i in range(start, len(arr)):
chosen.append(arr[i])
generate(chosen)
chosen.pop()
generate([])
return comb_return
def getpoint_diff(point, team):
point1 = 0
point2 = 0
point_comb = combination(team, 2)
for i in point_comb:
point1 += point[i[0] - 1][i[1] - 1] + point[i[1] - 1][i[0] - 1]
team2 = []
for i in range(1, len(team)*2 + 1):
if i not in team:
team2.append(i)
point_comb2 = combination(team2, 2)
for i in point_comb2:
point2 += point[i[0] - 1][i[1] - 1] + point[i[1] - 1][i[0] - 1]
return abs(point1 - point2)
T=int(input())
point=[list(map(int,input().split())) for _ in range(T)]
team1 = combination(range(1,T+1),T/2) #split to team
sum_point=[0]*len(team1)
for i in range(len(team1)):
sum_point[i]= getpoint_diff(point,team1[i])
print(min(sum_point))
python은 통과하지 못했고 pypy3를 사용해 통과하였다.
반응형
'Algorithm > python' 카테고리의 다른 글
백준 20055번 컨베이어 벨트 위의 로봇 파이썬 (python code) (1) | 2021.04.26 |
---|---|
순열과 조합 (0) | 2021.04.25 |
백준 3190 번 뱀 파이썬 (python code) (0) | 2021.04.25 |
백준 2217번 로프 파이썬 (python code) (0) | 2021.01.21 |
백준 11758번 CCW 파이썬 (python code) (0) | 2021.01.17 |