soj1003. Hit or Miss

来源:互联网 发布:js做单选题和多选题 编辑:程序博客网 时间:2024/05/17 06:02


1003. Hit or Miss

Constraints

Time Limit: 1 secs, Memory Limit: 32 MB

Description

One very simple type of solitaire game known as "Hit or Miss" (also known as "Frustration," "Harvest," "Roll-Call," "Talkative", and "Treize") is played as follows: take a standard deck of 52 playing cards four sets of cards numbered 1 through 13 (suits do not matter in this game) which have been shuffled and start counting through the deck 1, 2, 3, . . . , and so on. When your count reaches 13, start over at 1. Each time you count, look at the top card of the deck and do one of two things: if the number you count matches the value of the top card, discard it from the deck; if it does not match it, move that card to the bottom of the deck. You win the game if you are able to remove all cards from the deck (which may take a very long time). A version of this game can be devised for two or more players. The first player starts as before with a 52 card deck, while the other players have no cards initially. As the first player removes cards from her deck, she gives them to the second player, who then starts playing the same game, starting at count 1. When that player gets a match, he passes his card to the third player, and so on. The last player discards matches rather than passing them to player 1. All players who have cards to play with perform the following 2-step cycle of moves in lockstep: 1. Each player says his or her current count value and checks for a match. If there is no match, the top card is moved to the bottom of the deck; otherwise it is passed to the next player (or discarded if this is the last player). 2. Each player except the first takes a passed card (if there is one) and places it at the bottom of his or her deck. These rules are repeated over and over until either the game is won (all the cards are discarded by the last player) or an unwinnable position is reached. If any player ever runs out of cards, he waits until he is passed a card and resumes his count from where he left off. (e.g., if player 3 passes his last card on a count of 7, he waits until he receives a card from player 2 and resumes his count with 8 at the beginning of the next 2-step cycle).

Input

Input will consist of multiple input sets. The first line of the file will contain a single positive integer nindicating the number of input sets in the file. Each input set will be a single line containing 53 integers: the first integer will indicate the number of players in the game and the remaining 52 values will be the initial layout of the cards in the deck, topmost card first. These values will all lie in the range 1 . . . 13, and the number of players will lie in the range 1. . . 10.

Output

For each input set, output the input set number (as shown below, starting with 1) and either the phrase "unwinnable" or a list showing the last card discarded by each player. Use a single blank to separate all outputs.


这是一道繁琐的模拟题
本题介绍了一个无聊的游戏,可以一个人玩,也可以多人玩

1、一个人玩,从1开始报数,报到13后回到1。每报一个数从自己的卡堆里抽一张卡,如果那张卡的数值与所报数字相同,则把这张卡排除游戏外。若不相等则把这张卡放在自己卡堆底部。

2、N人玩,报数规则同(1),全部卡在开始时都在第一个人的卡堆中,各自报数,前1-N个人若出现匹配则把这张卡放在下一个人卡堆的最上方,若不匹配,则放在自己卡堆的底部。最后一人若匹配,则将这张卡排除游戏外。

如果所有卡片都被排除,该游戏获胜,输出每个人最后一次匹配的数值

反之,则该游戏是败

理解题目游戏困难,题解只需模拟即可,使用N个数列即可

#include<iostream>#include<cstdlib>#include<cstdio>using namespace std;int Q,N;int num[10001]; int line[101][10001];int p[10001];int last[10001];int die;int ans;int print(){for(int i=1;i<=N;i++)    {    for(int j=p[i];j<=line[i][0];j++)        cout<<line[i][j]<<" ";        cout<<"!!!"<<endl;    }}int main(){scanf("%d",&Q);for(int q=1;q<=Q;q++)    {    scanf("%d",&N);    ans=0;    die=0;    for(int i=1;i<=52;i++)        {        cin>>line[1][i];        }    for(int i=1;i<=N;i++)    num[i]=1,p[i]=1,line[i][0]=0;line[1][0]=52;while(1)    {    die++;    for(int i=1;i<N;i++)        {        if(num[i]>13)        num[i]=1;        //cout<<i<<" "<<num[i]<<endl;        if(p[i]>line[i][0])                continue;        if(num[i]==line[i][p[i]])           {           line[i+1][++line[i+1][0]]=line[i][p[i]];           last[i]=line[i][p[i]];p[i]++;           num[i]++;           }        else           {           line[i][++line[i][0]]=line[i][p[i]];           p[i]++;           num[i]++;           }                        }    if(num[N]>13)    num[N]=1;    if(p[N]<=line[N][0])    if(num[N]==line[N][p[N]])           {   last[N]=line[N][p[N]];           p[N]++;           num[N]++;           ans++;           }        else           {   line[N][++line[N][0]]=line[N][p[N]];           p[N]++;           num[N]++;                      }        if(ans==52)        { cout<<"Case "<<q<<": "; for(int i=1;i<N;i++)     {     cout<<last[i]<<" "; } cout<<last[N]<<endl; break;}if(die==10000)    {    cout<<"Case "<<q<<": "<<"unwinnable"<<endl;    break;    }}    }}

                                             
0 0
原创粉丝点击