CF546C.Soldier and Cards

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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

输入格式

First line contains a single integer nn ( 2<=n<=102<=n<=10 ), the number of cards.

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

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

All card values are different.

输出格式

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

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

输入输出样例

  • 输入#1

    4
    2 1 3
    2 4 2
    

    输出#1

    6 2
  • 输入#2

    3
    1 2
    2 1 3
    

    输出#2

    -1

说明/提示

First sample:

Second sample:

首页