QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#167019#6522. Digit Modeucup-team134#TL 309ms3800kbC++143.2kb2023-09-06 23:03:372023-09-06 23:03:37

Judging History

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

  • [2023-09-06 23:03:37]
  • 评测
  • 测评结果:TL
  • 用时:309ms
  • 内存:3800kb
  • [2023-09-06 23:03:37]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define ll long long

const int mod=1e9+7;
int add(int x,int y){x+=y;return x>=mod?x-mod:x;}
int sub(int x,int y){x-=y;return x<0?x+mod:x;}
int mul(int x,int y){return (ll)x*y%mod;}
void ckadd(int&x,int y){x=add(x,y);}

const int N=55;
char s[N];
int cnt[10];
int dp[11][N];

int F[N],I[N];
void calc(){
	F[0]=1;
	for(int i=1;i<N;i++)F[i]=mul(F[i-1],i);
	I[0]=I[1]=1;
	for(int i=2;i<N;i++)I[i]=mul(mod-mod/i,I[mod%i]);
	for(int i=1;i<N;i++)I[i]=mul(I[i],I[i-1]);
}
int binom(int n,int k){
	return mul(F[n],mul(I[k],I[n-k]));
}

int DP(int n,int best,int take){
	for(int j=0;j<=10;j++){
		for(int z=0;z<=n;z++){
			dp[j][z]=0;
		}
	}
	dp[0][0]=1;
	int totL=0,totR=0;
	for(int cif=0;cif<10;cif++){
		int L=0,R=cnt[best]+take-cnt[cif];
		if(best<cif)R--;
		R=min(R,n);
		if(cif==best){
			L=take;
			R=take;
		}
		for(int z=totL;z<=totR;z++){
			for(int j=L;j<=R;j++){
				if(z+j<=n){
					ckadd(dp[cif+1][z+j],mul(dp[cif][z],binom(z+j,j)));
				}
			}
		}
		totL+=L;
		totR+=R;
	}
	return dp[10][n];
}

int Full(int n){
	int ans=0;
	for(int c=1;c<=9;c++){
		cnt[c]++;
		for(int best=0;best<=9;best++){
			int mn=0;
			for(int i=0;i<10;i++){
				mn=max(mn,cnt[i]+(i>best?1:0));
			}
			int L=max(0,mn-cnt[best]);
			int R=n-1;
			for(int take=L;take<=R;take++){
				ckadd(ans,mul(best,DP(n-1,best,take)));

				/*for(int j=0;j<=10;j++){
					for(int z=0;z<=n-1;z++){
						dp[j][z]=0;
					}
				}
				dp[0][0]=1;
				for(int cif=0;cif<10;cif++){
					int L=0,R=cnt[best]+take-cnt[cif];
					if(best<cif)R--;
					R=min(R,n-1);
					if(cif==best){
						L=take;
						R=take;
					}
					for(int j=L;j<=R;j++){
						for(int z=j;z<=n-1;z++){
							ckadd(dp[cif+1][z],mul(dp[cif][z-j],binom(z,j)));
						}
					}
				}
				ckadd(ans,mul(best,dp[10][n-1]));*/
			}
		}
		cnt[c]--;
	}
	return ans;
}
int main(){
	calc();
	int t;
	scanf("%i",&t);
	while(t--){
		scanf("%s",s+1);
		int ans=0;
		int n=strlen(s+1);
		for(int i=1;i<n;i++){
			ckadd(ans,Full(i));
		}
		for(int i=1;i<=n;i++){
			int now=s[i]-'0';
			for(int c=0;c<now;c++){
				if(i==1 && c==0)continue;
				cnt[c]++;
				for(int best=0;best<=9;best++){
					int mn=0;
					for(int i=0;i<10;i++){
						mn=max(mn,cnt[i]+(i>best?1:0));
					}
					int L=max(0,mn-cnt[best]);
					int R=n-i;
					for(int take=L;take<=R;take++){
						ckadd(ans,mul(best,DP(n-i,best,take)));
						/*for(int j=0;j<=10;j++){
							for(int z=0;z<=n-i;z++){
								dp[j][z]=0;
							}
						}
						dp[0][0]=1;
						for(int cif=0;cif<10;cif++){
							int L=0,R=cnt[best]+take-cnt[cif];
							if(best<cif)R--;
							R=min(R,n-i);
							if(cif==best){
								L=take;
								R=take;
							}
							for(int j=L;j<=R;j++){
								for(int z=j;z<=n-i;z++){
									ckadd(dp[cif+1][z],mul(dp[cif][z-j],binom(z,j)));
								}
							}
						}
						//printf("prefix:%i c:%i best:%i take:%i  dp:%i\n",i,c,best,take,dp[10][n-i]);
						ckadd(ans,mul(best,dp[10][n-i]));*/
					}
				}
				cnt[c]--;
			}
			cnt[now]++;
		}
		int mx=0;
		for(int i=1;i<10;i++){
			if(cnt[i]>=cnt[mx])mx=i;
		}
		ckadd(ans,mx);
		printf("%i\n",ans);

		for(int i=0;i<10;i++)cnt[i]=0;
	}
	return 0;
}

详细

Test #1:

score: 100
Accepted
time: 3ms
memory: 3620kb

input:

5
9
99
999
99999
999999

output:

45
615
6570
597600
5689830

result:

ok 5 number(s): "45 615 6570 597600 5689830"

Test #2:

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

input:

34
7
48
8
76
1
97
7
5
7
7
2
89
9
4
84
46
6
73
86
78
5
3
8
9
31
24
78
7
11
45
2
65
88
6

output:

28
236
36
420
1
597
28
15
28
28
3
525
45
10
484
221
21
399
500
435
15
6
36
45
145
104
435
28
47
215
3
341
516
21

result:

ok 34 numbers

Test #3:

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

input:

16
935
888
429
370
499
881
285
162
178
948
205
858
573
249
773
615

output:

6009
5618
2456
2078
2905
5562
1603
887
993
6121
1174
5378
3333
1374
4724
3631

result:

ok 16 numbers

Test #4:

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

input:

12
1242
9985
6469
9310
4191
9497
3166
3495
9711
9698
4137
2257

output:

7292
63531
37910
58047
23987
59479
18076
19675
61184
61086
23672
12913

result:

ok 12 numbers

Test #5:

score: 0
Accepted
time: 4ms
memory: 3588kb

input:

10
61195
72739
10164
79164
57851
12326
29132
55992
67377
13873

output:

337575
408170
63792
450686
316513
70493
157773
305011
374163
77954

result:

ok 10 numbers

Test #6:

score: 0
Accepted
time: 6ms
memory: 3636kb

input:

8
529983
127270
421121
291729
461233
695056
365028
271160

output:

2744573
687141
2160067
1500426
2359204
3705475
1851172
1381981

result:

ok 8 numbers

Test #7:

score: 0
Accepted
time: 11ms
memory: 3768kb

input:

7
7934351
8474057
1287369
5845624
7796773
5805755
7349121

output:

42465725
45668947
6716401
30094426
41554096
29861098
38756757

result:

ok 7 numbers

Test #8:

score: 0
Accepted
time: 88ms
memory: 3648kb

input:

3
5014252832385738
8762796162648653
919997886706385

output:

892033338
297722019
462512414

result:

ok 3 number(s): "892033338 297722019 462512414"

Test #9:

score: 0
Accepted
time: 309ms
memory: 3800kb

input:

2
775701797726112292362823101
75927988177061355614

output:

371275551
566830847

result:

ok 2 number(s): "371275551 566830847"

Test #10:

score: -100
Time Limit Exceeded

input:

1
65760982925996012426370962570581226245366145016666

output:


result: