QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#461897 | #8049. Equal Sums | masterhuang | TL | 0ms | 14644kb | C++17 | 1.2kb | 2024-07-03 10:00:00 | 2024-07-03 10:00:00 |
Judging History
answer
#include<bits/stdc++.h>
#define LL long long
#define P pair<int,int>
#define fi first
#define se second
#define fr(x) freopen(#x".in","r",stdin);freopen(#x".out","w",stdout);
using namespace std;
const int N=505,mod=998244353;
int n,m,l[N],r[N],L[N],R[N],f[N][N*N],g[N][N*N],d[N],D[N],a[N];
inline void mul(int *a,int *b,int &n,int m)
{
static int c[N*N];
for(int i=0;i<=n;i++) for(int j=0;j<=m;j++)
{
c[i+j]=(c[i+j]+1ll*a[i]*b[j])%mod;
}
for(int i=0;i<=n+m;i++) a[i]=c[i],c[i]=0;n+=m;
}
int main()
{
ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);cin>>n>>m;
for(int i=1;i<=n;i++) cin>>l[i]>>r[i];
for(int i=1;i<=m;i++) cin>>L[i]>>R[i];
f[0][0]=1;int deg=0;
for(int i=1;i<=n;i++)
{
fill(a+l[i],a+r[i]+1,1);
memcpy(f[i],f[i-1],sizeof(f[i]));
mul(f[i],a,deg,r[i]);
fill(a+l[i],a+r[i]+1,0);d[i]=deg;
}
g[0][0]=1;deg=0;
for(int i=1;i<=m;i++)
{
fill(a+L[i],a+R[i]+1,1);
memcpy(g[i],g[i-1],sizeof(g[i]));
mul(g[i],a,deg,R[i]);
fill(a+L[i],a+R[i]+1,0);D[i]=deg;
}
for(int i=1;i<=n;i++,cout<<"\n") for(int j=1;j<=m;j++)
{
int ans=0;
for(int k=0;k<=min(d[i],D[j]);k++)
{
ans=(ans+1ll*f[i][k]*g[j][k])%mod;
}
cout<<ans<<" ";
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 14644kb
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
Time 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...