码迷,mamicode.com
首页 > 其他好文 > 详细

快速乘取模

时间:2016-11-02 20:51:49      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:for   algorithm   cstring   names   ++   efi   bsp   int   can   

#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;
}

//XDOJ1182

 

快速乘取模

标签:for   algorithm   cstring   names   ++   efi   bsp   int   can   

原文地址:http://www.cnblogs.com/zhurb/p/6024120.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!