zoukankan      html  css  js  c++  java
  • codeforces 630R Game

    R. Game
    time limit per test
    0.5 seconds
    memory limit per test
    64 megabytes
    input
    standard input
    output
    standard output

    There is a legend in the IT City college. A student that failed to answer all questions on the game theory exam is given one more chance by his professor. The student has to play a game with the professor.

    The game is played on a square field consisting of n × n cells. Initially all cells are empty. On each turn a player chooses and paint an empty cell that has no common sides with previously painted cells. Adjacent corner of painted cells is allowed. On the next turn another player does the same, then the first one and so on. The player with no cells to paint on his turn loses.

    The professor have chosen the field size n and allowed the student to choose to be the first or the second player in the game. What should the student choose to win the game? Both players play optimally.

    Input

    The only line of the input contains one integer n (1 ≤ n ≤ 1018) — the size of the field.

    Output

    Output number 1, if the player making the first turn wins when both players play optimally, otherwise print number 2.

    Examples
    input
    1
    output
    1
    input
    2
    output
    2
    这是一道博弈题,当n是奇数时先出的必然赢,否则必输
    #include<stdio.h>       //r
    #include<string.h>
    #include<stdlib.h>
    #include<algorithm>
    #include<math.h>
    #include<queue>
    #include<stack>
    #define INF 0x3f3f3f
    #define MAX 100100
    #define LL long long
    using namespace std;
    int main()
    {
    	LL n,m,j,i;
    	while(scanf("%lld",&n)!=EOF)
    	{
    		if(n&1)
    		    printf("1
    ");
    		else
    		    printf("2
    ");
    	}
    	return 0;
    }
    

      



  • 相关阅读:
    Eclipse与Tomcat
    乱入Spring+Mybatis
    windows一次无线网卡被关闭事件
    数列的考查角度收集整理2[三轮总结]
    数列的考查角度收集整理1[三轮总结]
    求函数的解析式
    不等式证明的那些事
    高中数学中最值素材整理【待编辑】
    函数与导数中常用的函数和不等关系
    坐标系与参数方程的考向整理[三轮总结]
  • 原文地址:https://www.cnblogs.com/tonghao/p/5202103.html
Copyright © 2011-2022 走看看