QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#359114#4812. Counting Sequencejames1BadCreeperRE 958ms25560kbC++141.1kb2024-03-20 13:09:532024-03-20 13:09:53

Judging History

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

  • [2024-03-20 13:09:53]
  • 评测
  • 测评结果:RE
  • 用时:958ms
  • 内存:25560kb
  • [2024-03-20 13:09:53]
  • 提交

answer

#include <bits/stdc++.h>

using namespace std;

const int N = 3e5 + 5;
const int M = 800;
const int mod = 998244353;

int add(int x) {return x < mod ? x : x - mod;}

int n, c, B;
int f[M << 2][M << 2], g[2][N << 1], ans;

int main()
{
    cin >> n >> c; B = 700; 

    // a1 <= B
    int BB = 2 * B;
    for(int i = 1; i <= n; i++)
    {
        int I = i % BB;
        for(int j = 1; j <= min(i, BB); j++)
            f[I][j] = add(f[(I - j + BB) % BB][j - 1] + 1ll * f[(I - j + BB) % BB][j + 1] * c % mod);
        if(i < B) f[I][i]++;
    }
    for(int i = 1; i <= BB; i++) ans = add(ans + f[n % BB][i]);
    // cerr << ans << '\n';

    // a1 > B
    if(B <= n) ans++;
    g[1][0 + N] = 1;
    for(int i = 2, I = 0; i * B <= 2 * n; i++, I ^= 1)
        for(int j = max(-i * (i + 1) / 2, -i * B + 1); j <= min(i * (i + 1) / 2, n - i * B); j++)
        {
            g[I][j + N] = add(g[!I][j - (i - 1) + N] + 1ll * g[!I][j + (i - 1) + N] * c % mod);
            if((n - j) % i == 0) ans = add(ans + g[I][j + N]);
        }
    cout << ans << '\n';
    return 0;
}

詳細信息

Test #1:

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

input:

5 3

output:

8

result:

ok 1 number(s): "8"

Test #2:

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

input:

1 0

output:

1

result:

ok 1 number(s): "1"

Test #3:

score: 0
Accepted
time: 5ms
memory: 23128kb

input:

2022 39

output:

273239559

result:

ok 1 number(s): "273239559"

Test #4:

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

input:

1 998244352

output:

1

result:

ok 1 number(s): "1"

Test #5:

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

input:

1 12345678

output:

1

result:

ok 1 number(s): "1"

Test #6:

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

input:

20 998998

output:

643731701

result:

ok 1 number(s): "643731701"

Test #7:

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

input:

23 123

output:

947753998

result:

ok 1 number(s): "947753998"

Test #8:

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

input:

50 5555

output:

745339864

result:

ok 1 number(s): "745339864"

Test #9:

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

input:

60 6666

output:

690992218

result:

ok 1 number(s): "690992218"

Test #10:

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

input:

100 50

output:

169678588

result:

ok 1 number(s): "169678588"

Test #11:

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

input:

500 88888

output:

216149701

result:

ok 1 number(s): "216149701"

Test #12:

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

input:

1000 213456

output:

270989457

result:

ok 1 number(s): "270989457"

Test #13:

score: 0
Accepted
time: 8ms
memory: 22652kb

input:

2000 119988

output:

756425375

result:

ok 1 number(s): "756425375"

Test #14:

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

input:

3000 998244352

output:

71841227

result:

ok 1 number(s): "71841227"

Test #15:

score: 0
Accepted
time: 14ms
memory: 23024kb

input:

3000 555555555

output:

79880116

result:

ok 1 number(s): "79880116"

Test #16:

score: 0
Accepted
time: 20ms
memory: 25436kb

input:

4321 1234

output:

949603993

result:

ok 1 number(s): "949603993"

Test #17:

score: 0
Accepted
time: 25ms
memory: 23004kb

input:

5000 0

output:

5

result:

ok 1 number(s): "5"

Test #18:

score: 0
Accepted
time: 23ms
memory: 24356kb

input:

5000 88888777

output:

833064960

result:

ok 1 number(s): "833064960"

Test #19:

score: 0
Accepted
time: 22ms
memory: 22464kb

input:

5000 35557777

output:

696388498

result:

ok 1 number(s): "696388498"

Test #20:

score: 0
Accepted
time: 45ms
memory: 24408kb

input:

10000 123456

output:

434296902

result:

ok 1 number(s): "434296902"

Test #21:

score: 0
Accepted
time: 93ms
memory: 24204kb

input:

20000 555555

output:

34806915

result:

ok 1 number(s): "34806915"

Test #22:

score: 0
Accepted
time: 134ms
memory: 22668kb

input:

30000 777888999

output:

58443551

result:

ok 1 number(s): "58443551"

Test #23:

score: 0
Accepted
time: 229ms
memory: 25452kb

input:

50000 2

output:

90102905

result:

ok 1 number(s): "90102905"

Test #24:

score: 0
Accepted
time: 323ms
memory: 25324kb

input:

70000 77998866

output:

202638568

result:

ok 1 number(s): "202638568"

Test #25:

score: 0
Accepted
time: 458ms
memory: 22616kb

input:

100000 998244352

output:

360520717

result:

ok 1 number(s): "360520717"

Test #26:

score: 0
Accepted
time: 465ms
memory: 25304kb

input:

100000 555555555

output:

613886009

result:

ok 1 number(s): "613886009"

Test #27:

score: 0
Accepted
time: 696ms
memory: 25016kb

input:

150000 233333

output:

381065878

result:

ok 1 number(s): "381065878"

Test #28:

score: 0
Accepted
time: 712ms
memory: 25408kb

input:

150000 20050117

output:

269891864

result:

ok 1 number(s): "269891864"

Test #29:

score: 0
Accepted
time: 948ms
memory: 25560kb

input:

200000 114514

output:

262861613

result:

ok 1 number(s): "262861613"

Test #30:

score: 0
Accepted
time: 958ms
memory: 25252kb

input:

200000 1919810

output:

77872388

result:

ok 1 number(s): "77872388"

Test #31:

score: -100
Runtime Error

input:

300000 0

output:


result: