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

Source: Internet
Author: User

Codeforces Round #304 (Div. 2) C. Soldier and Cards stl Application
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 exactlyNCards, numbered from 1N, 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 exactly fights will happen and who will win the game, or state that game won't end.

Input

First line contains a single integerN(2 cores ≤ CoresNLimit ≤ limit 10), the number of cards.

Second line contains integerK1 (1 digit ≤ DigitK1 bytes ≤ bytesNRows-limit 1), the number of the first soldier's cards. Then followK1 integers that are the values on the first soldier's cards, from top to bottom of his stack.

Third line contains integerK2 (K1 worker + workerK2 bytes = bytesN), The number of the second soldier's cards. Then followK2 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 limit-limit 1.

Sample test (s) input
42 1 32 4 2
Output
6 2
Input
31 22 1 3
Output
-1
Note

First sample:

Second sample:

The question is very simple. It is mainly simulated. Although there are many statuses, there are 10! But because most of the statuses cannot be reached, you can set a certain number of steps. If there is still no result, You can output-1. The official version does not exceed 106. You can also use set to save the status. Queue The underlying layer encapsulates = and
#define INF9000000000#define EPS(double)1e-9#define mod1000000007#define PI3.14159265358979//*******************************************************************************/#endif#define N 20500#define M 100005#define maxn 205#define MOD 1000000000000000007queue
     
       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;elsecout << step <<  1 << endl;}}return 0;}
       
      
     

 

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.