8-8
八月六号休息了一天,七号以为其他的一些琐事,写了一半没写完
今天讲了最长子序列(写诗是属于动态规划的一类题目)
动态规划真的不太好学,有的关系很难找
这是今天做的一道题
F - Piggy-Bank
Before ACM can do anything, a budget must be prepared and the necessary financial support obtained. The main income for this action comes from Irreversibly Bound Money (IBM). The idea behind is simple. Whenever some ACM member has
any small money, he takes all the coins and throws them into a piggy-bank. You know that this process is irreversible, the coins cannot be removed without breaking the pig. After a sufficiently long time, there should be enough cash in the piggy-bank to pay
everything that needs to be paid.
But there is a big problem with piggy-banks. It is not possible to determine how much money is inside. So we might break the pig into pieces only to find out that there is not enough money. Clearly, we want to avoid this unpleasant situation. The only possibility is to weigh the piggy-bank and try to guess how many coins are inside. Assume that we are able to determine the weight of the pig exactly and that we know the weights of all coins of a given currency. Then there is some minimum amount of money in the piggy-bank that we can guarantee. Your task is to find out this worst case and determine the minimum amount of cash inside the piggy-bank. We need your help. No more prematurely broken pigs!
But there is a big problem with piggy-banks. It is not possible to determine how much money is inside. So we might break the pig into pieces only to find out that there is not enough money. Clearly, we want to avoid this unpleasant situation. The only possibility is to weigh the piggy-bank and try to guess how many coins are inside. Assume that we are able to determine the weight of the pig exactly and that we know the weights of all coins of a given currency. Then there is some minimum amount of money in the piggy-bank that we can guarantee. Your task is to find out this worst case and determine the minimum amount of cash inside the piggy-bank. We need your help. No more prematurely broken pigs!
3 10 110 2 1 1 30 50 10 110 2 1 1 50 30 1 6 2 10 3 20 4
The minimum amount of money in the piggy-bank is 60. The minimum amount of money in the piggy-bank is 100. This is impossible.
Select Code
#include <iostream>
#include <cstdio>
#include <cstdio>
#include <algorithm>
using namespace std;
const int maxn=200000;
int dp[maxn];
int c[maxn];
int v[maxn];
int main()
{ int t;
int m,n;
int k;
scanf("%d",&t);
while(t--){
scanf("%d%d",&m,&n);
m=n-m;
if(m<=0){
puts("This is impossible.");
continue;
}
scanf("%d",&k);
for(int i=0;i<k;i++)
scanf("%d%d",&v[i],&c[i]);
for(int i=0;i<=m;i++)
dp[i]=1e9;
dp[0]=0;
for(int i=0;i<k;i++)
for(int j=c[i];j<=m;j++)
dp[j]=min(dp[j],dp[j-c[i]]+v[i]); //思考
if(dp[m]==1e9)
puts("This is impossible.");
else
printf("The minimum amount of money in the piggy-bank is %d.\n",dp[m]);
}
return 0;
}
动态规划
数塔
从下往上
最长上升子序列
永远渴望,大智若愚(stay hungry, stay foolish)