Codeforces 602A Two Bases

来源:互联网 发布:淘宝店铺地址 编辑:程序博客网 时间:2024/06/05 17:58
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, numbersX and Y realised that they have different bases, which complicated their relations.

You're given a number X represented in basebx and a numberY 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), wheren is the number of digits in the bx-based representation ofX.

The second line contains n space-separated integersx1, x2, ..., xn (0 ≤ xi < bx) — the digits ofX. 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 integersm and by (1 ≤ m ≤ 10,2 ≤ by ≤ 40,bx ≠ by), wherem is the number of digits in the by-based representation ofY, and the fourth line contains m space-separated integers y1, y2, ..., ym (0 ≤ yi < by) — the digits ofY.

There will be no leading zeroes. Both X andY 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 andY = 245 = 1123, thusX < Y.

In the third sample, andY = 48031509. We may notice thatX starts with much larger digits and bx is much larger thanby, soX is clearly larger than Y.


直接把每个数都转换成同一个进制,然后比较就行,我是都转换成了十进制
但是!!!不能使用pow函数,就是说不能求幂,必须用秦九韶算法(霍纳法则)才能AC,否则会TLE


#include <iostream>#include <cstdio>#include <cstdlib>#include <cstring>#include <cmath>#include <algorithm>using namespace std;int main(){long long num[2] = { 0 };long long n, b;for (int e = 0; e < 2; ++e){long long temp;scanf("%I64d%I64d", &n, &b);scanf("%I64d", &num[e]);for (int i = 0; i < n - 1; ++i){scanf("%I64d", &temp);num[e] = num[e] * b + temp;}}if (num[0] < num[1])printf("<");else if (num[0]>num[1])printf(">");else if (num[0] == num[1])printf("=");return 0;}



0 0
原创粉丝点击