QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#474392 | #2568. Mountains | lichenyu_ac | WA | 13ms | 21412kb | C++14 | 1.2kb | 2024-07-12 17:49:14 | 2024-07-12 17:49:15 |
Judging History
answer
#include<bits/stdc++.h>
#define ing long long
typedef long long ll;
using namespace std;
const int N=510,M=1e6+10,mod=1e9+7;
ll power(ll a,ll b){
ll ans=1;
for(;b;b>>=1){
if(b&1)ans=ans*a%mod;
a=a*a%mod;
}
return ans;
}
ll n,m,K;
ll A[N][N],f[M],incf[M];
void init(int len){
f[0]=1;
for(int i=1;i<=len;i++)f[i]=f[i-1]*i%mod;
incf[len]=power(f[len],mod-2);
for(int i=len-1;i>=0;i--)incf[i]=incf[i+1]*(i+1)%mod;
}
ll C(ll a,ll b){
if(a<b)return 0;
return f[a]*incf[b]%mod*incf[a-b]%mod;
}
ll Guess(){
ll op=1,ans=1;
for(int i=1;i<=K;i++){
int pos=i;
for(int j=i+1;j<=K;j++)
if(A[j][i]>A[pos][i])pos=j;
if(i!=pos)op=-op,swap(A[i],A[pos]);
if(!A[i][i])return 0;
for(int j=1;j<=K;j++){
if(j==i)continue;
ll tmp=A[j][i]*power(A[i][i],mod-2)%mod;
for(int k=1;k<=K;k++)
A[j][k]=(A[j][k]-tmp*A[i][k]%mod+mod)%mod;
}
ans=ans*A[i][i]%mod;
ll tmp=power(A[i][i],mod-2);
for(int j=1;j<=K;j++)A[i][j]=A[i][j]*tmp%mod;
}
return (ans*op%mod+mod)%mod;
}
signed main(){
init(M-1);
scanf("%lld%lld%lld",&n,&m,&K);
for(int i=1;i<=K;i++)
for(int j=1;j<=K;j++){
ll x=n+(j-i),y=m-(j-i);
A[i][j]=C(x+y,x);
}
printf("%lld\n",Guess());
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 7ms
memory: 20048kb
input:
1 1 1
output:
2
result:
ok 1 number(s): "2"
Test #2:
score: 0
Accepted
time: 7ms
memory: 19788kb
input:
2 2 2
output:
20
result:
ok 1 number(s): "20"
Test #3:
score: 0
Accepted
time: 12ms
memory: 21184kb
input:
2 3 4
output:
490
result:
ok 1 number(s): "490"
Test #4:
score: 0
Accepted
time: 11ms
memory: 20480kb
input:
1 2 8
output:
45
result:
ok 1 number(s): "45"
Test #5:
score: 0
Accepted
time: 11ms
memory: 19608kb
input:
1 10 2
output:
66
result:
ok 1 number(s): "66"
Test #6:
score: 0
Accepted
time: 3ms
memory: 21328kb
input:
9 5 7
output:
371850968
result:
ok 1 number(s): "371850968"
Test #7:
score: 0
Accepted
time: 11ms
memory: 21412kb
input:
3 3 1
output:
20
result:
ok 1 number(s): "20"
Test #8:
score: 0
Accepted
time: 11ms
memory: 20200kb
input:
7 7 9
output:
166345303
result:
ok 1 number(s): "166345303"
Test #9:
score: 0
Accepted
time: 11ms
memory: 21068kb
input:
25 15 25
output:
850087558
result:
ok 1 number(s): "850087558"
Test #10:
score: -100
Wrong Answer
time: 13ms
memory: 21304kb
input:
45 59 71
output:
845646913
result:
wrong answer 1st numbers differ - expected: '659153227', found: '845646913'