QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#763266#2672. RectanglesPioneer0 22ms37136kbC++202.4kb2024-11-19 19:14:342024-11-19 19:14:35

Judging History

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

  • [2024-11-19 19:14:35]
  • 评测
  • 测评结果:0
  • 用时:22ms
  • 内存:37136kb
  • [2024-11-19 19:14:34]
  • 提交

answer

#include "rect.h"
#include <bits/stdc++.h>

using namespace std;

#define pii pair<int,int>
#define F first
#define S second
#define sz(s) ((int)s.size())
#define pb push_back

const int MAX=2510;

int n,m;
map<pii,int> mp[MAX];
vector<int> f[MAX][MAX],d[MAX][MAX];
int cnt[MAX],last[MAX];
int g[MAX][MAX];
int t[MAX][MAX];

void add(int x,int y,int del){
	for(int i=x;i<=m;i=(i|(i+1))){
		for(int j=y;j<n;j=(j|(j+1))){
			t[i][j]+=del;
		}
	}
}

int get(int x,int y){
	int res=0;
	for(int i=x;i>=1;i=(i&(i+1))-1){
		for(int j=y;j>=0;j=(j&(j+1))-1){
			res+=t[i][j];
		}
	}
	return res;
}

int get(int lx,int rx,int ly,int ry){
	int res=get(rx,ry);
	if(lx-1>=1&&ly-1>=0)res+=get(lx-1,ly-1);
	if(lx-1>=1){
		res-=get(lx-1,ry);
	}
	if(ly-1>=0){
		res-=get(rx,ly-1);
	}
	return res;
}

long long count_rectangles(vector<vector<int>> a){
	n=sz(a),m=sz(a[0]);
	for(int i=0;i<n;i++){
		stack<int> st;
		for(int j=0;j<m;j++){
			while(!st.empty()&&a[i][st.top()]<=a[i][j]){
				int l=st.top()+1,r=j-1;
				if(l<=r){
					mp[i][{l,r}]=1;
					// cout<<"!i<<" "<<l<<" "<<j-1<<"\n";
					d[i][l].pb(j-1);
				}
				st.pop();
			}
			if(!st.empty()){
				int l=st.top()+1;
				if(l<=j-1){
					mp[i][{l,j-1}]=1;
					d[i][l].pb(j-1);
				}
			}
			st.push(j);
		}
	}
	for(int j=0;j<m;j++){
		stack<int> st;
		for(int i=0;i<n;i++){
			while(!st.empty()&&a[st.top()][j]<=a[i][j]){
				int l=st.top()+1,r=i-1;
				if(l<=r){
					f[l][j].pb(r);
				}
				st.pop();
			}
			if(!st.empty()){
				int l=st.top()+1;
				if(l<=i-1){
					f[l][j].pb(i-1);
				}
			}
			st.push(i);
		}
	}
	long long ans=0;
	for(int i=n-2;i>0;i--){
		memset(last,-1,sizeof(last));
		memset(cnt,0,sizeof(cnt));
		for(int j=m-2;j>0;j--){
			// cout<<"? "<<i<<" "<<j<<"\n";
			for(auto r:f[i][j]){
				if(last[r]==j+1){
					cnt[r]++;
				}
				else cnt[r]=1;
				last[r]=j;
				// cout<<cnt[r]<<" "<<i<<" "<<r<<"\n";
				add(cnt[r],r,1);
			}
			for(auto r:d[i][j]){
				if(mp[i+1].count({j,r}))g[j][r]++;
				else g[j][r]=1;
				// if(i==4&&j==2){
				// 	cout<<r-j+1<<" "<<m<<" "<<i<<" "<<i+g[j][r]-1<<" "<<cnt[4]<<"\n";
				// 	cout<<i<<" "<<j<<" "<<r<<" "<<g[j][r]<<" "<<get(r-j+1,m,i,i+g[j][r]-1)<<"\n";
				// }
				ans+=get(r-j+1,m,i,i+g[j][r]-1);
			}
			for(auto r:f[i][j]){
				add(cnt[r],r,-1);
			}
		}
	}
	return ans;
}

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 0
Wrong Answer

Test #1:

score: 8
Accepted
time: 12ms
memory: 4516kb

input:

8d9a74d5-4c4b-4437-9c49-114beaeb8f1a
30 30
3996 3689 3664 3657 3646 3630 3621 3619 3609 3604 3601 3598 3584 3581 3574 3561 3554 3543 3537 3531 3522 3519 3505 3500 3498 3492 3476 3467 3460 3994
3993 3458 3451 3440 3431 3420 3395 3346 3333 3282 3268 3261 3241 3204 3168 3121 3103 3083 3076 2923 2872 28...

output:

907404fa-efbb-4a2c-83b8-4c377409c80c
OK
784

result:

ok 3 lines

Test #2:

score: 8
Accepted
time: 12ms
memory: 4512kb

input:

8d9a74d5-4c4b-4437-9c49-114beaeb8f1a
30 30
6996495 6421812 6403903 6382663 6362922 6334993 6329757 6315983 6278578 6262778 6254104 6244987 6232172 6226987 6194797 6176457 6167900 6140865 6123884 6116295 6101556 6079188 6068604 6049308 6034911 6034041 6015464 6004614 5992300 6995512
6987555 5978527 5...

output:

907404fa-efbb-4a2c-83b8-4c377409c80c
OK
784

result:

ok 3 lines

Test #3:

score: 8
Accepted
time: 8ms
memory: 4800kb

input:

8d9a74d5-4c4b-4437-9c49-114beaeb8f1a
30 30
12330 11301 11283 11257 11240 11194 11170 11135 11116 11095 11085 11048 11000 10972 10914 10909 10897 10877 10835 10823 10789 10781 10769 10745 10708 10690 10665 10661 10645 12329
12326 10635 10633 10590 10557 10542 10513 10491 10418 10406 10096 10086 9930 ...

output:

907404fa-efbb-4a2c-83b8-4c377409c80c
OK
784

result:

ok 3 lines

Test #4:

score: 8
Accepted
time: 12ms
memory: 5924kb

input:

8d9a74d5-4c4b-4437-9c49-114beaeb8f1a
30 30
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 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 0 0 0 0 0 0 0...

output:

907404fa-efbb-4a2c-83b8-4c377409c80c
OK
0

result:

ok 3 lines

Test #5:

score: 8
Accepted
time: 8ms
memory: 8388kb

input:

8d9a74d5-4c4b-4437-9c49-114beaeb8f1a
30 30
1023589 2780022 3479561 3782160 3952727 450470 3945264 2170843 3225056 1786041 1389306 1419234 3915988 520009 1251948 104723 1856504 3637799 1807024 2170722 2803041 2964655 2003819 1048641 3939016 2826494 3085605 1000286 3022731 1498648
3779781 3073573 7294...

output:

907404fa-efbb-4a2c-83b8-4c377409c80c
OK
268

result:

ok 3 lines

Test #6:

score: 8
Accepted
time: 11ms
memory: 4236kb

input:

8d9a74d5-4c4b-4437-9c49-114beaeb8f1a
30 13
2314857 2951714 2551799 1262649 877317 2582030 1583139 3582015 1970170 2496877 252584 1959948 809239
1363336 486953 3562759 2227001 1996347 1994014 2317663 3232136 648728 2110306 2235717 2759784 2530855
258050 2824581 1243255 3198783 565865 231889 3727287 8...

output:

907404fa-efbb-4a2c-83b8-4c377409c80c
OK
112

result:

ok 3 lines

Test #7:

score: 8
Accepted
time: 12ms
memory: 6468kb

input:

8d9a74d5-4c4b-4437-9c49-114beaeb8f1a
12 30
1713490 434279 757758 2071347 3203350 423584 3882119 3134239 1954599 1689833 1956535 3906809 3531554 3887373 3954136 2363040 3764367 1582213 271999 3004358 1532278 1181001 435806 2138704 2615171 1339870 717957 1485488 3841400 1190729
2110431 3716435 2650629...

output:

907404fa-efbb-4a2c-83b8-4c377409c80c
OK
87

result:

ok 3 lines

Test #8:

score: 0
Wrong Answer
time: 13ms
memory: 6388kb

input:

8d9a74d5-4c4b-4437-9c49-114beaeb8f1a
30 30
9 2 6 6 9 5 7 6 4 4 4 4 0 1 7 3 8 0 6 4 8 1 5 2 2 9 9 9 9 8
5 4 0 7 2 3 7 8 4 10 0 9 3 8 5 1 3 9 6 2 4 2 5 2 7 5 10 6 9 5
10 9 7 9 3 3 8 1 3 3 8 10 0 6 1 1 7 8 10 0 8 1 4 5 9 4 2 9 5 0
3 10 10 0 4 5 1 2 6 10 2 8 8 9 10 2 2 8 2 3 3 10 0 2 7 0 7 9 10 6
3 3 4 ...

output:

907404fa-efbb-4a2c-83b8-4c377409c80c
OK
256

result:

wrong answer 3rd lines differ - expected: '189', found: '256'

Subtask #2:

score: 0
Skipped

Dependency #1:

0%

Subtask #3:

score: 0
Skipped

Dependency #2:

0%

Subtask #4:

score: 0
Skipped

Dependency #3:

0%

Subtask #5:

score: 0
Wrong Answer

Test #53:

score: 10
Accepted
time: 11ms
memory: 37136kb

input:

8d9a74d5-4c4b-4437-9c49-114beaeb8f1a
3 2500
3999533 3994407 3992243 3991052 3990430 3988819 3987546 3985557 3983808 3983398 3982565 3981632 3981437 3979888 3979428 3978697 3978033 3975044 3973166 3972565 3971499 3970538 3969576 3969014 3968513 3968337 3966950 3965168 3964140 3963957 3962080 3961829 ...

output:

907404fa-efbb-4a2c-83b8-4c377409c80c
OK
2498

result:

ok 3 lines

Test #54:

score: 10
Accepted
time: 13ms
memory: 33964kb

input:

8d9a74d5-4c4b-4437-9c49-114beaeb8f1a
3 2123
3999178 3994918 3993586 3990671 3989261 3988091 3985537 3984649 3983635 3982639 3981319 3980647 3979462 3978557 3977387 3976784 3975890 3975694 3975367 3975193 3973331 3971593 3970332 3969892 3968052 3967213 3966031 3963229 3963001 3962625 3961725 3959892 ...

output:

907404fa-efbb-4a2c-83b8-4c377409c80c
OK
2121

result:

ok 3 lines

Test #55:

score: 10
Accepted
time: 9ms
memory: 6276kb

input:

8d9a74d5-4c4b-4437-9c49-114beaeb8f1a
3 2500
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 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 0 0 0 0 0 0 ...

output:

907404fa-efbb-4a2c-83b8-4c377409c80c
OK
0

result:

ok 3 lines

Test #56:

score: 10
Accepted
time: 5ms
memory: 5932kb

input:

8d9a74d5-4c4b-4437-9c49-114beaeb8f1a
3 1
2
0
3

output:

907404fa-efbb-4a2c-83b8-4c377409c80c
OK
0

result:

ok 3 lines

Test #57:

score: 10
Accepted
time: 14ms
memory: 32364kb

input:

8d9a74d5-4c4b-4437-9c49-114beaeb8f1a
3 2500
3073920 3547280 2578996 515881 1457637 3747191 3335718 1093356 188596 2501359 1707005 923685 1254329 1274578 2451887 1948214 3495100 706306 2036295 3924470 2870740 2253399 2559834 2223853 3524040 448754 2838433 2573451 1627516 2712253 1015735 1941089 29861...

output:

907404fa-efbb-4a2c-83b8-4c377409c80c
OK
688

result:

ok 3 lines

Test #58:

score: 10
Accepted
time: 11ms
memory: 34452kb

input:

8d9a74d5-4c4b-4437-9c49-114beaeb8f1a
3 2500
956507 3801894 3199483 6585310 812126 2818592 2669408 5464237 4252596 1952833 4693677 3365605 4499904 3386900 1960432 4511461 1338880 1430060 3156994 1847807 4802896 5992027 1936374 4766951 4759230 1548846 5592000 759863 3462998 1783861 3893700 6928854 230...

output:

907404fa-efbb-4a2c-83b8-4c377409c80c
OK
673

result:

ok 3 lines

Test #59:

score: 10
Accepted
time: 9ms
memory: 27420kb

input:

8d9a74d5-4c4b-4437-9c49-114beaeb8f1a
3 2500
3899265 2127060 3179336 385518 1777334 2221597 3486817 3371389 1125733 5183809 1203885 1131986 4091262 2101525 4748156 5376347 3256434 4789253 5407807 4461288 2494895 5504801 1781825 190092 1642923 521237 3800202 3385087 3828441 866970 3681590 2845515 1332...

output:

907404fa-efbb-4a2c-83b8-4c377409c80c
OK
629

result:

ok 3 lines

Test #60:

score: 10
Accepted
time: 18ms
memory: 27300kb

input:

8d9a74d5-4c4b-4437-9c49-114beaeb8f1a
3 2500
6827 6690 2935 1032 6925 397 4509 8004 5927 6743 4358 7902 7239 2939 3693 2834 6940 9870 6120 3250 4561 8813 6907 7907 8918 3466 1111 8172 6164 9779 9145 3560 3853 374 8950 6716 4712 8587 6446 1731 9977 8936 5617 8149 4600 4532 5069 3980 9322 4496 6908 962...

output:

907404fa-efbb-4a2c-83b8-4c377409c80c
OK
608

result:

ok 3 lines

Test #61:

score: 0
Wrong Answer
time: 22ms
memory: 27160kb

input:

8d9a74d5-4c4b-4437-9c49-114beaeb8f1a
3 2500
2237965 687445 2621922 3980698 3999973 3999983 2453251 2559651 3489050 2633538 3497108 1214996 2020667 2462216 3555293 2124809 3999991 1864244 19304 1786392 1858083 3169698 3261730 2667102 224139 3999993 240880 1399521 3999964 1558547 1172796 912200 133841...

output:

907404fa-efbb-4a2c-83b8-4c377409c80c
OK
570

result:

wrong answer 3rd lines differ - expected: '569', found: '570'

Subtask #6:

score: 0
Wrong Answer

Test #64:

score: 0
Wrong Answer
time: 8ms
memory: 6284kb

input:

8d9a74d5-4c4b-4437-9c49-114beaeb8f1a
10 10
1 1 0 0 1 0 0 1 0 0
0 1 0 0 1 0 0 1 1 0
0 1 0 0 0 0 0 1 1 0
1 0 0 0 1 0 0 0 1 1
1 0 1 1 0 0 1 1 0 1
0 0 1 0 0 0 1 1 0 0
1 0 1 1 1 1 1 1 1 0
1 0 0 0 1 1 1 1 0 0
1 0 0 1 1 0 1 0 1 1
0 0 0 0 0 1 0 1 1 0

output:

907404fa-efbb-4a2c-83b8-4c377409c80c
OK
9

result:

wrong answer 3rd lines differ - expected: '2', found: '9'

Subtask #7:

score: 0
Skipped

Dependency #1:

0%