• codeforces546C


    Soldier and Cards

     CodeForces - 546C 

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

    Examples

    Input
    4
    2 1 3
    2 4 2
    Output
    6 2
    Input
    3
    1 2
    2 1 3
    Output
    -1

    sol: 想了半天也没什么好方法,这个数据范围这么小(n<=10),直接暴力模拟,如果次数超过500就puts("-1")
    #include <bits/stdc++.h>
    using namespace std;
    typedef int ll;
    inline ll read()
    {
        ll s=0;
        bool f=0;
        char ch=' ';
        while(!isdigit(ch))
        {
            f|=(ch=='-'); ch=getchar();
        }
        while(isdigit(ch))
        {
            s=(s<<3)+(s<<1)+(ch^48); ch=getchar();
        }
        return (f)?(-s):(s);
    }
    #define R(x) x=read()
    inline void write(ll x)
    {
        if(x<0)
        {
            putchar('-'); x=-x;
        }
        if(x<10)
        {
            putchar(x+'0'); return;
        }
        write(x/10);
        putchar((x%10)+'0');
        return;
    }
    #define W(x) write(x),putchar(' ')
    #define Wl(x) write(x),putchar('
    ')
    int n;
    queue<int>Q1,Q2;
    int main()
    {
        int i,ans=0;
        R(n);
        R(n); while(n--) Q1.push(read());
        R(n); while(n--) Q2.push(read());
        while((!Q1.empty())&&(!Q2.empty()))
        {
            int a=Q1.front(),b=Q2.front();
            if((++ans)>500) break;
            if(a>b)
            {
                Q1.push(b);
                Q1.push(a);
            }
            else
            {
                Q2.push(a);
                Q2.push(b);
            }
            Q1.pop(); Q2.pop();
        }
        if(Q1.empty())
        {
            W(ans); Wl(2);
        }
        else if(Q2.empty())
        {
            W(ans); Wl(1);
        }
        else puts("-1");
        return 0;
    }
    /*
    input
    4
    2 1 3
    2 4 2
    output
    6 2
    
    input
    3
    1 2
    2 1 3
    output
    -1
    */
    View Code
     
  • 相关阅读:
    微信公众平台开发文档 生成带参数的二维码
    微信公众平台开发文档 获取用户地理位置
    文件上传控件-如何上传文件-文件夹下载
    文件上传控件-如何上传文件-大文件下载
    文件上传控件-如何上传文件-文件夹层级结构
    文件上传控件-如何上传文件-文件夹断点续传
    文件上传控件-如何上传文件-文件夹上传
    文件上传控件-如何上传文件-大文件断点续传
    文件上传控件-如何上传文件-大文件上传
    文件夹上传插件webupload插件
  • 原文地址:https://www.cnblogs.com/gaojunonly1/p/10656850.html
Copyright © 2020-2023  润新知