zoukankan      html  css  js  c++  java
  • Codeforce 573A. Bear and Poker

    Limak is an old brown bear. He often plays poker with his friends. Today they went to a casino. There are nplayers (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.

    将2将3除尽,剩下的数如果一致即可

    #include <cstdio>
    #include <cctype>
    #include <stdlib.h>
    #include <iostream>
    #include <cmath>
    #include <cstring>
    #include <algorithm>
    #include <string>
    #include <vector>
    #include <map>
    using namespace std;
    typedef long long LL;
    int n;
    LL times = 0;
    
    int main() {
      // freopen("test.in","r",stdin);
      cin >> n;
      LL a;
      cin >> a;
      int ok = 1;
      while (a > 1 && a % 2 == 0){
        a = a / 2;
      }
      while (a > 1 && a % 3 == 0){
        a = a / 3;
      }
      times = a;
      for (int i=1;i<n;i++){
        LL b;
        cin >> b;
        if (!ok) continue;
        if (b % times != 0){
          ok = 0; continue;
        }
        else {
          b = b / times;
          while (b > 1 && b % 2 == 0){
            b = b / 2;
          }
          while (b > 1 && b % 3 == 0){
            b = b / 3;
          }
          if (b > 1){
            ok = 0; continue;
          }
        }
      }
      if (ok) cout << "Yes";
      else cout << "No";
      return 0;
    }
    View Code
  • 相关阅读:
    Kubernetes 部署 Kubernetes-Dashboard v2.0.0
    Kubernetes 部署 Metrics Server 获取集群指标数据
    内网终端安全建设(转)
    内网安全运营的逻辑体系架构(转)
    thinkphp5配置文件
    MySQL索引失效的几种情况
    workman使用
    长连接技术(Long Polling)
    php好文章的记录
    php类与对象得使用场景
  • 原文地址:https://www.cnblogs.com/ToTOrz/p/6814760.html
Copyright © 2011-2022 走看看