# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
428659 | Hazem | Rectangles (IOI19_rect) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "rect.h"
#include <bits/stdc++.h>
#define LL long long
using namespace std;
const int N = 250;
int n,m;
int col[N][N][N],row[N][N][N];
long long count_rectangles(std::vector<std::vector<int> > a) {
n = a.size();m = a[0].size();
assert(
n<=3);
if(n<3)
return 0;
bool q = 1;
LL ans = 0;
for(int i=1;i<m-1;i++){
int mx = 0;
for(int j=i;j<m-1;j++){
mx = max(mx,a[1][j]);
q &= (a[1][j]<a[0][j])&&(a[1][j]<a[2][j]);
ans += 0ll+(q&(mx<a[1][i-1]&&mx<a[1][j+1]));
}
}
return ans;
}