zoukankan      html  css  js  c++  java
  • 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 }
  • 相关阅读:
    子网划分
    数据报分片
    CRC校验
    内部网关协议RIP与OSPF的特点、区别
    简述协议与服务的区别、关系
    算法思想
    上机实验题7--求解装载问题
    上机实验题6--求最长单调递增子序列
    python进程和线程
    python序列化操作
  • 原文地址:https://www.cnblogs.com/yishilin/p/4448349.html
Copyright © 2011-2022 走看看