• Uniform Generator


    Problem Description

    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. 

    Input

    Each line of input will contain a pair of integers for STEP and MOD in that order (1 <= STEP, MOD <= 100000).

    Output

    For 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<stdio.h>
     2 #include<math.h>
     3 #include<stdlib.h>
     4 #define N 100010
     5 
     6 int cmp(const void *a, const void *b)
     7 {
     8     return *(int *)a - *(int *)b;
     9 }
    10 
    11 int judge(int a[], int n)
    12 {
    13     int i, m = 0;
    14     for(i = 0 ; i <= n ; i++)
    15     {
    16         if(a[i] != i)
    17         {
    18             m = 1;
    19             break;
    20         }
    21     }
    22     return m;
    23 }
    24 int main()
    25 {
    26     int a, b, i, c[N], f;
    27     c[0] = 0;
    28     while(scanf("%d%d", &a, &b) != EOF)
    29     {
    30         printf("%10d%10d    ", a, b);
    31         for(i = 1 ; i <= b - 1 ; i++)
    32         {
    33             c[i] = (c[i - 1] + a) % b;
    34         }
    35         qsort(c, b, sizeof(c[0]), cmp);
    36         f = judge(c, b - 1);
    37         if(f == 1)
    38             printf("Bad Choice
    ");
    39         else
    40             printf("Good Choice
    ");
    41         printf("
    ");
    42     }
    43     return 0;
    44 }
  • 相关阅读:
    Flutter实战视频-移动电商-35.列表页_上拉加载更多制作
    Flutter实战视频-移动电商-34.列表页_小BUG的修复
    Flutter实战视频-移动电商-33.列表页_子类和商品列表交互效果
    Flutter实战视频-移动电商-32.列表页_小类高亮交互效果制作
    Flutter实战视频-移动电商-31.列表页_列表切换交互制作
    Flutter实战视频-移动电商-30.列表页_商品列表UI界面布局
    Flutter实战视频-移动电商-29.列表页_商品列表数据模型建立
    Flutter实战视频-移动电商-28.列表页_商品列表后台接口调试
    Flutter实战视频-移动电商-27.列表页_现有Bug修复和完善
    Flutter实战视频-移动电商-26.列表页_使用Provide控制子类-2
  • 原文地址:https://www.cnblogs.com/yishilin/p/4448349.html
Copyright © 2020-2023  润新知