程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> Codeforces Round #304 (Div. 2) C. Soldier and Cards stl應用

Codeforces Round #304 (Div. 2) C. Soldier and Cards stl應用

編輯:C++入門知識

Codeforces Round #304 (Div. 2) C. Soldier and Cards stl應用


C. Soldier and Cards time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output

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 test(s) input
4
2 1 3
2 4 2
output
6 2
input
3
1 2
2 1 3
output
-1
Note

First sample:

\

Second sample:

\
題目很簡單,主要就是模擬,狀態雖然似乎很多,有10!個,但是因為大多數狀態是達不到的,所以可以設定一定的步數,如果還是沒有結果,就輸出-1就可以了,官方給出的是不超過106種。另外也可以用set來保存狀態。queue底層是封裝了 == 與
#define INF			9000000000
#define EPS			(double)1e-9
#define mod			1000000007
#define PI			3.14159265358979
//*******************************************************************************/
#endif
#define N 20500
#define M 100005
#define maxn 205
#define MOD 1000000000000000007
queue q[2];
set,queue > > myset;
int main()
{
    int n, m, k, t;
	while (S(n) != EOF)
	{
	    myset.clear();
		while (!q[0].empty())   q[0].pop();
		while (!q[1].empty())   q[1].pop();
		for (int i = 0; i < 2; i++){
			S(k);
			for (int j = 0; j < k; j++){
				S(t);q[i].push(t);
			}
		}
		myset.insert(make_pair(q[0],q[1]));
		int step = 0;
		while (!q[0].empty() && !q[1].empty()){
			int s0 = q[0].front();q[0].pop();
			int s1 = q[1].front();q[1].pop();
			if (s0 < s1)
			{
				q[1].push(s0);
				q[1].push(s1);
			}
			else {
				q[0].push(s1);
				q[0].push(s0);
			}
			step++;
//			if (step > 10000){
//				step = -1;
//				break;
//			}
            if(myset.count(make_pair(q[0],q[1]))){
                step = -1;
                break;
			}
			myset.insert(make_pair(q[0],q[1]));
		}
		if (step == -1){
			cout << step << endl;
		}
		else {
			if (q[0].empty())
				cout << step <<  2 << endl;
			else
				cout << step <<  1 << endl;
		}
	}
	return 0;
}

 

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved