PAT 甲级 1010( Radix)

题目要求

Given a pair of positive integers, for example, 6 and 110, can this equation 6 = 110 be true? The answer is yes, if 6 is a decimal number and 110 is a binary number.

Now for any pair of positive integers N 1 N_1 N1and N 2 N_2 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:

N1 N2 tag radix

Here N1 and N2 each has no more than 10 digits. A digit is less than its radix and is chosen from the set { 0-9, a-z } where 0-9 represent the decimal numbers 0-9, and a-z represent the decimal numbers 10-35. The last number radix is the radix of N1 if tag is 1, or of N2 if tag is 2.

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.

Sample Input 1:
6 110 1 10

Sample Output 1:
2

Sample Input 2:
1 ab 1 2

Sample Output 2:
Impossible

翻译

给定四个输入,前两个是数字,第三个是标签,第四个是进制。当标签为1时,进制指的是第1个数字的进制,标签为2时,进制指的是第二个数字的进制。

要求判断能不能将另一个数,转成n进制,与所给的标签对应的数字相等,如果能,输出n,如果不能,输出Impossible。

所给数字最大可能是10位数。

代码

#include <iostream>
#include <algorithm>
#include <string>
#include <cmath>
using namespace std;
int toDig(char c)
{
    if(c<='9' && c>='0') return c-'0';
    else return c-'a'+10;
}
long long strTorx(string num,long long radix)
{
    long long ans=0;
    for(int i=num.length()-1,p=0;i>=0;i--,p++)
    {
        ans += toDig(num[i])*pow(radix,p);
    }
    return ans;
}
int main()
{
    string input[2];
    cin>>input[0]>>input[1];
    int tag;
    long long radix;
    cin>>tag>>radix;
    long long num=strTorx(input[tag-1],radix);
    string _num=input[tag%2];
    char it=*max_element(_num.begin(),_num.end());
    long long down = (isdigit(it)?it-'0':it-'a'+10)+1;
    long long up =max(num,down);
    while(down<=up)
    {
        long long mid =(down+up)/2;
        long long rx=strTorx(_num,mid);
        if(rx==num)
        {
            cout<<mid<<endl;
            return 0;
        }else if(rx<0||rx>num)
        {
            up=mid-1;
        }else{
            down =mid+1;
        }
    }
    cout<<"Impossible"<<endl;
    return 0;
}

思路

代码基本借鉴了博客
这是一个进制转换类问题,首先要注意的是,数字最大可能是10位数,因此不能用int存储数字,必须使用long long。

另外,对于10进制以上,输入中就会包含a-z,所以读取输入应当使用string或char[]

此外,数字最大可能是10位数,进制也可能会非常大,如果线性判断会导致三个测试点超时,必须使用二分法来判断,判断的思路是,定义一个上界和下界,每次取mid=(上界+下界)/2为进制进行判断。如果转换进制后的数字比要进行判断的数字(标签对应数字)大,则说明进制选取过大,应减小上界,令上界=min-1即可,反之亦然。

初始下界的选取应根据输入数字中最大的数字来判断,比如12358不可能是7进制的,最小也是9进制

初始上界应该比初始下界大,并且小于要进行判断的数字。

### 关于 PAT 甲级 1010 Radix 测试点 7 的解决方案 对于给定的一对正整数,判断是否存在某个进制使得两个数值相等是一个典型的算法问题。当处理像测试点 7 这样的特定情况时,通常涉及更复杂的边界条件或更大的数据范围。 #### 理解题目要求 该题目的核心在于找到一个合适的基数 \( R \),使字符串形式给出的第一个数字等于第二个数字所表示的实际值。需要注意的是,在某些情况下可能不存在这样的 \( R \)[^2]。 #### 处理大数与溢出风险 为了应对潜在的大数运算以及防止计算过程中发生溢出,可以采用高精度算术库或者编程语言内置的支持大数据类型的特性来完成此任务。此外,设置合理的上下限也是必要的措施之一: ```cpp long long int rb_max = INT32_MAX + 1; ``` 这种方法通过设定超出常规范围的最大最小值,确保不会因为初始假设不当而导致错误的结果[^3]。 #### 实现思路 一种有效的策略是从较低的基数开始尝试直到较高的基数为止,并检查转换后的结果是否匹配。具体来说,可以从基数 `min_base` 开始(通常是字符集中最大可能出现的那个),逐步增加到 `max_base` 或者直到发现符合条件的情况停止。 下面是 C++ 中的一个简化版实现方式: ```cpp #include <iostream> #include <cmath> using namespace std; bool isPossible(string numStr, char targetChar, int& base) { for (base = max(2, targetChar - '0' + 1); ; ++base) { long long value = 0; for (char c : numStr) { if (!isdigit(c)) break; // 非数字字符终止循环 value = value * base + (c - '0'); if (value > LLONG_MAX / base && base != 10) return false; // 检查并预防溢出 } if (to_string(value).find(targetChar) != string::npos) return true; } } int main() { string A, B; cin >> A >> B; int baseA, baseB; bool resultA = isPossible(A, B[B.size()-1], baseA); bool resultB = isPossible(B, A[A.size()-1], baseB); cout << ((resultA || resultB)? "Yes":"No") << endl; } ``` 上述代码片段展示了如何遍历不同的基底来进行验证操作。请注意这只是一个概念性的展示,实际应用中还需要考虑更多细节和优化空间。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值