zoukankan      html  css  js  c++  java
  • Problem B 队列

    Description

    Two bored soldiers are playing card war. Their card deck consists of exactly n cards, numbered from 1 to nall values are different. They divide cards between them in some manner, it's possible that they have different number of cards. Then they play a "war"-like card game.

    The rules are following. On each turn a fight happens. Each of them picks card from the top of his stack and puts on the table. The one whose card value is bigger wins this fight and takes both cards from the table to the bottom of his stack. More precisely, he first takes his opponent's card and puts to the bottom of his stack, and then he puts his card to the bottom of his stack. If after some turn one of the player's stack becomes empty, he loses and the other one wins.

    You have to calculate how many fights will happen and who will win the game, or state that game won't end.

    Input

    First line contains a single integer n (2 ≤ n ≤ 10), the number of cards.

    Second line contains integer k1 (1 ≤ k1 ≤ n - 1), the number of the first soldier's cards. Then follow k1 integers that are the values on the first soldier's cards, from top to bottom of his stack.

    Third line contains integer k2 (k1 + k2 = n), the number of the second soldier's cards. Then follow k2 integers that are the values on the second soldier's cards, from top to bottom of his stack.

    All card values are different.

    Output

    If somebody wins in this game, print 2 integers where the first one stands for the number of fights before end of game and the second one is 1 or 2 showing which player has won.

    If the game won't end and will continue forever output  - 1.

    Sample Input

    Input
    4
    2 1 3
    2 4 2
    Output
    6 2
    Input
    3
    1 2
    2 1 3
    Output
    -1

    Sample Output

    1 7 19 1 19 37
     
    分析:
       将两副最顶端的牌进行比较,小的的放到大的那副牌的下面,大的又放到小的下面,其实就是先进先出问题,所以用队列。
     
     
     
    #include <iostream>
    #include <cstdio>
    #include <queue>
    using namespace std;
    int main()
    {
    	int n,k1,k2,x;
    	int flag=0,kase=0, win;
    	while(scanf("%d",&n)==1&&n)
    	{
    		queue<int>q1,q2;
    		scanf("%d",&k1);
    		for(int i=0;i<k1;i++)
    		{
    			scanf("%d",&x);
    			q1.push(x);
    		}
    		scanf("%d",&k2);
    		for(int i=0;i<k2;i++)
    		{
    			scanf("%d",&x);
    			q2.push(x);
    		}
    		while(n)
    		{
    			int y;
    			x=q1.front();
    			y=q2.front();
    			q1.pop();
    			q2.pop();
    			kase++;
    			if(kase==1e3)
    				break;
    			if(x>y)
    			{
    				q1.push(y);
    				q1.push(x);
    			}
    			else if(x<y)
    			{
    				q2.push(x);
    				q2.push(y);
    			}
    			if(q1.size()==0||q2.size()==0)
    			{
    				win=q1.empty()?2:1;
    				flag=1;
    				break;
    			}
    				
    		}
    		if(flag)
    			printf("%d %d
    ",kase,win);
    		else
    			printf("-1
    ");
    	}
    	return 0;
    }
  • 相关阅读:
    wzplayer for android V1.5 整合硬解码(仍然支持加密音视频)
    mac osx 快捷键
    从零开始学AS3游戏开发【七】永无终结,不断完善的游戏
    flash flex as3 类库 资料大全
    php include一个有全局变量的应注意
    MySQL事件调度器 CREATE EVENT
    The Miner – 专业Flash AS3性能分析器(profiler)入门教程
    as3加密入门1使用alchemy进行代码混淆
    从零开始学AS3游戏开发【五】 告别方块,添加碰撞
    PHP实现的Mysql读写分离
  • 原文地址:https://www.cnblogs.com/xl1164191281/p/4668744.html
Copyright © 2011-2022 走看看