# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1043084 |
2024-08-03T22:45:26 Z |
HD1 |
Rectangles (IOI19_rect) |
C++14 |
|
2 ms |
1116 KB |
#include "rect.h"
#include<bits/stdc++.h>
#define all(s) s.begin(),s.end()
#define sz(s) int (s.size())
#define pb push_back
using namespace std;
typedef long long ll;
typedef pair<ll,ll> ii;
const ll MAX=1e6;
ll n,m;
ll mxf[32][32][32], mxc[32][32][32];
vector< vector<int> > A;
void loco(vector<int> s, int x){//filas
for(int i=0; i<m; i++){
int mx=s[i];
for(int j=i+1; j<m; j++){
mx=max(mx,s[j]);
mxf[x][i][j]=mx;
}
}
return;
}
void loca(vector<int> s, int x){//columnas
for(int i=0; i<n; i++){
int mx=s[i];
for(int j=i+1; j<n; j++){
mx=max(mx,s[j]);
mxc[x][i][j]=mx;
}
}
return;
}
bool validf(int mx, int i, int l, int r){
return A[i][l-1]>mx && A[i][r+1]>mx;
}
bool validc(int mx, int j, int l, int r){
return A[l-1][j]>mx && A[r+1][j]>mx;
}
bool rectangle(int a, int b, int x, int y){
bool good=true;
for(int i=a; i<=x; i++){//por filas
good&=validf(mxf[i][b][y], i, b, y);
}
for(int j=b; j<=y; j++){//por columnas
good&=validc(mxc[j][a][x], j, a, x);
}
return good;
}
int fijo(int i1, int j1){
int ans=0;
for(int i=i1; i<n-1; i++){
for(int j=j1; j<m-1; j++){
if(rectangle(i1, j1, i, j)) ans++;
}
}
return ans;
}
long long count_rectangles(vector< vector<int> > a) {
A=a;
n=sz(a);
m=sz(a[0]);
for(int i=0; i<n; i++){
loco(a[0], i);
}
vector<int> c;
for(int j=0; j<m; j++){
for(int i=0; i<n; i++){
c.pb(a[i][j]);
}
loca(c,j);
c.clear();
}
int ans=0;
for(int i=1; i<n-1; i++){
for(int j=1; j<m-1; j++){
ans+=fijo(i,j);
}
}
return ans;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
2 ms |
1116 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |