QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#583792 | #8635. 圆 | jinhaoxian | 90 | 41ms | 133624kb | C++14 | 1.1kb | 2024-09-22 22:26:47 | 2024-09-22 22:26:48 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
const long long mod=998244353;
int n;
long long fac[5005],g[5005],dp[5005][5005];
long long qpow(long long a,int b) {
long long res=1;
while (b) {
if (b&1) res=res*a%mod;
a=a*a%mod;
b>>=1;
}
return res;
}
int main() {
cin>>n;
if (n<=4) {
cout<<2<<endl;
return 0;
}
n--;
dp[1][1]=dp[1][2]=dp[1][3]=1;
for (int i=2;i<=n-1;i++) {
for (int j=i;j<=n-1;j++) {
dp[i][j]=(dp[i-1][j-1]+dp[i-1][j-2])%mod;
if (j>=3) dp[i][j]=(dp[i][j]+dp[i-1][j-3])%mod;
}
}
for (int x=1;x<=n;x++) {
g[x]=(dp[x][n-1]+dp[x-1][n-1]+dp[x][n-2]+dp[x-1][n-2]+dp[x-1][n-3])%mod;
}
fac[0]=1;
for (int i=1;i<=n;i++) fac[i]=fac[i-1]*i%mod;
long long ans=0;
for (int x=1;x<=n;x++) {
ans=(ans+(mod+g[x]*fac[x]%mod*fac[n-x]%mod
-g[x-1]*fac[x-1]%mod*fac[n-x+1]%mod)%mod*x)%mod;
}
ans=ans*qpow(fac[n],mod-2)%mod;
cout<<(ans+1)%mod<<endl;
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Pretests
Final Tests
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3508kb
input:
3
output:
2
result:
wrong answer 1st numbers differ - expected: '1', found: '2'
Test #2:
score: 10
Accepted
time: 0ms
memory: 3628kb
input:
4
output:
2
result:
ok 1 number(s): "2"
Test #3:
score: 10
Accepted
time: 0ms
memory: 3724kb
input:
6
output:
299473309
result:
ok 1 number(s): "299473309"
Test #4:
score: 10
Accepted
time: 1ms
memory: 5768kb
input:
10
output:
487238321
result:
ok 1 number(s): "487238321"
Test #5:
score: 10
Accepted
time: 1ms
memory: 5900kb
input:
100
output:
41620761
result:
ok 1 number(s): "41620761"
Test #6:
score: 10
Accepted
time: 0ms
memory: 11868kb
input:
200
output:
208771764
result:
ok 1 number(s): "208771764"
Test #7:
score: 10
Accepted
time: 0ms
memory: 24252kb
input:
500
output:
888621375
result:
ok 1 number(s): "888621375"
Test #8:
score: 10
Accepted
time: 27ms
memory: 124616kb
input:
4798
output:
319137015
result:
ok 1 number(s): "319137015"
Test #9:
score: 10
Accepted
time: 41ms
memory: 130316kb
input:
4999
output:
818467659
result:
ok 1 number(s): "818467659"
Test #10:
score: 10
Accepted
time: 27ms
memory: 133624kb
input:
5000
output:
142907477
result:
ok 1 number(s): "142907477"