11609 - Teams
Time limit: 1.000 seconds
In a galaxy far far away there is an ancient game played among the planets. The specialty of the game is that there is no limitation on the number of players in each team, as long as there is a captain in the team. (The game is totally strategic, so sometimes less player increases the chance to win). So the coaches who have a total of N players to play, selects K (1 ≤ K ≤ N) players and make one of them as the captain for each phase of the game. Your task is simple, just find in how many ways a coach can select a team from his N players. Remember that, teams with same players but having different captain are considered as different team.
Input
The first line of input contains the number of test cases T ≤ 500. Then each of the next T lines contains the value of N (1 ≤ N ≤ 10^9), the number of players the coach has.
Output
For each line of input output the case number, then the number of ways teams can be selected. You should output the result modulo 1000000007.
For exact formatting, see the sample input and output.
Sample Input Output for Sample Input
| 3 1 2 | Case #1: 1 Case #2: 4 Case #3: 12 |
思路:易得结果为

完整代码:
/*0.012s*/
#include <cstdio>
#define ll long long
const int mod = 1000000007;
ll pow(ll a, ll b) ///a^b % mod
{
ll r = 1, base = a;
while (b)
{
if (b & 1)
r = r * base % mod;
base = base * base % mod;
b >>= 1;
}
return r;
}
int main(void)
{
int T, CASE = 0;
ll n;
scanf("%d", &T);
while (T--)
{
scanf("%lld", &n);
printf("Case #%d: %lld\n", ++CASE, (n * pow(2, n - 1)) % mod);
}
}

本文介绍了一个经典的组合数学问题——如何从N名玩家中选择K名并指定一名队长组成团队的不同方式数量。文章提供了完整的代码实现,并通过样例输入输出解释了题目的解法。
777

被折叠的 条评论
为什么被折叠?



