首页 > 代码库 > XDOJ_1182_快速乘
XDOJ_1182_快速乘
http://acm.xidian.edu.cn/problem.php?id=1182
类似于快速幂,处理超long long取模的乘法。
#include<iostream> #include<cstring> #include<cstdio> #include<algorithm> #define LL long long #define MOD 23333333333 using namespace std; LL n,m; LL qmul(LL a, LL b, LL c) { LL ans = 0; a = a%c; while(b) { if(b&1) ans = (ans+a)%c; b >>= 1; a = (a+a)%c; } return ans; } int main() { while(~scanf("%lld%lld",&n,&m)) { LL x = m/3,y = m%3,ans = 0; if(x%2) ans = qmul(x*3,(2*n+x+1)/2,MOD); else ans = qmul(x*3/2,2*n+x+1,MOD); for(int i = 0;i < y;i++) ans = (ans+n+x+i)%MOD; printf("%lld\n",ans); } return 0; }
XDOJ_1182_快速乘
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。