zoukankan      html  css  js  c++  java
  • 西交校赛 F. GZP and Poker

    F. GZP and Poker

    GZP often plays games with his friends.Today they went to a board game.There are n players(including GZP) and all of them have some virtual money on the table. ith of them has ai yuan.
    Each player can double his virtual wealth any number of times and triple his virtual wealth any number of times.The game has a big prize for making wealth of all players equal.Is it possible for GZP and his friends to win the big prize?
     

    Input

    The input consists of several test cases.
    First line of input contains an integer n(2n10^5),the number of players.
    The second line contains n integer numbers a1,a2,,an(1ai10^9)-the virtual money of players.
     

    Output

    For each test case, print a line.
    "Yes"(without the quotes)if players can make their wealth equal, or "No" otherwise.
     

    Sample Input

    4
    75 150 75 50
    3
    100 150 250

    Sample Output

    Yes
    No


    题意

    问这些数能否经过变成同一个数,变换为乘2或者3,乘的次数任意;

    思路

    temp=a[i]*2^x*3*y;
    可以发现
    a[i]*2^x*3*y=a[j];
    这里的x和y为整数;那么就可以搜索了;

    AC代码

    #include <bits/stdc++.h>
    using namespace std;
    #define Riep(n) for(int i=1;i<=n;i++)
    #define Riop(n) for(int i=0;i<n;i++)
    #define Rjep(n) for(int j=1;j<=n;j++)
    #define Rjop(n) for(int j=0;j<n;j++)
    #define mst(ss,b) memset(ss,b,sizeof(ss));
    typedef long long LL;
    const LL mod=1e9+7;
    const double PI=acos(-1.0);
    const int inf=0x3f3f3f3f;
    const int N=1e5+5;
    int n;
    LL a[N];
    map<LL,int>mp;
    int dfs(LL x)
    {
        mp[x]=1;
        if(2*x<=3e9+7&&!mp[2*x])
        {
            dfs(2*x);
        }
        if(3*x<=3e9+7&&!mp[3*x])
        {
            dfs(3*x);
        }
        if(x%2==0&&!mp[x/2])
        {
            dfs(x/2);
        }
        if(x%3==0&&!mp[x/3])
        {
            dfs(x/3);
        }
    }
    int solve()
    {
        for(int i=2;i<=n;i++)
        {
            if(!mp[a[i]])
            {
                printf("No
    ");
                return 0;
            }
        }
        printf("Yes
    ");
        return 0;
    }
    int main()
    {
        while(scanf("%d",&n)!=EOF)
        {
            mp.clear();
            Riep(n)
            {
                scanf("%lld",&a[i]);
            }
            dfs(a[1]);
            solve();
    
        }
    
        return 0;
    }
  • 相关阅读:
    解决linux下fflush(stdin)无效
    《转载》使用Chrome浏览器截取整个网页
    JDK切换版本
    消息队列函数(msgget、msgctl、msgsnd、msgrcv)及其范例
    Oracle 账户
    Oracle linux 安装 相关
    Android高德地图获取当前缩放等级及可视区域四个角的坐标
    Intellij idea 导入项目之后编译错误:无效的源版本:7
    数据库异常整理:org.hibernate.QueryException: could not resolve property: “mStation”
    MySQL(六)多表查询
  • 原文地址:https://www.cnblogs.com/zhangchengc919/p/5468885.html
Copyright © 2011-2022 走看看