コインを配る
5279 ワード
作成日: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)
Reference
この問題について(コインを配る), 我々は、より多くの情報をここで見つけました https://velog.io/@lsj8706/동전-분배하기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol