有1元,5元,10元,50元,100元,500元的硬币各C1,C5,C10,C50,C100,C500枚。现在要用这些硬币支付A元,最少需要多少枚硬币?嘉定本体至少存在一种支付方案。
程序贪心算法:
#include <iostream>
using namespace std;
const int V[6] = {1, 5, 10, 50, 100, 500}; // 定义面值
int C[6] = {3, 2, 1, 3, 0, 2}; // 各面值的数量
int A = 620; // 要凑齐面值
int main()
{
int ans = 0;
for(int i = 5; i >= 0; i--)
{
int t = min( A/V[i], C[i]); //尽可能多地使用大面值
A -= t * V[i];
// cout << t << "*" << V[i] << endl;
cout << V[i] << ": " << t << endl;
ans += t;
}
cout << endl;
cout << "ans: " << ans << endl;
return 0;
}
运行结果: