【暖*墟】#高精度# 进制转换+高精度

【进制转换+高精度 poj 1220】

关键步骤》

while(start[0]>=i){ //进制转换
    y=y*oldBase+start[i];
    ans[i++]=y/newBase;
    y%=newBase;
}

代码》

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

/* 【进制转换】poj 1220
在T组高精度数据中,将每个数据从进制m转化为进制n */

const int MAXN = 1005;
char str[MAXN];
int ans[MAXN],res[MAXN],start[MAXN];
int oldBase,newBase;
 
int getNum(char c){
    if(c>='0'&&c<='9') return c-'0'; //数字
    if(c>='A'&&c<='Z') return c-'A'+10; //大写字母
    return c-'a'+36; //小写字母
}

char getChar(int c){
    if(c>=0&&c<=9) return c+'0';
    if(c>=10&&c<=35) return c-10+'A';
    return c-36+'a';
}

void change(){ //每一位变成数字
    start[0]=strlen(str);
    for(int i=1; i<=start[0]; i++)
        start[i]=getNum(str[i-1]);
}

void solve(){
    memset(res,0,sizeof(res));
    while(start[0]>=1){
        int i=1,y=0;
        ans[0]=start[0];
        while(start[0]>=i){ //进制转换
            y=y*oldBase+start[i];
            ans[i++]=y/newBase;
            y%=newBase;
        }
        res[++res[0]]=y;
        i=1;
        while(i<=ans[0]&&ans[i]==0) i++;
        memset(start,0,sizeof(ans));
        for(int j=i; j<=ans[0];j++) start[++start[0]]=ans[j];
        memset(ans,0,sizeof(ans));
    }
}

void print(){
    cout<<oldBase<<" "<<str<<endl<<newBase<<" ";
    for(int i=res[0]; i>=1; i--) cout<<getChar(res[i]);
    cout<<endl<<endl;
}

int main(){
    int t; cin>>t;
    while(t--){
        cin>>oldBase>>newBase>>str;
        change(); solve(); print();
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值