Alice and Bob CodeForces

来源:互联网 发布:单片机仿真软件程序 编辑:程序博客网 时间:2024/05/16 11:48

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 ofn 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 integersx 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 containsn 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).

Example
Input
22 3
Output
Alice
Input
25 3
Output
Alice
Input
35 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.

找规律,多举几个例子就能看出操作次数的计算方法是,n-(max/n个数的最大公因数),如果这算出来是偶数,那么bob就赢了
反之alice赢。
#include<bits/stdc++.h>using namespace std;int gcd(int a,int b){    return b?gcd(b,a%b):a;}int save[120];int main(){    int n;    while(scanf("%d",&n)!=EOF)    {        int maxx=0;        for(int i=0; i<n; i++)        {            scanf("%d",&save[i]);            if(maxx<save[i])                maxx=save[i];        }        int k=maxx;        for(int i=0; i<n-1; i++)        {            for(int j=i+1; j<n; j++)            {                int c=gcd(save[i],save[j]);                k=gcd(k,c);            }        }        if((n-maxx/k)%2==0)        printf("Bob\n");        else        printf("Alice\n");    }}