• codeforces 602A Two Bases


    A. Two Bases

     
     

    After seeing the "ALL YOUR BASE ARE BELONG TO US" meme for the first time, numbers X and Y realised that they have different bases, which complicated their relations.

    You're given a number X represented in base bx and a number Y represented in base by. Compare those two numbers.

    Input

    The first line of the input contains two space-separated integers n and bx (1 ≤ n ≤ 10, 2 ≤ bx ≤ 40), where n is the number of digits in the bx-based representation of X.

    The second line contains n space-separated integers x1, x2, ..., xn (0 ≤ xi < bx) — the digits of X. They are given in the order from the most significant digit to the least significant one.

    The following two lines describe Y in the same way: the third line contains two space-separated integers m and by (1 ≤ m ≤ 10, 2 ≤ by ≤ 40, bx ≠ by), where m is the number of digits in the by-based representation of Y, and the fourth line contains m space-separated integers y1, y2, ..., ym (0 ≤ yi < by) — the digits of Y.

    There will be no leading zeroes. Both X and Y will be positive. All digits of both numbers are given in the standard decimal numeral system.

    Output

    Output a single character (quotes for clarity):

    • '<' if X < Y
    • '>' if X > Y
    • '=' if X = Y
    Sample test(s)
    Input
    6 2
    1 0 1 1 1 1
    2 10
    4 7
    Output
    =
    Input
    3 3
    1 0 2
    2 5
    2 4
    Output
    <
    Input
    7 16
    15 15 4 0 0 7 10
    7 9
    4 8 0 3 1 5 0
    Output
    >
    Note

    In the first sample, X = 1011112 = 4710 = Y.

    In the second sample, X = 1023 = 215 and Y = 245 = 1123, thus X < Y.

    In the third sample, and Y = 48031509. We may notice that X starts with much larger digits and bx is much larger than by, so X is clearly larger than Y.

     1 #include<cstdio>
     2 #include<vector>
     3 #include<cmath>
     4 #include<cstring>
     5 #include<algorithm>
     6 using namespace std;
     7 typedef long long ll;
     8 typedef unsigned long long ull;
     9 int main()
    10 {
    11     ull a,b,bx,by,res1=0,res2=0;
    12     int x,y,m,n;
    13     scanf("%d%I64d",&n,&bx);
    14     for(int i=0;i<n;i++)
    15     {
    16         scanf("%I64d",&a);
    17         res1+=a*pow(bx*1.0,n-i-1);
    18     }
    19     scanf("%d%I64d",&m,&by);
    20     for(int i=0;i<m;i++)
    21     {
    22         scanf("%I64d",&b);
    23         res2+=b*pow(by*1.0,m-i-1);
    24     }
    25     if(res1>res2)
    26         puts(">");
    27     else if(res1==res2)
    28         puts("=");
    29     else
    30         puts("<");
    31     return 0;
    32 }
  • 相关阅读:
    下载网易云音乐的MV
    如何免费的让网站启用https
    阿里云centos7.x 打开80端口(转)
    阿里云服务器Centos7.4开放80端口的记录
    在线检测域名或者ip的端口是否开放(http://coolaf.com/tool/port)
    重置密码解决MySQL for Linux错误 ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
    视频录制剪辑工具
    迷你音乐播放器v1.0正式上线!
    网页音乐播放器
    网站菜单CSS
  • 原文地址:https://www.cnblogs.com/homura/p/4994039.html
Copyright © 2020-2023  润新知