QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#140216 | #2672. Rectangles | minhcool# | 0 | 2ms | 12292kb | C++14 | 3.9kb | 2023-08-15 14:56:39 | 2024-07-04 01:43:57 |
Judging History
answer
//#define local
#ifndef local
#include "rect.h"
#endif
#include<bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
using namespace std;
#define ll long long
#define fi first
#define se second
#define pb push_back
#define mp make_pair
typedef pair<ll, ll> ii;
typedef pair<ii, ll> iii;
typedef pair<ii, ii> iiii;
const ll N = 2505 + 5;
const ll oo = 1e18 + 7, mod = 1e9 + 7;
mt19937 rng(1);
ll rnd(ll l, ll r){
ll temp = rng() % (r - l + 1);
return abs(temp) + l;
}
ll n, m, a[N][N];
ll mxr[N][N], mxl[N][N], mxd[N][N], mxu[N][N];
vector<ii> vc;
vector<ll> events[N];
ll minr[N], maxl[N];
ll bit[N];
void upd(ll id, ll val){
for(; id <= m; id += id & -id) bit[id] += val;
}
ll get(ll id){
ll ans = 0;
for(; id; id -= id & -id) ans += bit[id];
return ans;
}
ll count_rectangles(vector<vector<int>> arr){
n = arr.size(), m = arr[0].size();
for(ll i = 0; i < n; i++){
for(ll j = 0; j < m; j++) a[i][j] = arr[i][j];
}
for(ll i = 0; i < n; i++){
stack<ll> stk;
stk.push(-1);
for(ll j = 0; j < m; j++){
while(stk.top() >= 0 && a[i][stk.top()] < a[i][j]) stk.pop();
mxl[i][j] = stk.top() + 1;
stk.push(j);
}
}
for(ll i = 0; i < n; i++){
stack<ll> stk;
stk.push(-1);
for(ll j = 0; j < m; j++){
while(stk.top() >= 0 && a[i][stk.top()] < a[i][j]) stk.pop();
mxl[i][j] = stk.top() + 1;
stk.push(j);
}
}
for(ll i = 0; i < n; i++){
stack<ll> stk;
stk.push(m);
for(ll j = m - 1; j >= 0; j--){
while(stk.top() < m && a[i][stk.top()] < a[i][j]) stk.pop();
mxr[i][j] = stk.top() - 1;
stk.push(j);
}
}
for(ll i = 0; i < m; i++){
stack<ll> stk;
stk.push(-1);
for(ll j = 0; j < n; j++){
while(stk.top() >= 0 && a[stk.top()][i] < a[j][i]) stk.pop();
mxu[j][i] = stk.top() + 1;
stk.push(j);
}
}
for(ll i = 0; i < m; i++){
stack<ll> stk;
stk.push(n);
for(ll j = n - 1; j >= 0; j--){
while(stk.top() < n && a[stk.top()][i] < a[j][i]) stk.pop();
mxd[j][i] = stk.top() - 1;
stk.push(j);
}
}
for(ll i = 0; i < n; i++){
//for(ll j = 0; j < m; j++) cout << i << " " << j << " " << mxr[i][j] << " " << mxl[i][j] << " " << mxu[i][j] << " " << mxd[i][j] << "\n";
}
ll answer = 0;
for(ll i = 0; i < n; i++){
for(ll j = 0; j < m; j++){
minr[j] = oo, maxl[j] = -oo;
}
for(ll j = i + 2; j < n; j++){
for(ll k = 0; k < m; k++){
minr[k] = min(minr[k], mxr[j - 1][k]);
maxl[k] = max(maxl[k], mxl[j - 1][k]);
}
vc.clear();
ll lst = -oo;
for(ll k = 1; k < m; k++){
if(mxd[i][k] >= j - 1 && mxu[j][k] <= i + 1 && k < (m - 1)){
if(lst == -oo) lst = k;
}
else{
if(lst >= 0) vc.pb({lst, k - 1});
lst = -oo;
}
}
for(ll k = 0; k <= m; k++){
events[k].clear();
bit[k] = 0;
}
for(auto it : vc){
//cout << i << " " << j << " " << it.fi << " " << it.se << "\n";
//cout << minr[it.fi - 1] << " " << maxl[it.fi + 1] << "\n";
//for(ll k = it.fi - 1; k < it.se; k++) events[min(it.se, minr[k]) + 1];
for(ll k = it.fi; k <= it.se; k++){
upd(k, 1);
events[min(it.se, minr[k - 1]) + 1].pb(k);
for(auto it : events[k]) upd(it, -1);
//cout << maxl[k + 1] << " " <<
answer += get(m) - get(max(it.fi, maxl[k + 1] - 1));
//cout << min(it.se, minr[k - 1]) + 1 << " " << maxl[k + 1] << "\n";
}
//cout << answer << "\n";
}
}
}
return answer;
}
#ifdef local
void process(){
ll n, m;
cin >> n >> m;
vector<vector<int>> board;
board.resize(n);
for(ll i = 0; i < n; i++) board[i].resize(m);
for(ll i = 0; i < n; i++){
for(ll j = 0; j < m; j++) cin >> board[i][j];
}
cout << count_rectangles(board) << "\n";
}
signed main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
freopen("kek.inp", "r", stdin);
freopen("kek.out", "w", stdout);
process();
}
#endif
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 0
Wrong Answer
time: 2ms
memory: 12208kb
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 756
result:
wrong answer 3rd lines differ - expected: '784', found: '756'
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: 2ms
memory: 12292kb
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 2497
result:
wrong answer 3rd lines differ - expected: '2498', found: '2497'
Subtask #6:
score: 0
Wrong Answer
Test #64:
score: 0
Wrong Answer
time: 2ms
memory: 12032kb
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%