zoukankan      html  css  js  c++  java
  • ZOJ2402 Lenny's Lucky Lotto List 简单DP

    Lenny's Lucky Lotto Lists

    Time Limit: 2 Seconds      Memory Limit:65536 KB

    Lenny likes to play the game of lotto. In the lotto game, he picks a list of N unique numbers in the range from 1 to M. If his list matches the list of numbers that are drawn, he wins the big prize.

    Lenny has a scheme that he thinks is likely to be lucky. He likes to choose his list so that each number in it is at least twice as large as the one before it. So, for example, if N = 4 and M = 10, then the possible lucky lists Lenny could like are:

        1 2 4 8
        1 2 4 9
        1 2 4 10
        1 2 5 10

    Thus Lenny has four lists from which to choose.

    Your job, given N and M, is to determine from how many lucky lists Lenny can choose.

    Input

    There will be multiple cases to consider. The first input will be a number C (0 < C <= 50) indicating how many cases with which you will deal. Following this number will be pairs of integers giving values for N and M, in that order. You are guaranteed that 1 <= N <= 10, 1 <= M <= 2000, and N <= M. Each N M pair will occur on a line of its own. N and M will be separated by a single space.

    Output

    For each case display a line containing the case number (starting with 1 and increasing sequentially), the input values for N and M, and the number of lucky lists meeting Lenny's requirements. The desired format is illustrated in the sample shown below.

    Sample Input

    3
    4 10
    2 20
    2 200

    Sample Output

    Case 1: n = 4, m = 10, # lists = 4
    Case 2: n = 2, m = 20, # lists = 100
    Case 3: n = 2, m = 200, # lists = 10000


    
    
    #include<cstdio>
    #include<cstdlib>
    #include<iostream>
    #include<cmath>
    using namespace std;
    #define LL long long 
    LL q[20][2100];
    void _dp()
    {
        for(int i=1;i<=2000;i++)
         q[1][i]=1;
        for(int i=2;i<=10;i++)
        { 
         for(int j=pow(2,i-2);j<=2000;j++)
         {
             for(int k=j/2;k>=0;k--)
             q[i][j]+=q[i-1][k];
         }
        };
    }
    int main()
    {
        int n;
        _dp();
        cin>>n;
         for(int i=1;i<=n;i++)
          {
            LL  ans=0;
            int x,y;
            scanf("%d%d",&x,&y);
            for(int j=pow(2,x-1);j<=y;j++) 
                ans+=q[x][j];
            printf("Case %d: n = %d, m = %d, # lists = %lld
    ",i,x,y,ans);
    
                
         }
        return 0;
    }
     
    
    
    
     
  • 相关阅读:
    Python3 字符串格式化
    TypeError: Object of type 'int32' is not JSON serializable
    论文学习——《Learning to Compose with Professional Photographs on the Web》 (ACM MM 2017)
    python中PIL.Image,OpenCV,Numpy图像格式相互转换
    python 在列表,元组,字典变量前加*号
    python指定概率随机取值 理解np.random.seed()
    论文学习——《Good View Hunting: Learning Photo Composition from Dense View Pairs》
    目标检测知识杂点
    VGG16学习笔记
    python png与jpg的相互转换
  • 原文地址:https://www.cnblogs.com/hua-dong/p/7603934.html
Copyright © 2011-2022 走看看