Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[미라] 250311 #101

Merged
merged 2 commits into from
Mar 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions Programmers/250311_완전범죄/ssum1ra.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
def solution(info, n, m):
l = len(info)
dp = [[[False] * m for _ in range(n)] for _ in range(l + 1)]
dp[0][0][0] = True

for i in range(1, l + 1):
for j in range(n):
for k in range(m):
if j >= info[i-1][0] and dp[i-1][j-info[i-1][0]][k]:
dp[i][j][k] = True
elif k >= info[i-1][1] and dp[i-1][j][k-info[i-1][1]]:
dp[i][j][k] = True

for j in range(n):
for k in range(m):
if dp[l][j][k]:
return j

return -1