zoukankan      html  css  js  c++  java
  • The Nerd Factor SPOJ

    Time Limit: 1000MS   Memory Limit: Unknown   64bit IO Format: %lld & %llu

    []   [Go Back]   [Status]  

    Description

    Prof.Venky handles Advanced Topics in Algorithms course for a class of 'n' students. He is always known for his unsolvable question papers. Knowing that it is impossible to pass his subject in a fair manner, one of the students of his class, Vishy, finds out from his seniors that Prof.Venky won't be able to find out if at least 'k' students together discuss and write the answers and thereby all of them can pass. Hence they decide to divide the whole class into a number of groups so that everyone passes. But all the students are fighting over forming the groups. So Puppala, one of the nerdy students in the class, decides  that he will compute all possible ways that they can form the groups and number them, and finally choose one of those numbers at random and go ahead with that way. Now it is your duty to help Puppala find the number of  ways that they can form such groups. 

    Pupalla is incapable of reading big numbers, so please tell him the answer modulo 10^9+7.

    Input

    The first line contains the number of test case t(1<=t<=10^6). 
    Followed by t lines for each case. 
    Each test case contains two integers 'n' and 'k' separated by a space(1<=k,n<=1000)

    Output

    For each test case, print a single line containing one positive integer representing the number of ways modulo 10^9+7 .

    Example

    Input: 3 
    2 1
    4 2
    6 2 Output: 2
    2
    4


     1 #include <iostream>
     2 #include <stdio.h>
     3 using namespace std;
     4 #define mod 1000000007
     5 int dp[1100][1100]={0};
     6 void init()
     7 {
     8     int i,j;
     9     for(i=1;i<=1000;i++)dp[i][i]=1;
    10     for(i=2;i<=1000;i++)
    11     {
    12         for(j=i-1;j>0;j--)dp[i][j]=(dp[i][j+1]+dp[i-j][j])%mod;
    13     }
    14 }
    15 int main()
    16 {
    17     init();
    18     int t,n,k;
    19     scanf("%d",&t);
    20     while(t--)
    21     {
    22         scanf("%d%d",&n,&k);
    23         printf("%d
    ",dp[n][k]);
    24     }
    25     return 0;
    26 }
    View Code
  • 相关阅读:
    Windows 10下CUDA及cuDNN的安装 —— Pytorch
    Centos7 python3环境搭建 兼容python2.7
    VMware中Linux虚拟机与Windows主机共享文件夹
    基于阿里云服务器的网站搭建 新手教程
    CVE-2017-11882 漏洞分析总结 新手漏洞分析详细教程
    Linux基本命令 和 Regex 正则表达式
    Shell 编程 基础用法
    Perl 编程 基础用法
    Python3 网络通信 网络聊天室 文件传输
    Ant Design of Angular
  • 原文地址:https://www.cnblogs.com/ERKE/p/3662797.html
Copyright © 2011-2022 走看看