QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#767020#8049. Equal Sumsint_RML 1ms7580kbC++141.3kb2024-11-20 19:36:492024-11-20 19:36:49

Judging History

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

  • [2024-11-20 19:36:49]
  • 评测
  • 测评结果:ML
  • 用时:1ms
  • 内存:7580kb
  • [2024-11-20 19:36:49]
  • 提交

answer

#include<stdio.h>
#include<iostream>
#include<algorithm>
#include<vector>
#define ll long long
using namespace std;
const int mod=998244353;
int n,m,l[2][510],r[2][510];
ll f[510][510][1010];
signed main()
{
#ifndef ONLINE_JUDGE
    freopen("in.in","r",stdin);
    freopen("out.out","w",stdout);
#endif
    cin.tie(0),cout.tie(0);
    ios::sync_with_stdio(0);
    cin>>n>>m,f[0][0][500]=1,f[0][0][501]=-1;
    for(int i=1;i<=n;++i)
        cin>>l[0][i]>>r[0][i];
    for(int i=1;i<=m;++i)
        cin>>l[1][i]>>r[1][i];
    for(int i=0;i<=n;++i)
    {
        for(int j=0;j<=m;++j)
        {
            for(int k=0;k<=1000;++k)
            {
                if(k) f[i][j][k]+=f[i][j][k-1];f[i][j][k]%=mod;
                if(k>=500)
                {
                    if(j==m||!f[i][j][k]) continue;
                    f[i][j+1][k-r[1][j+1]]+=f[i][j][k];
                    f[i][j+1][k-l[1][j+1]+1]-=f[i][j][k];
                }
                else
                {
                    if(i==n||!f[i][j][k]) continue;
                    f[i+1][j][k+l[0][i+1]]+=f[i][j][k];
                    f[i+1][j][k+r[0][i+1]+1]-=f[i][j][k];
                }
            }
            if(i&&j) cout<<(f[i][j][500]+mod)%mod<<' ';
        }
        if(i) cout<<'\n';
    }
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

2 3
1 2
2 3
1 4
2 2
1 3

output:

2 0 0 
3 4 4 

result:

ok 6 numbers

Test #2:

score: -100
Memory Limit Exceeded

input:

500 500
19 458
1 480
7 485
50 461
12 476
15 461
48 466
40 453
46 467
9 458
27 478
26 472
46 459
29 490
6 500
17 487
48 484
28 472
28 459
25 480
4 491
29 481
36 460
2 491
44 499
22 473
20 458
4 483
27 471
2 496
11 461
43 450
2 478
37 466
15 459
42 482
7 451
19 455
2 453
47 475
48 450
1 474
46 471
9 4...

output:

411 79401 9145270 673005095 180581065 984223118 586589234 293043270 404363796 865361724 665487988 118838806 926189944 226338288 521479857 808644951 786041288 340769021 177100 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...

result: