码迷,mamicode.com
首页 > 其他好文 > 详细

UVa10943

时间:2016-09-03 19:44:32      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

10943 How do you add?
Larry is very bad at math — he usually uses a calculator, which worked
well throughout college. Unforunately, he is now struck in a deserted
island with his good buddy Ryan after a snowboarding accident.
They’re now trying to spend some time figuring out some good
problems, and Ryan will eat Larry if he cannot answer, so his fate is
up to you!
It’s a very simple problem — given a number N, how many ways
can K numbers less than N add up to N?
For example, for N = 20 and K = 2, there are 21 ways:
0+20
1+19
2+18
3+17
4+16
5+15
...
18+2
19+1
20+0
Input
Each line will contain a pair of numbers N and K. N and K will both be an integer from 1 to 100,
inclusive. The input will terminate on 2 0’s.
Output
Since Larry is only interested in the last few digits of the answer, for each pair of numbers N and K,
print a single number mod 1,000,000 on a single line.
Sample Input
20 2
20 2
0 0
Sample Output
21
21

题意:

       将K个不超过N的非负整数加起来,使得它们的和为N,有多少种方法?N=5,K=2时一共有6种方法,即0+5、1+4、2+3、3+2、4+1、5+0。输出方法总数模1000000的余数。

分析:

       相当于解方程sum{xi | i = 1,2,…,K && xi >= 0}。答案就是C(N+K-1,K-1)。

技术分享
 1 #include <cstdio>
 2 #include <cstring>
 3 #include <iostream>
 4 using namespace std;
 5 #define ll long long
 6 const int MOD = 1000000;
 7 const int maxk = 200;
 8 ll C[maxk + 2][maxk + 2];
 9 // 线性算法,可以加取模
10 void get_C(){
11     memset(C,0,sizeof C);
12     C[0][0] = 1;
13     for(int i = 0 ; i <= maxk ; i++){
14         C[i][0] = C[i][i] = 1;
15         for(int j = 1 ; j < i ; j++)
16             C[i][j] = (C[i - 1][j] + C[i - 1][j - 1]) % MOD;
17     }
18 }
19 // 直接计算,不要随便取模,计算量过大时会有误差
20 long long cal_C(long long n,long long m){
21     double ans = 1;
22     for(int i = 0 ; i < m ; i++) ans *= n - i;
23     for(int i = 0 ; i < m ; i++) ans /= i + 1;
24     return (long long)(ans + 0.5) % MOD;
25 }
26 int main(){
27     int N,K;
28     get_C();
29     while(scanf("%d%d",&N,&K) == 2 && N){
30         printf("%lld\n",C[N + K - 1][K - 1]);
31     }
32     return 0;
33 }
View Code

 

UVa10943

标签:

原文地址:http://www.cnblogs.com/cyb123456/p/5837669.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!