QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#407924#7644. Good Splitsi_am_noobAC ✓73ms5592kbC++142.3kb2024-05-09 14:46:192024-05-09 14:46:20

Judging History

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

  • [2024-05-09 14:46:20]
  • 评测
  • 测评结果:AC
  • 用时:73ms
  • 内存:5592kb
  • [2024-05-09 14:46:19]
  • 提交

answer

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

using ll=long long;
using pii=pair<int,int>;
#define pb push_back
#define all(a) a.begin(),a.end()
#define sz(a) ((int)a.size())

const int N=405;
int mod;
int add(int x, int y){x+=y; if(x>=mod) x-=mod; return x;}
int sub(int x, int y){x-=y; if(x<0) x+=mod; return x;}
int mul(int x, int y){return ((ll)x)*y%mod;}
int Pow(int x, ll y=mod-2){int res=1; for(; y; y>>=1,x=mul(x,x)) if(y&1) res=mul(res,x); return res;}

int n,C[N][N],val[N],color[N],dp[N][N],connect[N],dp2[N][N],res[N];

signed main(){
    ios_base::sync_with_stdio(0),cin.tie(0);
    cin >> n >> mod;
    C[0][0]=1;
    for(int i=1; i<N; ++i) for(int j=0; j<=i; ++j){
        if(j==0||j==i) C[i][j]=1;
        else C[i][j]=add(C[i-1][j-1],C[i-1][j]);
    }
    val[0]=1;
    for(int i=1; i<N; ++i) for(int j=0; j<i-1; ++j) val[i]=add(val[i],mul(val[j],val[i-2-j]));
    color[0]=1;
    for(int i=1; i<N/2; ++i){
        for(int j=0; j<=i; ++j) color[i]=add(color[i],mul(C[i*2][j*2],mul(val[j*2],val[(i-j)*2])));
        //if(i<=10) cout << i << ' ' << val[i] << ' ' << color[i] << endl;
    }
    connect[0]=1;
    dp[1][1]=dp[2][2]=1;
    for(int i=1; i<=n; ++i){
        connect[i]=color[i];
        for(int j=2; j<=i*2; j+=2){
            int de=0;
            for(int cnt=2; cnt<=j&&cnt<i*2; cnt+=2) de=add(de,mul(dp[j][cnt],connect[cnt/2]));
            de=mul(de,color[i-j/2]);
            connect[i]=sub(connect[i],de);
        }
        for(int j: {i*2+1,i*2+2}){
            for(int cnt=1; cnt<=j; ++cnt){
                for(int k=0; k+1<j; k+=2) dp[j][cnt]=add(dp[j][cnt],mul(dp[j-1-k][cnt-1],color[k/2]));
            }
        }
    }
    for(int i=1; i<=n; ++i) connect[i]=mul(connect[i],(mod+1)/2);
    res[0]=1;
    dp2[1][1]=dp2[2][2]=1;
    for(int i=1; i<=n; ++i){
        for(int j=2; j<=i*2; j+=2){
            int de=0;
            for(int cnt=2; cnt<=j; cnt+=2) de=add(de,mul(dp2[j][cnt],connect[cnt/2]));
            de=mul(de,res[i-j/2]);
            res[i]=add(res[i],de);
        }
        for(int j: {i*2+1,i*2+2}){
            for(int cnt=1; cnt<=j; ++cnt){
                for(int k=0; k+1<j; k+=2) dp2[j][cnt]=add(dp2[j][cnt],mul(dp2[j-1-k][cnt-1],res[k/2]));
            }
        }
    }
    for(int i=1; i<=n; ++i) cout << res[i] << "\n";
}

这程序好像有点Bug,我给组数据试试?

詳細信息

Test #1:

score: 100
Accepted
time: 1ms
memory: 4304kb

input:

5 998244353

output:

1
3
14
84
592

result:

ok 5 number(s): "1 3 14 84 592"

Test #2:

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

input:

20 998244353

output:

1
3
14
84
592
4659
39699
359004
3399164
33378417
337584612
503820623
71483496
12733593
474907036
203223726
565209211
487441118
992424798
625482036

result:

ok 20 numbers

Test #3:

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

input:

30 147084737

output:

1
3
14
84
592
4659
39699
359004
3399164
33378417
43415138
115604731
88255570
6762644
25928144
117374310
119291296
29414136
87790057
136053957
103827626
145662835
60977924
8837626
61475022
108138661
88536961
105609125
140429327
77714436

result:

ok 30 numbers

Test #4:

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

input:

50 259851877

output:

1
3
14
84
592
4659
39699
359004
3399164
33378417
77732735
120479281
107558023
219154876
82657644
224090144
253190966
148874121
53920249
82785846
244357960
88406017
106161945
35184035
131007270
222579610
212725099
114435754
64242919
39323449
211238313
156440547
84150382
242052946
50634162
120017303
2...

result:

ok 50 numbers

Test #5:

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

input:

100 175127923

output:

1
3
14
84
592
4659
39699
359004
3399164
33378417
162456689
171123145
54532804
71333538
68283136
25628469
138841774
142350839
27676343
15931022
158187457
43201304
18465009
37939972
169592319
94983552
152752931
69017296
46403905
173424585
170947507
7870926
90491276
10182721
58907963
136216980
28163587...

result:

ok 100 numbers

Test #6:

score: 0
Accepted
time: 24ms
memory: 5112kb

input:

150 367542041

output:

1
3
14
84
592
4659
39699
359004
3399164
33378417
337584612
190675313
252320457
264200037
124276323
161424010
184935571
230223063
343780965
314302578
342350468
265272499
173792750
339843799
301192856
263531782
208259173
113525686
44197147
288967350
139023077
142942582
324678736
318907769
315638511
40...

result:

ok 150 numbers

Test #7:

score: 0
Accepted
time: 47ms
memory: 5344kb

input:

177 861641813

output:

1
3
14
84
592
4659
39699
359004
3399164
33378417
337584612
51986430
817568411
233712834
530886113
262319436
602763301
391560421
714952237
234059952
504165773
214901044
343336951
654631331
578657419
506328910
26764748
407306588
36662800
819329882
372916107
103054885
512356475
207029843
192047130
1038...

result:

ok 177 numbers

Test #8:

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

input:

1 998244353

output:

1

result:

ok 1 number(s): "1"

Test #9:

score: 0
Accepted
time: 73ms
memory: 5592kb

input:

200 864048671

output:

1
3
14
84
592
4659
39699
359004
3399164
33378417
337584612
42358998
716480375
849841780
472934607
500922480
184767796
279937457
399183954
512063087
91797677
107549673
485929841
293677006
593203756
235501697
372544850
500179291
849823101
602694217
345293985
459931747
386664093
196167251
265892579
252...

result:

ok 200 numbers

Test #10:

score: 0
Accepted
time: 72ms
memory: 5556kb

input:

199 958494587

output:

1
3
14
84
592
4659
39699
359004
3399164
33378417
337584612
623069921
583730251
536976835
256616783
340763703
344818742
765288755
200573977
666742925
957661404
606909377
32714935
246057767
23198149
389527637
588746573
223336510
430768410
501175382
380964997
647932740
845833201
113681916
396614824
546...

result:

ok 199 numbers

Test #11:

score: 0
Accepted
time: 71ms
memory: 5512kb

input:

198 165619889

output:

1
3
14
84
592
4659
39699
359004
3399164
33378417
6344834
20536013
73289310
162017284
159458288
100856961
164827673
70631917
154742952
14393421
27830529
37917167
68934527
54693629
76175385
34254720
114820104
69340313
35844068
25551171
137354127
120937326
10672731
81957539
132401938
29387190
74534300
...

result:

ok 198 numbers

Extra Test:

score: 0
Extra Test Passed