zoukankan      html  css  js  c++  java
  • Codeforce914B (Conan and Agasa play a Card Game)

    B. Conan and Agasa play a Card Game
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Edogawa Conan got tired of solving cases, and invited his friend, Professor Agasa, over. They decided to play a game of cards. Conan has n cards, and the i-th card has a number ai written on it.

    They take turns playing, starting with Conan. In each turn, the player chooses a card and removes it. Also, he removes all cards having a number strictly lesser than the number on the chosen card. Formally, if the player chooses the i-th card, he removes that card and removes the j-th card for all j such that aj < ai.

    A player loses if he cannot make a move on his turn, that is, he loses if there are no cards left. Predict the outcome of the game, assuming both players play optimally.

    Input

    The first line contains an integer n (1 ≤ n ≤ 105) — the number of cards Conan has.

    The next line contains n integers a1, a2, ..., an (1 ≤ ai ≤ 105), where ai is the number on the i-th card.

    Output

    If Conan wins, print "Conan" (without quotes), otherwise print "Agasa" (without quotes).

    Examples
    Input
    3
    4 5 7
    Output
    Conan
    Input
    2
    1 1
    Output
    Agasa
    Note

    In the first example, Conan can just choose the card having number 7 on it and hence remove all the cards. After that, there are no cards left on Agasa's turn.

    In the second example, no matter which card Conan chooses, there will be one one card left, which Agasa can choose. After that, there are no cards left when it becomes Conan's turn again.

    分析:当Conan取牌时,所有不同的牌都是偶数张时才会输,

    否则Conan可以通过取奇数次的牌使Agasa面临以上局面。

    #include<cstdio>
    int a[200000];
    int main()
    {
        int N,x;
        scanf("%d",&N);
        for(int i=0;i<N;i++)
        {
            scanf("%d",&x);
            a[x]++;
        }
        for(int i=0;i<=100000;i++)
            if(a[i]%2==1) {printf("Conan
    ");return 0;}
        printf("Agasa
    ");
        return 0;
    }
    View Code
  • 相关阅读:
    Fastadmin框架后端接口三步配置,让你的开发事半功倍,fastadmin如何开发api
    tp5已经不能动态生成模型类了,我就想动态生成怎么办
    CSS3 中什么是transition, transform 和 animation?三者的区别
    Django --- cookie与session,中间件
    Django --- 多对多关系创建,forms组件
    Django --- ajax结合sweetalert使用,分页器,bulk_create批量创建数据
    Django --- 查询优化,ajax
    Django --- 常用字段及参数
    Django --- ORM表查询
    Django --- 视图层
  • 原文地址:https://www.cnblogs.com/ACRykl/p/8323598.html
Copyright © 2011-2022 走看看