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
  • 相关阅读:
    [HAOI2006] 旅行
    Vue 2 --v-model、局部组件和全局组件、父子组件传值、平行组件传值
    Flume简介及安装
    MySQL数据目录更改及相关问题解决方案
    更换gcc工具链
    支持多种类型的数据集合作为数据源
    23种设计模式--中介者模式-Mediator Pattern
    PID算法原理 一图看懂PID的三个参数
    内存四区
    趣味算法讲解
  • 原文地址:https://www.cnblogs.com/ERKE/p/3662797.html
Copyright © 2011-2022 走看看