codeforces 17 D Notepad 快速冪?

來源:互聯網
上載者:User

標籤:

題意:求((b-1)*bn-1)%c  b和n都很大很大

#include <iostream>#include <stdio.h>#include <string.h>#include <math.h>#include <algorithm>#include <string>#include <map>#include <queue>#include <stack>#include <vector>using namespace std;#define LL long longchar b[1000005],n[1000005];int main(){    int i,j,k,m,len1,len2,c;    LL tp,ans,x;    while(scanf(" %s %s %d",b,n,&c)!=EOF)    {        len1=strlen(b);        x=0;        for(i=0; i<len1; i++)        {            x=x*10+b[i]-‘0‘;            x%=c;        }        ans=x-1;        if(ans<0) ans+=c;        len2=strlen(n);        for(i=len2-1; i>=0; i--)        {            if(n[i]>‘0‘)            {                n[i]--;                break;            }            n[i]=‘9‘;        }        for(i=len2-1; i>=0; i--)        {            tp=x;            for(j=1; j<=9; j++)            {                if(j==n[i]-‘0‘) ans*=x;                x*=tp;                x%=c;            }            ans%=c;        }        if(ans==0) ans=c;        printf("%lld\n",ans);    }    return 0;}

 

codeforces 17 D Notepad 快速冪?

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.