동전 분배하기
생성일: 2022년 2월 12일 오후 3:34
구현 코드
# 동전 분배하기 (DFS)
import sys
sys.stdin = open("input.txt", "rt")
def DFS(L, a, b, c):
global res
if L == n:
if a == b or b == c or a == c:
return
else:
diff = max(a,b,c)-min(a,b,c)
if diff < res:
res = diff
else:
DFS(L+1, a+coin[L], b, c)
DFS(L+1, a, b+coin[L], c)
DFS(L+1, a, b, c+coin[L])
if __name__ == "__main__":
n = int(input())
coin = []
for _ in range(n):
coin.append(int(input()))
res = 2147000000
DFS(0, 0, 0, 0)
print(res)
Author And Source
이 문제에 관하여(동전 분배하기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@lsj8706/동전-분배하기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)