Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 코드업
- 자료구조
- 백트래킹
- VPC
- Elasticsearch
- 스프링
- 인천여행
- 알고리즘
- Kafka
- 월미도
- DFS
- 클라우드 컴퓨팅
- 스프링부트
- 클라우드
- Docker
- 프로그래밍문제
- Spring Data JPA
- Spring Boot
- 오일러프로젝트
- springboot
- gcp
- Apache Kafka
- Spring
- 쿠버네티스
- 스프링 부트
- JPA
- 로드밸런서
- 카프카
- 백준
- aws
Archives
- Today
- Total
GW LABS
[Backjoon] 스타트와 링크 본문
백준 단계별 문제란 백트래킹에 수록되어 있는 문제이다. 재귀함수를 이용해서 백트래킹을 해나가면 풀 수 있다. 많은 분들이 재귀함수, 그래프 탐색 등을 이용해서 푼 것 같다. 그러나 파이썬을 이용하면 combinations 모듈을 통해 간단하게 구현할 수 있다.
import sys
from itertools import combinations
if __name__ == "__main__":
player_count = int(sys.stdin.readline())
ability_table = []
for _ in range(player_count):
ability_table.append(list(map(int, sys.stdin.readline().split(" "))))
answer = sys.maxsize
combination_table = list(combinations(range(len(ability_table)), player_count // 2))
for idx in range(len(combination_table) // 2):
star_team = list(combination_table[idx])
link_team = list(combination_table[len(combination_table) - idx - 1])
star_team_score = 0
for i, j in list(combinations(star_team, 2)):
star_team_score += ability_table[i][j]
star_team_score += ability_table[j][i]
link_team_score = 0
for i, j in list(combinations(link_team, 2)):
link_team_score += ability_table[i][j]
link_team_score += ability_table[j][i]
answer = min(answer, abs(star_team_score - link_team_score))
print(answer)
'Algorithm & DataStructure' 카테고리의 다른 글
[Backjoon] 쉬운 계단 수 (0) | 2020.11.11 |
---|---|
[Backjoon] 정수 삼각형 (0) | 2020.11.05 |
C++로 구현하는 자료구조 (9) - Trie (0) | 2020.10.28 |
C++로 구현하는 자료구조 (8) - Heap (0) | 2020.10.21 |
[Backjoon] 토마토 (0) | 2020.10.17 |
Comments