博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces Round #333 (Div. 2) A. Two Bases
阅读量:7101 次
发布时间:2019-06-28

本文共 2566 字,大约阅读时间需要 8 分钟。

A. Two Bases
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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 ≤ 102 ≤ 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 ≤ 40bx ≠ 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 21 0 1 1 1 12 104 7
output
=
input
3 31 0 22 52 4
output
<
input
7 1615 15 4 0 0 7 107 94 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.

题意:

给你两个数,让你比较大小,但是进制不同,位数也不一定相同

解题思路:

直接模拟做,全都化成十进制数在做。。

上代码

#include 
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;#define MM(a) memset(a,0,sizeof(a))typedef long long LL;typedef unsigned long long ULL;const int maxn = 1e5+5;const int mod = 1e9+7;const double eps = 1e-10;const int INF = 0x3f3f3f3f;LL gcd(LL a, LL b){ if(b == 0) return a; return gcd(b, a%b);}LL a[maxn], b[maxn];int main(){ LL n1, n2, num1, num2; cin>>n1>>num1; for(int i=0; i
>a[i]; LL sum1 = 0, sum2 = 0; for(int i=n1-1; i>=0; i--) { LL sum = 1; for(int j=0; j
>n2>>num2; for(int i=0; i
>b[i]; for(int i=n2-1; i>=0; i--) { LL sum = 1; for(int j=0; j
<"); else puts(">"); return 0;}/**10 1615 15 4 0 0 0 0 7 10 97 94 8 0 3 1 5 0*/

转载地址:http://xyrql.baihongyu.com/

你可能感兴趣的文章
iOS之RunLoop
查看>>
去除titleBar
查看>>
CentOS下快速yum安装LAMP环境
查看>>
sysbench-0.5的安装和做性能测试
查看>>
Linux内核调优部分参数说明
查看>>
Linux之部署Zabbix监控系统
查看>>
Sharepoint 2013 整合 Office Web Apps Server 2013
查看>>
gcc 不支持__attribute__((naked)
查看>>
C语言基础之类型,运算符,表达式
查看>>
写给即将到来的你
查看>>
XenDesktop5各版本特性对比
查看>>
Skype For Business Server 2015 离线消息
查看>>
centos6.5上dstat的安装
查看>>
Windows优化策略及Netcat后门工具
查看>>
利用random生成6位随机验证码
查看>>
翻身的废鱼——论PHP从入门到放弃需要多久?18
查看>>
建立window的时间服务器(NTP)
查看>>
提高C#编程水平不可不读的50个要诀
查看>>
正则表达式——转载
查看>>
关于css3的50道常见面试题
查看>>