Limak is an old brown bear. He often plays poker with his friends. Today they went to a casino. There are n players (including Limak himself) and right now all of them have bids on the table. i-th of them has bid with size ai dollars.
Each player can double his bid any number of times and triple his bid any number of times. The casino has a great jackpot for making all bids equal. Is it possible that Limak and his friends will win a jackpot?
First line of input contains an integer n (2 ≤ n ≤ 105), the number of players.
The second line contains n integer numbers a1, a2, ..., an (1 ≤ ai ≤ 109) — the bids of players.
Print "Yes" (without the quotes) if players can make their bids become equal, or "No" otherwise.
4 75 150 75 50
Yes
3 100 150 250
No
In the first sample test first and third players should double their bids twice, second player should double his bid once and fourth player should both double and triple his bid.
It can be shown that in the second sample test there is no way to make all bids equal.
直接看代码吧
#include<bits/stdc++.h>
using namespace std;
const int N=1e5;
int a[N+5];
int judge(int x)
{
while(x%2==0)
x/=2;
while(x%3==0)
x/=3;
return x;
}
int main()
{
int n;
scanf("%d",&n);
for(int i=1;i<=n;i++)
{
scanf("%d",&a[i]);
}
int ans=judge(a[1]);
bool flag=true;
for(int i=2;i<=n;i++)
{
if(judge(a[i])!=ans)
{
flag=false;
break;
}
}
if(flag)
printf("Yes\n");
else
printf("No\n");
return 0;
}
熊与扑克博弈
本文介绍了一个有趣的编程问题:一群玩家(包括一只名叫Limak的老棕熊)在赌场玩扑克,并试图通过加倍或三倍各自的赌注来赢得大奖,条件是所有赌注必须相等。文章提供了实现这一目标的算法思路及代码实现。
592

被折叠的 条评论
为什么被折叠?



