https://www.codetree.ai/missions/2/problems/yutnori-1d/description
import sys
import copy
# 턴 수, 윷놀이 판 수, 말 개수
n, m, k = map(int, input().split(" "))
move = list(map(int, input().rstrip().split(" ")))
horse = [i for i in range(1, k+1)]
answer = []
cnt = 0
def get_point(answer):
position = [1 for _ in range(k)] # -> 1, 2, 3번말
for i in range(n):
position[answer[i]-1] += move[i]
cnt = 0
for p in position:
if p >= m:
cnt += 1
return cnt
def backtrack(dep):
global cnt
if dep == n:
cnt = max(cnt, get_point(answer))
return
for i in range(k):
answer.append(horse[i])
backtrack(dep+1)
answer.pop()
backtrack(0)
print(cnt)
728x90
반응형
'🔻PS > Codetree' 카테고리의 다른 글
[Codetree] 외판원 순회 Python (0) | 2024.09.12 |
---|---|
[Codetree] 수들의 합 최대화하기 Python (0) | 2024.09.12 |
[Codetree] 강력한 폭발 Python (0) | 2024.09.05 |
[Codetree] 아름다운 수 Python (1) | 2024.09.05 |
[Codetree] 숫자가 더 큰 인접한 곳으로 이동 Python (0) | 2024.09.02 |