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

Uniform Generator HDU1014

时间:2018-10-19 02:00:43      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:freopen   name   ems   ice   hdu   clu   code   algorithm   set   

题意

给你公式seed(x+1) = [seed(x) + STEP] % MOD ,输入step和mod,
问你是否可以从第一项0,算到mod,它们是否都不同
是 good choice 否则 bad choice

分析

枚举过去

code

#include<iostream>
#include<string.h>
#include<algorithm>
#include<string>
using namespace std;
#define ll long long
int a[100010];
int main(){
    //freopen("in.txt","r",stdin);
    int s,m;
    while(cin>>s>>m){
        int ans=0;
        int cnt=1;
        memset(a,0,sizeof(a));
        a[0]++;
        bool flag=0;
        while(1){
            if(cnt==m) {
                flag=1;
                break;
            }
          ans=(ans+s)%m;
          a[ans]++;
          if(a[ans]>1) break;
          cnt++;    
        }
        printf("%10d%10d",s,m);
        if(flag)
            cout<<"    Good Choice"<<endl<<endl;
        else
            cout<<"    Bad Choice"<<endl<<endl;

    }
    return 0;
}

Uniform Generator HDU1014

标签:freopen   name   ems   ice   hdu   clu   code   algorithm   set   

原文地址:https://www.cnblogs.com/mch5201314/p/9813902.html

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