최대점수 구하기
생성일: 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)
Author And Source
이 문제에 관하여(최대점수 구하기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@lsj8706/최대점수-구하기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)