A11513 | Conan and Agasa play a Card Game
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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 $a_{i}$ 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 $a_{j}<a_{i}$ .
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.
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 $a_{j}<a_{i}$ .
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.
输入格式
The first line contains an integer $n$ ( $1<=n<=10^{5}$ ) — the number of cards Conan has.
The next line contains $n$ integers $a_{1},a_{2},...,a_{n}$ ( $1<=a_{i}<=10^{5}$ ), where $a_{i}$ is the number on the $i$ -th card.
The next line contains $n$ integers $a_{1},a_{2},...,a_{n}$ ( $1<=a_{i}<=10^{5}$ ), where $a_{i}$ is the number on the $i$ -th card.
输出格式
If Conan wins, print "Conan" (without quotes), otherwise print "Agasa" (without quotes).
输入输出样例
输入 #1
3 4 5 7
输出 #1
Conan
输入 #2
2 1 1
输出 #2
Agasa
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.
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.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted