您的位置:首页 > 其它

UVALive 2031 Dance Dance Revolution (舞步转移,状态压缩DP,4级)

2013-08-29 09:55 507 查看
N - Dance Dance RevolutionCrawling in process...Crawling failedTime Limit:3000MSMemory Limit:0KB 64bit IO Format:%lld & %lluSubmitStatusAppoint description:System Crawler (2013-06-01)DescriptionMr. White, a fat man, now is crazy about a game named ``Dance, Dance, Revolution". But his dance skill is so poor that he could not dance a dance, even if he dances arduously every time. Does ``DDR" just mean him a perfect method to squander his pounds?No way. He still expects that he will be regarded as ``Terpsichorean White" one day. So he is considering writing a program to plan the movement sequence of his feet, so that he may save his strength on dancing. Now he looks forward to dancing easily insteadof sweatily.``DDR" is a dancing game that requires the dancer to use his feet to tread on the points according to the direction sequence in the game. There are one central point and four side points in the game. Those side points are classified as top, left, bottomand right. For the sake of explanation, we mark them integers. That is, the central point is 0, the top is 1, the left is 2, the bottom is 3, and the right is 4, as the figure below shows:At the beginning the dancer's two feet stay on the central point. According to the direction sequence, the dancer has to move one of his feet to the special points. For example, if the sequence requires him to move to the top point at first, he may moveeither of his feet from point 0 to point 1 (Note: Not both of his feet). Also, if the sequence then requires him to move to the bottom point, he may move either of his feet to point 3, regardless whether to use the foot that stayson point 0 or the one that stays on point 1.There is a strange rule in the game: moving both of his feet to the same point is not allowed. For instance, if the sequence requires the dancer to the bottom point and one of his feet already sta ys on point 3, he should stay the very foot on the same pointand tread again, instead of moving the other one to point 3.After dancing for a long time, Mr. White can calculate how much strength will be consumed when he moves from one point to another. Moving one of his feet from the central point to any side points will consume 2 units of his strength. Moving from one sidepoint to another adjacent side point will consume 3 units, such as from the top point to the left point. Moving from one side point to the opposite side point will consume 4 units, such as from the top point to the bottom point. Yet, if he stays on the samepoint and tread again, he will use 1 unit.Assume that the sequence requires Mr. White to move to point1224. His feet may stays on (point 0, point 0)(0, 1)(2, 1)(2, 1)(2, 4). In this couple of integers, the former number represents the point of his left foot, and the latterrepresents the point of his right foot. In this way, he has to consume 8 units of his strength. If he tries another pas, he will have to consume much more strength. The 8 units of strength is the least cost.InputThe input file will consist of a series of direction sequences. Each direction sequence contains a sequence of numbers. Ea ch number should either be 1, 2, 3, or 4, and each represents one of the four directions. A value of 0 in the direction sequence indicatesthe end of direction sequence. And this value should be excluded from the direction sequence. The input file ends if the sequence contains a single 0.OutputFor each direction sequence, print the least units of strength will be consumed. The result should be a single integer on a line by itself. Any more white spaces or blank lines are not allowable.Sample Input
1 2 2 4 0
1 2 3 4 1 2 3 3 4 2 0
0
Sample Output
8
22
思路:按照舞步来转移,用状态压缩感觉会方便,六维DP太多if
    
#include<iostream>#include<cstring>#include<cstdio>#define FOR(i,a,b) for(int i=a;i<=b;++i)#define clr(f,z) memset(f,z,sizeof(f))#define ll(x) (1<<x)using namespace std;const int oo=0x3f3f3f3f;int dp[2][ll(6)];int cost(int a,int b){if(a==b)return 1;if(a==0&&b!=0)return 2;if(a!=0&&b!=0&&(a+1)%4==(b+3)%4)return 4;return 3;}void DP(int z,int s,int x){ int a=-1,b;FOR(i,0,4)if(s&ll(i)){if(a==-1)a=i;else b=i;}//aint zs=s^ll(a)^ll(x);if(x!=b)dp[z][zs]=min(dp[z][zs],dp[z^1][s]+cost(a,x));//bzs=s^ll(b)^ll(x);if(x!=a)dp[z][zs]=min(dp[z][zs],dp[z^1][s]+cost(b,x));}int main(){ int x;while(~scanf("%d",&x)){if(x==0)break;clr(dp[0],0x3f);dp[0][ll(x)+1]=2;int z=1;while(1){scanf("%d",&x);if(x==0)break;clr(dp[z],0x3f);FOR(i,0,31)if(dp[z^1][i]!=oo){ DP(z,i,x);//dp[z^1][get(i,x)]=min(dp[z^1][get(i,x)],dp[z][i]+cost(i,x));}z^=1;}int ans=oo;z^=1;FOR(i,0,31)ans=min(ans,dp[z][i]);printf("%d\n",ans);}return 0;}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: