동전 문제 (고전 dp)
1266 단어 ACM - 동적 계획
You are given coins of different denominations and a total amount of money amount. Write a function to compute the fewest number of coins that you need to make up that amount. If that amount of money cannot be made up by any combination of the coins, return
-1
. Example 1: coins =
[1, 2, 5]
, amount = 11
return 3
(11 = 5 + 5 + 1) Example 2:
coins =
[2]
, amount = 3
return -1
. Note: You may assume that you have an infinite number of each kind of coin.
상태: d (i) 는 i를 조합하는 데 가장 적은 동전 수를 정의합니다.
상태 이동 방정식: d(i)=min{d(j)+1}i>=j+v
(참고: memset은 -1과 0만 초기화할 수 있습니다)
AC 소스:
class Solution {
public:
int coinChange(vector& coins, int amount) {
int d[10000];
for(int i=1;i<=amount;++i)
d[i]=(1<<20);
d[0]=0;
for(int i=1;i<=amount;++i)
{
for(int j=0;j=coins[j])
d[i]=min(d[i],d[i-coins[j]]+1);
}
}
if(d[amount]>=(1<<20))
return -1;
else
return d[amount];
}
};
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
동적 계획 연습 이동 경로묘사×책상 위에 m행 n열의 격자 행렬이 있는데 각 칸을 좌표로 표시한다. 줄 좌표는 아래에서 위로 차례로 증가하고 열 좌표는 왼쪽에서 오른쪽으로 차례로 증가하며 왼쪽 아래 칸의 좌표는 (1,1)이고 오른쪽 위 칸의...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.