链接:https://www.nowcoder.net/acm/contest/55/H
来源:牛客网
空间限制:C/C++ 262144K,其他语言524288K
64bit IO Format: %lld
题目描述
Yuanyuan Long is a dragon like this picture?
One day, he gets n white ballons and k kinds of pigment, and he thought a problem:
1. Number these ballons b1, b2, … , bi, …, to bn.
2. Link these ballons to a circle in order, and color these ballons.
3. He need to make sure that any neighbor ballons have different colors.
He wants to know how many solutions to solve this problem. Can you get the answer to him? The answer maybe very large, get the answer MOD 100000007.
For Example: with 3 ballons and 3 kinds of pigment
输入描述:
The first line is the cases T. ( T <= 100) For next T lines, each line contains n and k. (2<= n <= 10000, 2<= k <=100)
输出描述:
For each test case, output the answer on each line.
# include <iostream>
# include <cstdlib>
# include <cstring>
using namespace std;
# define min(x,y) ((x)<(y)?(x):(y))
# define max(x,y) ((x)>(y)?(x):(y))
const int maxn=1e6+112;
const int mod = 100000007 ;
typedef long long ll;
int n;
int a[1005],b[1005];
int vis[maxn];
// 用m种颜色在n个区域涂色 公式 (m-1)^n+(m-1)(-1)^n
int main()
{
int n,T,k;
cin>>T;
while(T--){
cin>>n>>k;
int m = k - 1;
ll ans = 1;
for(int i=1;i<=n;i++){
ans = ans*m%mod;
}
if(n&1){
ans = ans - m;
}else{
ans = ans + m;
}
cout<<ans<<endl;
}
return 0;
}