Problem D
Buying Coke
Input: Standard Input
Output: Standard Output
Time Limit: 2 Seconds
I often buy Coca-Cola from the vending machine at work. Usually I buy several cokes at once, since my working mates also likes coke. A coke in the vending machine costs 8 Swedish crowns, and the machine accept crowns with the values 1,5 and 10. As soon as I press the coke button (after having inserted sufficient amount of money), I receive a coke followed by the exchange (if any). The exchange is always given in as few coins as possible (this is uniquely determined by the coin set used). This procedure is repeated until I've bought all the cokes I want. Note that I can pick up the coin exchange and use those coins when buying further cokes.
Now, what is the least number of coins I must insert, given the number of cokes I want to buy and the number of coins I have of each value? Please help me solve this problem while I create some harder problems for you. You may assume that the machine won't run out of coins and that I always have enough coins to buy all the cokes I want.
The first line in the input contains the number of test cases (at most 50). Each case is then given on a line by itself. A test case consists of four integers: C (the number of cokes I want to buy), n1, n5, n10 (the number of coins of value 1, 5 and10, respectively). The input limits are 1 <= C <= 150, 0 <= n1 <= 500, 0 <= n5 <= 100 and 0 <= n10 <= 50.
For each test case, output a line containing a single integer: the minimum number of coins needed to insert into the vending machine.
3 2 2 1 1 2 1 4 1 20 200 3 0 |
5 3 148
|
Problem setter: Jimmy Mårdell, Member of Elite Problemsetters' Panel
直接开四维dp搜索,存不下。但是!c,n1,n5,n10是有一个确定关系的。那么就可以少记录一维了,消掉范围最大的n1.就存的下了。这个题可以学到的是,如果状态太大存不下,可以想想某一维是不是可以由其它几维直接确立。
#include<cstdio> #include<algorithm> #include<vector> #include<cstring> #include<stack> #include<iostream> #include<queue> #include<cmath> #include<string> #include<set> #include<map> using namespace std; const int maxn = 10000000 + 5; const int INF = 1000000000; const int Mod = 1000000000 + 7; typedef long long LL; typedef pair<LL, LL> P; int dp[155][155][55]; int C, total; int dfs(int c, int n5, int n10){ if(dp[c][n5][n10] != -1) return dp[c][n5][n10]; int n1 = total-(C-c)*8 - n5*5-n10*10; if(c == 0) return dp[0][n5][n10] = 0; int Min = INF; if(n1 >= 8){ Min = min(Min, 8+dfs(c-1, n5, n10)); } if(n1 >= 3 && n5 >= 1){ Min = min(Min, 4+dfs(c-1, n5-1, n10)); } if(n1 >= 3 && n10 >= 1){ Min = min(Min, 4+dfs(c-1, n5+1, n10-1)); } if(n5 >= 2){ Min = min(Min, 2+dfs(c-1, n5-2, n10)); } if(n10 >= 1){ Min = min(Min, 1+dfs(c-1, n5, n10-1)); } return dp[c][n5][n10] = Min; } int main(){ int t; scanf("%d", &t); while(t--){ int n1, n5, n10; scanf("%d%d%d%d", &C, &n1, &n5, &n10); total = n1 + 5*n5 + 10 * n10; memset(dp, -1, sizeof dp); int ans = dfs(C, n5, n10); printf("%d\n", ans); } return 0; }