PAT1010

本篇介绍了一种算法挑战,即给定两个数及其中一个数的进制,通过转换找到另一个数的进制使两者相等。文章提供了示例输入输出,并讨论了使用二分查找方法确定未知进制的有效策略。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Given a pair of positive integers, for example, 6 and 110,

给出一对正整数,例如6和110

can this equation 6 = 110 be true?

6=110这个等式能是对的吗

The answer is "yes", if 6 is a decimal number and 110 is a binary number.

答案是yes,如果6是十进制数,110是二进制数

Now for any pair of positive integers N1 and N2,

现在给出任意的一对正整数N1和N2

your task is to find the radix of one number while that of the other is given.

你的任务是找到一个数的进制和另一个数的

Input Specification:

Each input file contains one test case. Each case occupies a line which contains 4 positive integers:

每个输入文件包含一个测试用例,每个测试用例给出一行包含4个正整数
N1 N2 tag radix
Here N1 and N2 each has no more than 10 digits.

N1和N2每个都不会超过10个数字

A digit is less than its radix and is chosen from the set {0-9, a-z}

一个数字最少有一个进制,所以是在0-9,a-z里面选的

where 0-9 represent the decimal numbers 0-9,

0-9表示十进制的0-9

and a-z represent the decimal numbers 10-35.

a-z表示十进制的10-35

The last number "radix" is the radix of N1 if "tag" is 1, or of N2 if "tag" is 2.

最后一个是基数,如果tag是1,这个基数就是N1的,否则是N2的

Output Specification:

For each test case, print in one line the radix of the other number so that the equation N1 = N2 is true.

对于每个测试用例,打印出一行一个基数使得另一个数能满足等式两边相等

If the equation is impossible, print "Impossible". If the solution is not unique, output the smallest possible radix.

如果有等式是不可能成立的,打印出impossible,如果解决方案不唯一,打印出最小的可能的值。

Sample Input 1:

6 110 1 10

Sample Output 1:

2

Sample Input 2:

1 ab 1 2

Sample Output 2:

Impossible
 
这道题目就是给出两个数,给出一个数的进制,求另一个数的进制,要满足两个数相等的条件下。
给出思路,首先把知道进制的数转换成10进制,然后把另一个不知道进制的数,用二分的思想去找到一个进制,转换成10进制之后能满足两数相等的条件。
 
做这道题的我已经放弃了,靠,题目给出的是0-9a-z但是最高的进制数并不是36,所以一直错一直错。
给出的思路就这样吧,有了二分的思想我觉得就可以了。
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值