最大スコアを取得
4706 ワード
作成日:2022年2月10日午後2:20
インプリメンテーションコード
# 최대점수 구하기(DFS)
from os import times
import sys
#sys.stdin = open("input.txt", "rt")
def DFS(L, scoreSum, timeSum):
global res
if timeSum > m:
return
if L == n:
if scoreSum > res:
res = scoreSum
else:
DFS(L+1, scoreSum, timeSum)
DFS(L+1, scoreSum+problems[L][0], timeSum+problems[L][1])
if __name__ == "__main__":
n, m = map(int, input().split())
problems = []
for _ in range(n):
score, time = map(int, input().split())
problems.append((score, time))
res = 0
DFS(0, 0, 0)
print(res)
Reference
この問題について(最大スコアを取得), 我々は、より多くの情報をここで見つけました https://velog.io/@lsj8706/최대점수-구하기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol