Codeforces 574C Bear and Poker【思维】

C. Bear and Poker
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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?

Input

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.

Output

Print "Yes" (without the quotes) if players can make their bids become equal, or "No" otherwise.

Examples
Input
4
75 150 75 50
Output
Yes
Input
3
100 150 250
Output
No
Note

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.


题目大意:

给你N个数,每个数都可以进行无限次数的*2或者是*3.

问最终能否使得所有数都相等。


思路:


逆向思维,向上乘,我们不如改变成向下除,乘除等价,我们只要将所有数都无脑/2直到不能除为止开始/3.直到不能除为止。

那么剩下的这个序列如果所有数都相等,那么就是Yes,否则就是No


Ac代码:

#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
int a[100505];
int main()
{
    int n;
    while(~scanf("%d",&n))
    {
        for(int i=1;i<=n;i++)
        {
            scanf("%d",&a[i]);
        }
        for(int i=1;i<=n;i++)
        {
            while(a[i]%2==0)a[i]/=2;
            while(a[i]%3==0)a[i]/=3;
        }
        int flag=0;
        sort(a+1,a+1+n);
        for(int i=2;i<=n;i++)
        {
            if(a[i]!=a[i-1])flag=1;
        }
        if(flag==0)printf("Yes\n");
        else printf("No\n");
    }
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值