加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

51nod 1116 K进制下的大数 暴力/数论

发布时间:2020-12-14 03:16:53 所属栏目:大数据 来源:网络整理
导读:题目链接: http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1116 题意: 题解: 代码: 暴力: #include bits/stdc++.h using namespace std;typedef long long ll; # define MS(a) memset(a,sizeof(a)) # define MP make_pair # define PB pus

题目链接:

http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1116

题意:

题解:

这里写图片描述


这里写图片描述

代码:

暴力:

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define MS(a) memset(a,sizeof(a))
#define MP make_pair
#define PB push_back
const int INF = 0x3f3f3f3f;
const ll INFLL = 0x3f3f3f3f3f3f3f3fLL;
inline ll read(){
    ll x=0,f=1;char ch=getchar();
    while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
    while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
    return x*f;
}
//////////////////////////////////////////////////////////////////////////
const int maxn = 1e5+10;

string str;
int len;

bool check(int k){
    ll sum=0;
    for(int i=0; i<len; i++){
        if(str[i]>='A') sum =  sum*k + (str[i]-'A'+10);
        else sum = sum*k + (str[i]-'0');
        sum %= (k-1);
    }
    return sum%(k-1) == 0;
}

int main(){
    cin >> str;
    int mx=-1;
    len=str.size();
    for(int i=0; i<len; i++)
        mx = max(mx,str[i]-'A'+10);

    int k,f=0;
    for(k=mx+1; k<=36; k++){
        if(check(k)) {f=1; break;}
    }

    if(f) cout << k << endl;
    else cout << "No Solution" << endl;


    return 0;
}

数学:

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define MS(a) memset(a,f=1;char ch=getchar();
    while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
    while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
    return x*f;
}
//////////////////////////////////////////////////////////////////////////
const int maxn = 1e5+10;

string str;
ll sum;

int main(){
    cin >> str;
    int mx=-1,len = str.size();
    for(int i=0; i<len; i++){
        if(str[i]>='A') mx=max(mx,str[i]-'A'+10),sum += str[i]-'A'+10;
        else mx=max(mx,str[i]-'0'),sum += str[i]-'0';
    }

    int f = 0,ans;
    for(int i=mx; i<36; i++){
        if(sum % i == 0){
            f = 1;
            ans = i+1;
            break;
        }
    }

    if(f) cout << ans << endl;
    else cout << "No Solution" << endl;

    return 0;
}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读