首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

Codeforces Round #201 (Div. 二) C. Alice and Bob

2013-09-21 
Codeforces Round #201 (Div. 2)C. Alice and BobC. Alice and Bobtime limit per test2 secondsmemory li

Codeforces Round #201 (Div. 2) C. Alice and Bob
C. Alice and Bobtime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard output

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).

Sample test(s)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.

其实就是最大公约数,

#include <iostream>#include <stdio.h>#include <algorithm>#include <string.h>using namespace std;#define M 1005int pri[M];int mingcd(int a,int b){    if(a==0)return b;    return mingcd(b%a,a);}bool cmp(int a,int b){    return a<b;}int main(){    int n,i,j;    while(scanf("%d",&n)!=EOF){        for(i=0;i<n;i++)        scanf("%d",&pri[i]);        sort(pri,pri+n,cmp);        int nn;        for(i=1,j=0;i<n;i++){            if(pri[j]!=pri[i])            pri[++j]=pri[i];        }        n=j+1;        int temp=mingcd(pri[0],pri[1]);        for(i=2;i<n;i++){            temp=min(temp,mingcd(temp,pri[i]));        }        temp=pri[n-1]/temp-n;        if(temp&1)        printf("Alice\n");        else        printf("Bob\n");    }    return 0;}


热点排行