CodeForces - 346A Alice and Bob博弈

Posted 海岛Blog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CodeForces - 346A Alice and Bob博弈相关的知识,希望对你有一定的参考价值。

A. Alice and Bob
time limit per test2 seconds
memory limit per test256 megabytes

It is so boring in the summer holiday, isn’t it? So Alice and Bob have invented a new game to play. The rules are as follows. First, they get a set of n distinct integers. And then they take turns to make the following moves. During each move, either Alice or Bob (the player whose turn is the current) can choose two distinct integers x and y from the set, such that the set doesn’t contain their absolute difference |x - y|. Then this player adds integer |x - y| to the set (so, the size of the set increases by one).

If the current player has no valid move, he (or she) loses the game. The question is who will finally win the game if both players play optimally. Remember that Alice always moves first.

Input
The first line contains an integer n (2 ≤ n ≤ 100) — the initial number of elements in the set. The second line contains n distinct space-separated integers a1, a2, …, an (1 ≤ ai ≤ 109) — the elements of the set.

Output
Print a single line with the winner’s name. If Alice wins print “Alice”, otherwise print “Bob” (without quotes).

Examples
input
2
2 3
output
Alice
input
2
5 3
output
Alice
input
3
5 6 7
output
Bob
Note
Consider the first test sample. Alice moves first, and the only move she can do is to choose 2 and 3, then to add 1 to the set. Next Bob moves, there is no valid move anymore, so the winner is Alice.

问题链接CodeForces - 346A Alice and Bob
问题简述:(略)
问题分析:(略)

AC的C++语言程序如下:

/* CodeForces - 346A Alice and Bob */

#include <iostream>
#include <algorithm>
#include <cstdio>

using namespace std;

const int N = 100;
int n, a[N];

int main()

    scanf("%d", &n);
    for (int i = 0; i < n; i++)
        scanf("%d", &a[i]);

    sort(a, a + n);

    int gcda = a[0];
    for (int i = 1; i < n; i++)
        gcda = __gcd(gcda, a[i]);

    printf((a[n - 1] / gcda - n) & 1 ? "Alice\\n" : "Bob\\n");


    return 0;

以上是关于CodeForces - 346A Alice and Bob博弈的主要内容,如果未能解决你的问题,请参考以下文章

CodeForces - 346A Alice and Bob博弈

Codeforces 346A Alice and Bob 博弈

Codeforces - 346A - Alice and Bob - 简单数论

Codeforce 346A. Alice and Bob

Codeforce 346A. Alice and Bob

codeforces_346A Alice and Bob(数学)