我是靠谱客的博主 安详发夹,最近开发中收集的这篇文章主要介绍hdu 1212,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

主题思想: 秦九韶算法,同余定理。

(a+b)mod n= a mod n+ b mod n
(a*c) mod n= amodn *c mod n

对于字符串,12345789 .. 转化为数字,
1*10^(n-1)+2*10^(n-2)
等于
(((1*10)+2)*10+3) …

int num=0;
for(int i=0;i<s.length();i++){
num=num*10+s[i]-'0';
//
}

AC代码:

#include <iostream>
#include<cstdio>
#include<cstring>
#include<string>
using namespace std;
const int maxn=1200;
char s[maxn];
int m;
int main()
{
while(scanf("%s%d",s,&m)!=EOF){
int len=strlen(s);
int ans=0;
for(int i=0;i<len;i++){
ans=(ans*10+s[i]-'0')%m;
}
printf("%dn",ans);
}
return 0;
}

最后

以上就是安详发夹为你收集整理的hdu 1212的全部内容,希望文章能够帮你解决hdu 1212所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部