QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#474176#2568. Mountainsyqh2025AC ✓2ms4136kbC++141.5kb2024-07-12 16:32:012024-07-12 16:32:01

Judging History

你现在查看的是最新测评结果

  • [2024-07-12 16:32:01]
  • 评测
  • 测评结果:AC
  • 用时:2ms
  • 内存:4136kb
  • [2024-07-12 16:32:01]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define int long long
const int N=110,mod=1e9+7;
int ksm(int x,int y){int ans=1;while(y){if(y&1)ans=ans*x%mod;x=x*x%mod;y>>=1;}return ans;}
int inv(int x){return ksm(x,mod-2);}
struct matrix{
	int s[N][N],n,m;
	int* operator [](int x){return s[x];}
	matrix(){memset(s,0,sizeof(s));n=m=0;}
};
int dat(matrix x){
	int n=x.n,fl=1;
	for(int i=1;i<=n;i++){
		if(!x[i][i]){
			for(int j=i+1;j<=n;j++){
				if(x[j][i]){
					fl*=-1;for(int k=1;k<=n;k++)swap(x[i][k],x[j][k]);
					break;
				}
			}
		}
		if(!x[i][i])return 0;
		for(int j=i+1;j<=n;j++){
			if(x[j][i]>x[i][i]){
				fl*=-1;for(int k=1;k<=n;k++)swap(x[i][k],x[j][k]);
			}
			while(x[j][i]){
				int S=x[i][i]/x[j][i];
				for(int k=i;k<=n;k++)x[i][k]=(x[i][k]-S*x[j][k]%mod+mod)%mod;
				fl*=-1;for(int k=1;k<=n;k++)swap(x[i][k],x[j][k]);
			}
			for(int k=1;k<=n;k++)x[j][k]%=mod;
		}
	}
	int ans=(fl+mod)%mod;
	for(int i=1;i<=n;i++)ans=ans*(x[i][i]+mod)%mod;
	return ans;
}
int n,m,k;
int jc[N<<1],invjc[N<<1];
void init(){
	int u=n+m;
	jc[0]=1;for(int i=1;i<=u;i++)jc[i]=jc[i-1]*i%mod;
	invjc[u]=inv(jc[u]);
	for(int i=u-1;i>=0;i--)invjc[i]=invjc[i+1]*(i+1)%mod;
}
int C(int n,int m){
	if(n<m)return 0;
	return jc[n]*invjc[m]%mod*invjc[n-m]%mod;
}
signed main(){
	scanf("%lld%lld%lld",&n,&m,&k);
	init();
	matrix A;A.n=A.m=k;
	for(int i=1;i<=k;i++){
		for(int j=1;j<=k;j++){
			int x=n+(j-i),y=m-(j-i);
			A[i][j]=C(x+y,x);
		}
	}
	printf("%lld",dat(A));
	return 0;
}

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 4060kb

input:

1 1 1

output:

2

result:

ok 1 number(s): "2"

Test #2:

score: 0
Accepted
time: 0ms
memory: 4136kb

input:

2 2 2

output:

20

result:

ok 1 number(s): "20"

Test #3:

score: 0
Accepted
time: 0ms
memory: 4052kb

input:

2 3 4

output:

490

result:

ok 1 number(s): "490"

Test #4:

score: 0
Accepted
time: 0ms
memory: 4072kb

input:

1 2 8

output:

45

result:

ok 1 number(s): "45"

Test #5:

score: 0
Accepted
time: 0ms
memory: 4064kb

input:

1 10 2

output:

66

result:

ok 1 number(s): "66"

Test #6:

score: 0
Accepted
time: 0ms
memory: 4072kb

input:

9 5 7

output:

371850968

result:

ok 1 number(s): "371850968"

Test #7:

score: 0
Accepted
time: 0ms
memory: 3976kb

input:

3 3 1

output:

20

result:

ok 1 number(s): "20"

Test #8:

score: 0
Accepted
time: 0ms
memory: 3996kb

input:

7 7 9

output:

166345303

result:

ok 1 number(s): "166345303"

Test #9:

score: 0
Accepted
time: 0ms
memory: 3980kb

input:

25 15 25

output:

850087558

result:

ok 1 number(s): "850087558"

Test #10:

score: 0
Accepted
time: 1ms
memory: 3940kb

input:

45 59 71

output:

659153227

result:

ok 1 number(s): "659153227"

Test #11:

score: 0
Accepted
time: 0ms
memory: 4136kb

input:

73 3 25

output:

683124269

result:

ok 1 number(s): "683124269"

Test #12:

score: 0
Accepted
time: 1ms
memory: 4060kb

input:

1 48 78

output:

446896916

result:

ok 1 number(s): "446896916"

Test #13:

score: 0
Accepted
time: 0ms
memory: 4132kb

input:

25 100 32

output:

966287506

result:

ok 1 number(s): "966287506"

Test #14:

score: 0
Accepted
time: 0ms
memory: 4076kb

input:

85 64 40

output:

125679545

result:

ok 1 number(s): "125679545"

Test #15:

score: 0
Accepted
time: 1ms
memory: 3940kb

input:

5 9 94

output:

620471576

result:

ok 1 number(s): "620471576"

Test #16:

score: 0
Accepted
time: 0ms
memory: 3976kb

input:

33 57 40

output:

637315057

result:

ok 1 number(s): "637315057"

Test #17:

score: 0
Accepted
time: 2ms
memory: 4072kb

input:

61 6 97

output:

362472796

result:

ok 1 number(s): "362472796"

Test #18:

score: 0
Accepted
time: 0ms
memory: 4132kb

input:

85 50 51

output:

192099209

result:

ok 1 number(s): "192099209"

Test #19:

score: 0
Accepted
time: 1ms
memory: 3988kb

input:

96 54 59

output:

714762612

result:

ok 1 number(s): "714762612"

Test #20:

score: 0
Accepted
time: 0ms
memory: 3984kb

input:

20 99 12

output:

772155662

result:

ok 1 number(s): "772155662"

Test #21:

score: 0
Accepted
time: 1ms
memory: 4060kb

input:

48 39 62

output:

670046604

result:

ok 1 number(s): "670046604"

Test #22:

score: 0
Accepted
time: 0ms
memory: 3988kb

input:

76 83 16

output:

976820079

result:

ok 1 number(s): "976820079"

Test #23:

score: 0
Accepted
time: 1ms
memory: 4132kb

input:

96 36 61

output:

20854557

result:

ok 1 number(s): "20854557"

Test #24:

score: 0
Accepted
time: 1ms
memory: 4048kb

input:

18 40 77

output:

261684871

result:

ok 1 number(s): "261684871"

Test #25:

score: 0
Accepted
time: 0ms
memory: 4060kb

input:

42 84 26

output:

458573307

result:

ok 1 number(s): "458573307"

Test #26:

score: 0
Accepted
time: 1ms
memory: 3952kb

input:

71 25 80

output:

875902815

result:

ok 1 number(s): "875902815"

Test #27:

score: 0
Accepted
time: 0ms
memory: 4136kb

input:

95 73 26

output:

922299967

result:

ok 1 number(s): "922299967"

Test #28:

score: 0
Accepted
time: 1ms
memory: 4132kb

input:

19 17 83

output:

494148696

result:

ok 1 number(s): "494148696"

Test #29:

score: 0
Accepted
time: 2ms
memory: 4068kb

input:

100 100 100

output:

192912055

result:

ok 1 number(s): "192912055"

Test #30:

score: 0
Accepted
time: 2ms
memory: 4044kb

input:

100 98 99

output:

412293529

result:

ok 1 number(s): "412293529"