QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#486764#2672. RectanglesDan4Life#0 1ms14388kbC++231.4kb2024-07-22 00:58:542024-07-22 00:58:55

Judging History

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

  • [2024-07-22 00:58:55]
  • 评测
  • 测评结果:0
  • 用时:1ms
  • 内存:14388kb
  • [2024-07-22 00:58:54]
  • 提交

answer

#include "rect.h"
#include <bits/stdc++.h>
using namespace std;

#define pb push_back
#define sz(a) (int)a.size()
#define all(a) begin(a),end(a)

using ll = long long;
using vi = vector<int>;

const int mxN = 702;
int n, m;
bitset<mxN> goodr[mxN][mxN];
bitset<mxN> goodc[mxN][mxN];
bitset<mxN> badr[mxN][mxN];
bitset<mxN> badc[mxN][mxN];

ll count_rectangles(vector<vi> a) {
	n = sz(a); m = sz(a[0]); ll ans = 0;
	for(int i = 1; i < n-1; i++){
		for(int j = 1; j < m-1; j++){
			
			// row
			int boundaryR = a[i][j-1], mx = 0;
			for(int k = j; k < m-1; k++){
				mx = max(mx,a[i][k]);
				if(boundaryR<=mx){
					badr[i][j][k]=1;
					break;
				}
				if(a[i][k+1]<=mx) continue; 
				goodr[i][j][k]=1;
			}
			
			// column
			int boundaryC = a[i-1][j]; mx = 0;
			for(int k = i; k < n-1; k++){
				mx = max(mx, a[k][j]);
				if(boundaryC<=mx){
					badc[i][j][k]=1;
					break;
				}
				
				if(a[k+1][j]<=mx) continue;
				goodc[i][j][k]=1;
			}
		}
	}
	for(int i = 1; i < n-1; i++){
		for(int j = 1; j < m-1; j++){
			for(int k = j; k < m-1; k++){
				if(badr[i][j][k]) break;
				if(!goodr[i][j][k]) continue;
				for(int l = i; l < n-1; l++){
					if(!goodr[l][j][k]) break;
					int mn = 1;
					for(int y = j; y <= k; y++)
						mn=min<int>(mn,goodc[i][y][l]);
					if(mn!=1) continue; 
					//cout << i << " " << j << " " << l << " " << k << "\n"; ans++;
				}
			}
		}
	}
	return ans;
}

详细

Subtask #1:

score: 0
Wrong Answer

Test #1:

score: 0
Wrong Answer
time: 1ms
memory: 9928kb

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
0

result:

wrong answer 3rd lines differ - expected: '784', found: '0'

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: 0
Wrong Answer
time: 0ms
memory: 8032kb

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
0

result:

wrong answer 3rd lines differ - expected: '2498', found: '0'

Subtask #6:

score: 0
Wrong Answer

Test #64:

score: 0
Wrong Answer
time: 0ms
memory: 14388kb

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
0

result:

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

Subtask #7:

score: 0
Skipped

Dependency #1:

0%