QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#17900 | #2115. Od deski do deski [A] | Wu_Ren# | 10 ✓ | 42ms | 67200kb | C++11 | 537b | 2022-01-15 09:12:09 | 2022-05-04 16:17:27 |
Judging History
answer
#include<bits/stdc++.h>
const int mod=1e9+7;
using namespace std;
int n,m,K;
int f[3010][3010][2];
void qmo(int &x){
x+=(x>>31)&mod;
}
int main(){
scanf("%d%d",&n,&m);
f[n+1][0][1]=1;
for(int i=n;i>=1;i--) for(int j=0;j<=n-i+1&&j<=m;j++){
f[i][j][1]=(f[i][j][1]+1ll*(f[i+1][j][0]+f[i+1][j][1])*j)%mod;
if(j) f[i][j][0]=(f[i][j][0]+f[i+1][j-1][1]*(m-j+1ll))%mod;
f[i][j][0]=(f[i][j][0]+1ll*f[i+1][j][0]*(m-j))%mod;
}
int ans=0;
for(int j=1;j<=m&&j<=n;j++) qmo(ans+=f[1][j][1]-mod);
printf("%d\n",ans);
}
詳細信息
Subtask #1:
score: 1
Accepted
Test #1:
score: 1
Accepted
time: 2ms
memory: 3864kb
input:
4 2
output:
10
result:
ok single line: '10'
Test #2:
score: 0
Accepted
time: 3ms
memory: 3788kb
input:
1 1
output:
0
result:
ok single line: '0'
Test #3:
score: 0
Accepted
time: 1ms
memory: 3804kb
input:
1 3
output:
0
result:
ok single line: '0'
Test #4:
score: 0
Accepted
time: 0ms
memory: 3852kb
input:
1 5
output:
0
result:
ok single line: '0'
Test #5:
score: 0
Accepted
time: 2ms
memory: 3776kb
input:
2 2
output:
2
result:
ok single line: '2'
Test #6:
score: 0
Accepted
time: 3ms
memory: 3772kb
input:
2 4
output:
4
result:
ok single line: '4'
Test #7:
score: 0
Accepted
time: 3ms
memory: 3792kb
input:
3 1
output:
1
result:
ok single line: '1'
Test #8:
score: 0
Accepted
time: 1ms
memory: 3780kb
input:
3 3
output:
9
result:
ok single line: '9'
Test #9:
score: 0
Accepted
time: 2ms
memory: 3864kb
input:
3 5
output:
25
result:
ok single line: '25'
Test #10:
score: 0
Accepted
time: 3ms
memory: 3796kb
input:
4 2
output:
10
result:
ok single line: '10'
Test #11:
score: 0
Accepted
time: 3ms
memory: 3792kb
input:
4 4
output:
76
result:
ok single line: '76'
Test #12:
score: 0
Accepted
time: 2ms
memory: 3752kb
input:
5 1
output:
1
result:
ok single line: '1'
Test #13:
score: 0
Accepted
time: 3ms
memory: 3668kb
input:
5 3
output:
117
result:
ok single line: '117'
Test #14:
score: 0
Accepted
time: 3ms
memory: 3832kb
input:
5 5
output:
825
result:
ok single line: '825'
Test #15:
score: 0
Accepted
time: 0ms
memory: 3816kb
input:
7 2
output:
116
result:
ok single line: '116'
Test #16:
score: 0
Accepted
time: 2ms
memory: 3796kb
input:
9 2
output:
496
result:
ok single line: '496'
Test #17:
score: 0
Accepted
time: 3ms
memory: 3892kb
input:
11 2
output:
2028
result:
ok single line: '2028'
Test #18:
score: 0
Accepted
time: 3ms
memory: 3836kb
input:
13 2
output:
8168
result:
ok single line: '8168'
Test #19:
score: 0
Accepted
time: 2ms
memory: 3772kb
input:
10 3
output:
48237
result:
ok single line: '48237'
Subtask #2:
score: 1
Accepted
Test #20:
score: 1
Accepted
time: 3ms
memory: 3852kb
input:
1 2
output:
0
result:
ok single line: '0'
Test #21:
score: 0
Accepted
time: 3ms
memory: 3768kb
input:
1 4
output:
0
result:
ok single line: '0'
Test #22:
score: 0
Accepted
time: 1ms
memory: 3860kb
input:
2 1
output:
1
result:
ok single line: '1'
Test #23:
score: 0
Accepted
time: 3ms
memory: 3860kb
input:
2 3
output:
3
result:
ok single line: '3'
Test #24:
score: 0
Accepted
time: 3ms
memory: 3800kb
input:
2 5
output:
5
result:
ok single line: '5'
Test #25:
score: 0
Accepted
time: 3ms
memory: 3744kb
input:
3 2
output:
4
result:
ok single line: '4'
Test #26:
score: 0
Accepted
time: 1ms
memory: 3788kb
input:
3 4
output:
16
result:
ok single line: '16'
Test #27:
score: 0
Accepted
time: 2ms
memory: 3780kb
input:
4 1
output:
1
result:
ok single line: '1'
Test #28:
score: 0
Accepted
time: 3ms
memory: 3828kb
input:
4 3
output:
33
result:
ok single line: '33'
Test #29:
score: 0
Accepted
time: 3ms
memory: 3792kb
input:
4 5
output:
145
result:
ok single line: '145'
Test #30:
score: 0
Accepted
time: 3ms
memory: 3812kb
input:
5 2
output:
24
result:
ok single line: '24'
Test #31:
score: 0
Accepted
time: 3ms
memory: 3752kb
input:
5 4
output:
352
result:
ok single line: '352'
Test #32:
score: 0
Accepted
time: 3ms
memory: 3816kb
input:
6 2
output:
54
result:
ok single line: '54'
Test #33:
score: 0
Accepted
time: 0ms
memory: 3816kb
input:
8 2
output:
242
result:
ok single line: '242'
Test #34:
score: 0
Accepted
time: 0ms
memory: 3888kb
input:
10 2
output:
1006
result:
ok single line: '1006'
Test #35:
score: 0
Accepted
time: 1ms
memory: 5828kb
input:
12 2
output:
4074
result:
ok single line: '4074'
Test #36:
score: 0
Accepted
time: 2ms
memory: 3792kb
input:
14 2
output:
16358
result:
ok single line: '16358'
Subtask #3:
score: 1
Accepted
Test #37:
score: 1
Accepted
time: 2ms
memory: 32856kb
input:
1689 2
output:
998472085
result:
ok single line: '998472085'
Test #38:
score: 0
Accepted
time: 2ms
memory: 37168kb
input:
2748 2
output:
451726470
result:
ok single line: '451726470'
Test #39:
score: 0
Accepted
time: 3ms
memory: 30852kb
input:
1204 2
output:
449822862
result:
ok single line: '449822862'
Test #40:
score: 0
Accepted
time: 2ms
memory: 36820kb
input:
2727 2
output:
203224669
result:
ok single line: '203224669'
Test #41:
score: 0
Accepted
time: 2ms
memory: 26492kb
input:
984 2
output:
175698237
result:
ok single line: '175698237'
Test #42:
score: 0
Accepted
time: 0ms
memory: 37904kb
input:
3000 2
output:
165694478
result:
ok single line: '165694478'
Subtask #4:
score: 1
Accepted
Test #43:
score: 1
Accepted
time: 2ms
memory: 6160kb
input:
97 83
output:
613159502
result:
ok single line: '613159502'
Test #44:
score: 0
Accepted
time: 4ms
memory: 6164kb
input:
109 112
output:
749531455
result:
ok single line: '749531455'
Test #45:
score: 0
Accepted
time: 4ms
memory: 6036kb
input:
92 84
output:
754509307
result:
ok single line: '754509307'
Test #46:
score: 0
Accepted
time: 3ms
memory: 5972kb
input:
111 116
output:
434377961
result:
ok single line: '434377961'
Test #47:
score: 0
Accepted
time: 0ms
memory: 6160kb
input:
95 82
output:
345936119
result:
ok single line: '345936119'
Test #48:
score: 0
Accepted
time: 1ms
memory: 7912kb
input:
106 94
output:
551192069
result:
ok single line: '551192069'
Test #49:
score: 0
Accepted
time: 1ms
memory: 5928kb
input:
110 94
output:
41938476
result:
ok single line: '41938476'
Subtask #5:
score: 1
Accepted
Test #50:
score: 1
Accepted
time: 4ms
memory: 31156kb
input:
1168 346407973
output:
112579949
result:
ok single line: '112579949'
Test #51:
score: 0
Accepted
time: 2ms
memory: 10352kb
input:
313 68910142
output:
83916341
result:
ok single line: '83916341'
Test #52:
score: 0
Accepted
time: 4ms
memory: 8072kb
input:
161 64396010
output:
499230829
result:
ok single line: '499230829'
Test #53:
score: 0
Accepted
time: 14ms
memory: 41820kb
input:
1836 434479347
output:
873178296
result:
ok single line: '873178296'
Test #54:
score: 0
Accepted
time: 8ms
memory: 33936kb
input:
1588 392
output:
611721416
result:
ok single line: '611721416'
Subtask #6:
score: 1
Accepted
Test #55:
score: 1
Accepted
time: 2ms
memory: 8024kb
input:
123 468402382
output:
827499041
result:
ok single line: '827499041'
Test #56:
score: 0
Accepted
time: 6ms
memory: 28852kb
input:
1016 982915840
output:
813922878
result:
ok single line: '813922878'
Test #57:
score: 0
Accepted
time: 3ms
memory: 22208kb
input:
709 58889328
output:
215179237
result:
ok single line: '215179237'
Test #58:
score: 0
Accepted
time: 1ms
memory: 25044kb
input:
884 504516691
output:
199072709
result:
ok single line: '199072709'
Test #59:
score: 0
Accepted
time: 4ms
memory: 31884kb
input:
1414 131
output:
292793609
result:
ok single line: '292793609'
Subtask #7:
score: 1
Accepted
Test #60:
score: 1
Accepted
time: 2ms
memory: 22596kb
input:
779 140176290
output:
438118426
result:
ok single line: '438118426'
Test #61:
score: 0
Accepted
time: 0ms
memory: 14644kb
input:
488 292223807
output:
720591335
result:
ok single line: '720591335'
Test #62:
score: 0
Accepted
time: 5ms
memory: 24756kb
input:
849 198249514
output:
936832149
result:
ok single line: '936832149'
Test #63:
score: 0
Accepted
time: 3ms
memory: 25048kb
input:
929 316667619
output:
684900471
result:
ok single line: '684900471'
Test #64:
score: 0
Accepted
time: 2ms
memory: 31388kb
input:
1282 216
output:
39918106
result:
ok single line: '39918106'
Subtask #8:
score: 1
Accepted
Test #65:
score: 1
Accepted
time: 4ms
memory: 51140kb
input:
2315 21373850
output:
692830582
result:
ok single line: '692830582'
Test #66:
score: 0
Accepted
time: 42ms
memory: 63128kb
input:
2819 54930015
output:
704850526
result:
ok single line: '704850526'
Test #67:
score: 0
Accepted
time: 34ms
memory: 64932kb
input:
2876 518453378
output:
160061956
result:
ok single line: '160061956'
Test #68:
score: 0
Accepted
time: 31ms
memory: 60560kb
input:
2722 126086649
output:
930849830
result:
ok single line: '930849830'
Test #69:
score: 0
Accepted
time: 15ms
memory: 55592kb
input:
2508 121810583
output:
5167845
result:
ok single line: '5167845'
Test #70:
score: 0
Accepted
time: 24ms
memory: 55780kb
input:
2500 4000
output:
805467400
result:
ok single line: '805467400'
Subtask #9:
score: 1
Accepted
Test #71:
score: 1
Accepted
time: 17ms
memory: 58612kb
input:
2631 684393357
output:
936211679
result:
ok single line: '936211679'
Test #72:
score: 0
Accepted
time: 34ms
memory: 65096kb
input:
2913 516585428
output:
664802101
result:
ok single line: '664802101'
Test #73:
score: 0
Accepted
time: 36ms
memory: 65988kb
input:
2966 566883908
output:
74800796
result:
ok single line: '74800796'
Test #74:
score: 0
Accepted
time: 19ms
memory: 56124kb
input:
2508 135568838
output:
345174594
result:
ok single line: '345174594'
Test #75:
score: 0
Accepted
time: 33ms
memory: 65960kb
input:
2948 557406795
output:
163500664
result:
ok single line: '163500664'
Test #76:
score: 0
Accepted
time: 18ms
memory: 47264kb
input:
2500 1000
output:
996821828
result:
ok single line: '996821828'
Subtask #10:
score: 1
Accepted
Test #77:
score: 1
Accepted
time: 25ms
memory: 66360kb
input:
3000 1000000000
output:
543073891
result:
ok single line: '543073891'
Test #78:
score: 0
Accepted
time: 25ms
memory: 67000kb
input:
3000 999999999
output:
453659722
result:
ok single line: '453659722'
Test #79:
score: 0
Accepted
time: 33ms
memory: 66736kb
input:
3000 999999998
output:
98366752
result:
ok single line: '98366752'
Test #80:
score: 0
Accepted
time: 37ms
memory: 66808kb
input:
2999 1000000000
output:
282559837
result:
ok single line: '282559837'
Test #81:
score: 0
Accepted
time: 29ms
memory: 66872kb
input:
2999 999999999
output:
720365773
result:
ok single line: '720365773'
Test #82:
score: 0
Accepted
time: 38ms
memory: 66360kb
input:
2999 999999998
output:
461705162
result:
ok single line: '461705162'
Test #83:
score: 0
Accepted
time: 42ms
memory: 66992kb
input:
2998 1000000000
output:
842668451
result:
ok single line: '842668451'
Test #84:
score: 0
Accepted
time: 23ms
memory: 66660kb
input:
2998 999999999
output:
304660083
result:
ok single line: '304660083'
Test #85:
score: 0
Accepted
time: 29ms
memory: 67200kb
input:
2998 999999998
output:
92840037
result:
ok single line: '92840037'
Test #86:
score: 0
Accepted
time: 3ms
memory: 37872kb
input:
3000 1
output:
1
result:
ok single line: '1'
Test #87:
score: 0
Accepted
time: 4ms
memory: 39176kb
input:
3000 100
output:
513574771
result:
ok single line: '513574771'