HDU - 1014 Uniform Generator

Posted 西北会法语

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU - 1014 Uniform Generator相关的知识,希望对你有一定的参考价值。

Computer simulations often require random numbers. One way to generate pseudo-random numbers is via a function of the form

seed(x+1) = [seed(x) + STEP] % MOD

where ‘%‘ is the modulus operator.

Such a function will generate pseudo-random numbers (seed) between 0 and MOD-1. One problem with functions of this form is that they will always generate the same pattern over and over. In order to minimize this effect, selecting the STEP and MOD values carefully can result in a uniform distribution of all values between (and including) 0 and MOD-1.

For example, if STEP = 3 and MOD = 5, the function will generate the series of pseudo-random numbers 0, 3, 1, 4, 2 in a repeating cycle. In this example, all of the numbers between and including 0 and MOD-1 will be generated every MOD iterations of the function. Note that by the nature of the function to generate the same seed(x+1) every time seed(x) occurs means that if a function will generate all the numbers between 0 and MOD-1, it will generate pseudo-random numbers uniformly with every MOD iterations.

If STEP = 15 and MOD = 20, the function generates the series 0, 15, 10, 5 (or any other repeating series if the initial seed is other than 0). This is a poor selection of STEP and MOD because no initial seed will generate all of the numbers from 0 and MOD-1.

Your program will determine if choices of STEP and MOD will generate a uniform distribution of pseudo-random numbers.
InputEach line of input will contain a pair of integers for STEP and MOD in that order (1 <= STEP, MOD <= 100000).
OutputFor each line of input, your program should print the STEP value right- justified in columns 1 through 10, the MOD value right-justified in columns 11 through 20 and either "Good Choice" or "Bad Choice" left-justified starting in column 25. The "Good Choice" message should be printed when the selection of STEP and MOD will generate all the numbers between and including 0 and MOD-1 when MOD numbers are generated. Otherwise, your program should print the message "Bad Choice". After each output test set, your program should print exactly one blank line.
Sample Input

3 5
15 20
63923 99999

Sample Output

         3         5    Good Choice

        15        20    Bad Choice

     63923     99999    Good Choice

全部跑一遍即可,注意输出很坑。
 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<algorithm>
 5 
 6 using namespace std;
 7 
 8 int num[100005],ans[100005];
 9 
10 int wei(int x)
11 {
12     int s=1;
13     while(x>=10)
14     {
15         x=x/10;
16         s++;
17     }
18     return s;
19 }
20 
21 int main()
22 {
23     int n,m;
24     while(~scanf("%d%d",&n,&m))
25     {
26         int flag=0;
27         int n1=wei(n);
28         int m1=wei(m);
29         memset(num,0,sizeof(num));
30         memset(ans,0,sizeof(ans));
31         ans[0]=1;
32         for(int i=0;i<=m;i++)
33         {
34             num[i+1]=(num[i]+n)%m;
35             ans[num[i+1]]++;
36         }
37         for(int i=0;i<m;i++)
38             if(ans[i]==0)
39             {
40                 flag=1;
41                 break;
42             }
43         for(int i=1;i<=10-n1;i++)
44             printf(" ");
45         printf("%d",n);
46         for(int i=1;i<=10-m1;i++)
47             printf(" ");
48         printf("%d    ",m);
49         if(flag==0)
50             printf("Good Choice\n");
51             else
52                 printf("Bad Choice\n");
53         printf("\n");
54     }    
55     
56     
57     return 0;
58 } 

 

以上是关于HDU - 1014 Uniform Generator的主要内容,如果未能解决你的问题,请参考以下文章

HDU 1014 Uniform Generator(题解)

HDU 1014 Uniform Generator

ACM HDU 1014 Uniform Generator

Uniform Generator HDU1014

(HDU)1014 --Uniform Generator(统一随机数生成)

(杭电 1014)Uniform Generator