Attack on Titans

作者在 2014-02-26 16:34:13 发布以下内容
Time Limit: 2 Seconds      Memory Limit: 65536 KB

        Over centuries ago, mankind faced a new enemy, the Titans. The difference of power between mankind and their newfound enemy was overwhelming. Soon, mankind was driven to the brink of extinction. Luckily, the surviving humans managed to build three walls: Wall Maria, Wall Rose and Wall Sina. Owing to the protection of the walls, they lived in peace for more than one hundred years.

        But not for long, a colossal Titan appeared out of nowhere. Instantly, the walls were shattered, along with the illusory peace of everyday life. Wall Maria was abandoned and human activity was pushed back to Wall Rose. Then mankind began to realize, hiding behind the walls equaled to death and they should manage an attack on the Titans.

        So, Captain Levi, the strongest ever human being, was ordered to set up a special operation squad of N people, numbered from 1 to N. Each number should be assigned to a soldier. There are three corps that the soldiers come from: the Garrison, the Recon Corp and the Military Police. While members of the Garrison are stationed at the walls and defend the cities, the Recon Corps put their lives on the line and fight the Titans in their own territory. And Military Police serve the King by controlling the crowds and protecting order. In order to make the team more powerful, Levi will take advantage of the differences between the corps and some conditions must be met.

        The Garrisons are good at team work, so Levi wants there to be at least M Garrison members assigned with continuous numbers. On the other hand, members of the Recon Corp are all elite forces of mankind. There should be no more than K Recon Corp members assigned with continuous numbers, which is redundant. Assume there is unlimited amount of members in each corp, Levi wants to know how many ways there are to arrange the special operation squad.

Input

There are multiple test cases. For each case, there is a line containing 3 integers N (0 < N < 1000000), M (0 < M < 10000) and K (0 < K < 10000), separated by spaces.

Output

One line for each case, you should output the number of ways mod 1000000007.

Sample Input

3 2 2

Sample Output

5

Hint

Denote the Garrison, the Recon Corp and the Military Police as G, R and P. Reasonable arrangements are: GGG, GGR, GGP, RGG, PGG.

/********************************************************************************************************/

//不合格代码,感觉2year能算出来,而不是2sec

#include<iostream>
using namespace std;
long N;
long M;
long K;
long n_ways;
void possible(long num_g,long num_gt,long num_r,long num_s)
{
	if(num_s==N)
	{
		if(num_g>=M||num_gt>0)
		{
			n_ways++;
			n_ways=n_ways%1000000007;
		}
		return;
	}
	possible(num_g+1,num_gt,num_r,num_s+1);
	if(num_g>=M||num_g==0)
	{
		if(num_g>=M)
		{
			num_g=0;
			num_gt++;
		}
		if(num_r>=K) return;
		else possible(num_g,num_gt,num_r+1,num_s+1);
		possible(num_g,num_gt,num_r,num_s+1);
	}
	else return ;
}

void main()
{
	for(N=1;N<100000;N++)
		for(M=1;M<N&&M<10000;M++)
			for(K=1;K<N&&K<10000;K++)
			{
				n_ways=0;
				possible(0,0,0,0);
				cout<<N<<" "<<M<<" "<<K<<" "<<n_ways<<endl;
			}

}

默认分类 | 阅读 1993 次
文章评论,共0条
游客请输入验证码
最新评论