队列 Soldier and Cards

Soldier and Cards

题目:

Description

Two bored soldiers are playing card war. Their card deck consists of exactly n cards, numbered from 1 to n, all 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

31 22 1 3

Output

-1

Hint

First sample:

Second sample:                                                                                                                                                                

题意:

两个人每个人都有一堆牌,他们每个人从他那堆拿出最上面的牌,并放在桌子上。

牌值更大的那个先他的对手的牌他的牌的底部,然后他把他的卡片放他牌的底部,

如此循环。如果有一个玩家的一个堆栈为空,他输了,另一个胜利。

思路:

将两个人的牌值分别放入不同的队列,后队首与队首进行比较,将值小的那队的对首放入,另一队的队尾再将值大的那个队的队首放队尾。

将两个队的队首都删除。如此循环直到其中一个队为空时跳出循环。

知识:

队列提供了下面的操作

  1. q.empty()               如果队列为空返回true,否则返回false
  2. q.size()                返回队列中元素的个数
  3. q.pop()                 删除队列首元素但不返回其值
  4. q.front()               返回队首元素的值,但不删除该元素
  5. q.push()                在队尾压入新元素
  6. q.back()                返回队列尾元素的值,但不删除该元素
 1 #include<iostream>
 2 #include<queue>
 3 #include<cstring>
 4 using namespace std;
 5 int main()
 6 {
 7    int n,k1,k2,i,k,b;
 8    queue<int>c,d;
 9    cin>>n;
10    cin>>k1;
11 for(i=0;i<k1;i++)
12 {    cin>>b;
13    c.push(b);}
14    cin>>k2;
15 for(i=0;i<k2;i++)
16 {cin>>b;
17 d.push(b);}
18 k=0;
19 while(1)
20 {if(c.empty()||d.empty()) break;
21
22 if(c.front()>d.front())
23 {c.push(d.front());
24  c.push(c.front());
25  d.pop();
26  c.pop();
27 }
28 else
29 {d.push(c.front());
30  d.push(d.front());
31  d.pop();
32  c.pop();
33 }
34     k++;
35 if(k>1e6)
36     {    cout<<"-1"<<endl;
37     break;}
38
39 }
40 if(c.empty())
41   cout<<k<<" 2"<<endl;
42 else  if(k<=1e6)
43 cout<<k<<" 1"<<endl;
44 return 0;
45 }
时间: 2024-08-03 09:25:35

队列 Soldier and Cards的相关文章

【CodeForces - 546C】Soldier and Cards (vector或队列)

Soldier and Cards 老样子,直接上国语吧  Descriptions: 两个人打牌,从自己的手牌中抽出最上面的一张比较大小,大的一方可以拿对方的手牌以及自己打掉的手牌重新作为自己的牌,放在自己手牌的最下方,而且对方输掉的那张手牌需要放在上面,自己赢的手牌放在下面. Input 第一行的数n代表一共有几张牌 第二行第一个数x代表第一个人有x张牌 第三行第一个数y代表第二个人有y张牌 Output 第一个数代表进行了几轮,第二个数代表谁赢 Examples Input 42 1 32

cf 546C Soldier and Cards

题目链接:C. Soldier and Cards Two bored soldiers are playing card war. Their card deck consists of exactly n cards, numbered from 1 to n, all values are different. They divide cards between them in some manner, it's possible that they have different numb

Codeforces546C:Soldier and Cards 解题心得

原题: Description Two bored soldiers are playing card war. Their card deck consists of exactly n cards, numbered from 1 to n, all values are different. They divide cards between them in some manner, it's possible that they have different number of card

Codeforces Round #304 (Div. 2)——Cdfs——Soldier and Cards

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

Codeforces546C:Soldier and Cards

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

queue+模拟 Codeforces Round #304 (Div. 2) C. Soldier and Cards

题目传送门 1 /* 2 题意:两堆牌,每次拿出上面的牌做比较,大的一方收走两张牌,直到一方没有牌 3 queue容器:模拟上述过程,当次数达到最大值时判断为-1 4 */ 5 #include <cstdio> 6 #include <iostream> 7 #include <algorithm> 8 #include <cstring> 9 #include <string> 10 #include <stack> 11 #in

546C. Soldier and Cards

题目链接 题意 两个人玩扑克,共n张牌,第一个人k1张,第二个人k2张 给定输入的牌的顺序就是出牌的顺序 每次分别比较两个人牌的第一张,牌上面数字大的赢,把这两张牌给赢的人,并且大的牌放在这个人的牌最下面,另外一张放在上面牌的上面,其他牌在放在这两张牌的上面. 求要pk多少次结束游戏,并记录赢得是哪个人 若出现死循环的情况输出 –1   这里可以根据栈或队列 java的程序是根据栈的,比较时候取出栈顶,加入新的两个 数的时候,要先出栈,在入栈,有点麻烦 Python程序是根据队列,在头取出进行比

CodeForces 546C Soldier and Cards

题目链接:click here~~ [题目大意]两人玩牌,每次比较第一张牌的大小,放到底部,问最后谁赢,如果一直循环,则输出-1 [解题思路]设置两个队列,按照题目意思模拟一下即可,注意在循环一定次数下仍然没有结果,则无解 代码: <span style="font-family:SimSun;font-size:14px;">#include <bits/stdc++.h> using namespace std; const int N=1e6; queue

题解 CF546C 【Soldier and Cards】

思路 是一道水题,可以用队列+模拟来写,注意不要拿完队列中的元素! 代码 1 #include<iostream> 2 #include<cstdio> 3 #include<queue> 4 using namespace std; 5 const int maxn=1000000+5; 6 int main() 7 { 8 int n; 9 cin>>n; 10 queue<int>a;//队列 11 queue<int>b; 1