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

XDOJ_1182_快速乘

时间:2016-11-02 20:13:52      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:ring   bsp   space   efi   while   i++   turn   amp   nbsp   

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_快速乘

标签:ring   bsp   space   efi   while   i++   turn   amp   nbsp   

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

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