QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#768469#8049. Equal Sumswater_threeTL 21ms21640kbC++141.1kb2024-11-21 10:59:072024-11-21 10:59:11

Judging History

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

  • [2024-11-21 10:59:11]
  • 评测
  • 测评结果:TL
  • 用时:21ms
  • 内存:21640kb
  • [2024-11-21 10:59:07]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
int n,m,l[710],r[710],L[710],R[710];
int f[510][510000],delt[510][510000],c[510000],mod=998244353,ans[510][510];
int main(){
	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][250000]=1;
	for(int i=0;i<=n;i++){
		for(int j=0;j<=m-1;j++){
			for(int k=0;k<=500000;k++){
				if(k-250000>=0){
					c[max(k-R[j+1],0)]+=f[j][k],c[max(k-L[j+1]+1,0)]-=f[j][k];
				}
				else{
					delt[j][k+l[i+1]]+=f[j][k],delt[j][k+r[i+1]+1]-=f[j][k];
				}
			}
			for(int k=0;k<=500000;k++){
				if(k)c[k]+=c[k-1];
				f[j+1][k]+=c[k];
			}
			for(int k=0;k<=500000;k++)c[k]=0;
		}
		for(int j=1;j<=m;j++){
			ans[i][j]=f[j][250000];
		}
		if(i==n)break;
		for(int j=0;j<=m;j++){
			for(int k=1;k<=500000;k++){
				delt[j][k]+=delt[j][k-1];
			}
		}
		for(int j=0;j<=m;j++){
			for(int k=0;k<=500000;k++){
				f[j][k]=delt[j][k],delt[j][k]=0;
			}
		}
	}
	for(int i=1;i<=n;i++){
		for(int j=1;j<=m;j++){
			cout<<ans[i][j]<<" ";
		}
		cout<<"\n";
	}
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 21ms
memory: 21640kb

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...

output:


result: