[Poj1006]生理周期 (中国剩余定理)

Posted fsy2017

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Poj1006]生理周期 (中国剩余定理)相关的知识,希望对你有一定的参考价值。

蒟蒻并不会中国剩余定理

交的时候还出现了PE的错误

下面是AC代码

#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
    int p,e,i,d,T=1;
    cin>>p>>e>>i>>d;
    do{
        int lcm=21252;
        int ans=(5544*p+14421*e+1288*i-d+lcm)%lcm;
        if(ans==0) ans=lcm;
        cout<<"Case "<<T++<<": the next triple peak occurs in "<<ans<<" days."<<endl;
        cin>>p>>e>>i>>d;
    }while(p!=-1);
    return 0;
}

本蒟蒻并不知道这个代码是什么意思

本蒟蒻太弱了

以上是关于[Poj1006]生理周期 (中国剩余定理)的主要内容,如果未能解决你的问题,请参考以下文章

中国剩余定理算法详解 + POJ 1006 Biorhythms 生理周期

POJ 1006 中国剩余定理

POJ 1006 Biorhythms | 中国剩余定理

poj 1006(中国剩余定理+模板题)

poj 1006 生理周期

POJ1006Biorhythms