zoukankan      html  css  js  c++  java
  • B. Spider Man

    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output
     

    Peter Parker wants to play a game with Dr. Octopus. The game is about cycles. Cycle is a sequence of vertices, such that first one is connected with the second, second is connected with third and so on, while the last one is connected with the first one again. Cycle may consist of a single isolated vertex.

    Initially there are k cycles, i-th of them consisting of exactly vi vertices. Players play alternatively. Peter goes first. On each turn a player must choose a cycle with at least 2 vertices (for example, x vertices) among all available cycles and replace it by two cycles with p andx - p vertices where 1 ≤ p < x is chosen by the player. The player who cannot make a move loses the game (and his life!).

    Peter wants to test some configurations of initial cycle sets before he actually plays with Dr. Octopus. Initially he has an empty set. In thei-th test he adds a cycle with ai vertices to the set (this is actually a multiset because it can contain two or more identical cycles). After each test, Peter wants to know that if the players begin the game with the current set of cycles, who wins?

    Peter is pretty good at math, but now he asks you to help.

    Input

    The first line of the input contains a single integer n (1 ≤ n ≤ 100 000) — the number of tests Peter is about to make.

    The second line contains n space separated integers a1, a2, ..., an (1 ≤ ai ≤ 109), i-th of them stands for the number of vertices in the cycle added before the i-th test.

    Output

    Print the result of all tests in order they are performed. Print 1 if the player who moves first wins or 2 otherwise.

    Examples
    input
    3
    1 2 3
    output
    2
    1
    1
    input
    5
    1 1 5 1 1
    output
    2
    2
    2
    2
    2

    Note

    In the first sample test:

    In Peter's first test, there's only one cycle with 1 vertex. First player cannot make a move and loses.

    In his second test, there's one cycle with 1 vertex and one with 2. No one can make a move on the cycle with 1 vertex. First player can replace the second cycle with two cycles of 1 vertex and second player can't make any move and loses.

    In his third test, cycles have 1, 2 and 3 vertices. Like last test, no one can make a move on the first cycle. First player can replace the third cycle with one cycle with size 1 and one with size 2. Now cycles have 1, 1, 2, 2 vertices. Second player's only move is to replace a cycle of size 2 with 2 cycles of size 1. And cycles are 1, 1, 1, 1, 2. First player replaces the last cycle with 2 cycles with size 1 and wins.

    In the second sample test:

    Having cycles of size 1 is like not having them (because no one can make a move on them).

    In Peter's third test: There a cycle of size 5 (others don't matter). First player has two options: replace it with cycles of sizes 1 and 4 or 2and 3.

    • If he replaces it with cycles of sizes 1 and 4: Only second cycle matters. Second player will replace it with 2 cycles of sizes 2. First player's only option to replace one of them with two cycles of size 1. Second player does the same thing with the other cycle. First player can't make any move and loses.
    • If he replaces it with cycles of sizes 2 and 3: Second player will replace the cycle of size 3 with two of sizes 1 and 2. Now only cycles with more than one vertex are two cycles of size 2. As shown in previous case, with 2 cycles of size 2 second player wins.

    So, either way first player loses.

    题意:

    就是n个环,每个环有ai个结点,Peter Parker和Dr. Octopus博弈,Peter Parker先手当环内结点数>1时,可将该环分成两个环,分别为k个结点和ai-k个结点问随着环数的增加,谁会赢?Peter Parker赢输出"1";否则输出"2"。

    题目不难 题意难!!题面太长的水题也算是难题啊好吧QAQ

    说白了还是判断奇偶吗。

    附AC代码:

     1 #include<bits/stdc++.h>
     2 using namespace std;
     3 
     4 int main()
     5 {
     6     int n,s,i;
     7     long long ans=0;
     8     cin>>n;
     9     for(i=0;i<n;i++)
    10     {
    11         cin>>s;
    12         ans+=s-1;
    13         if(ans%2)
    14             cout<<"1"<<endl;
    15         else
    16             cout<<"2"<<endl;
    17     }
    18     return 0;
    19 }

    p.s.

    昨晚cf开场时间还是蛮友好的~趴在床上水过A题正在看B题题意时室友突然跑进来抱走我电脑看柯南去了-_-# 果不其然又掉分了...

  • 相关阅读:
    channel 功能解析
    Docker 使用 Jenkins 镜像创建容器(转)
    使用Gson将Object转String出现u003d 的原因
    Gradle基础
    JAVA HashMap 和 HashSet 的区别
    ViewStub基本用法
    String类的内存分配
    区块链--资产数字化之路
    选择排序
    冒泡排序
  • 原文地址:https://www.cnblogs.com/Kiven5197/p/5749642.html
Copyright © 2011-2022 走看看