B - 队列,推荐

时间:2023-03-09 02:26:56
B - 队列,推荐
Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u

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
3

1 2

2 1 3
Output
-1
程序分析:两个人每个人都有一堆牌,他们每个人从他那堆拿出最上面的牌,并放在桌子上。

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

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

思路:

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

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

程序代码

#include <iostream>
#include <queue>
using namespace std;
int main()
{
int n;
while(cin>>n)
{
int k1,k2,x,time=,y,victory,flag;
queue<int> q1;
queue<int> q2;
cin>>k1;
for(int i=; i<k1; i++)
{
cin>>x;
q1.push(x);
}
cin>>k2;
for(int i=; i<k2; i++)
{
cin>>x;
q2.push(x);
}
while()
{
flag=;
x=q1.front();
y=q2.front();
q2.pop();
q1.pop();
time++;
if(time==1e4)
break;
if(x>y)
{
q1.push(y);
q1.push(x);
}
else
{
q2.push(x);
q2.push(y);
}
if(q1.size()==||q2.size()==)
{
victory=(q1.size()==?:);
flag=;
break;
} }
if(flag)
cout<<time<<" "<<victory<<endl;
else
cout<<-<<endl;
}
return ;
}