이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
#include "rect.h"
using namespace std;
long long count_rectangles(vector<vector<int>> a){
int n = a.size() ,m = a[0].size();
long long ans = 0;
for(int i=0; i+2<n; i++){
for(int l=0; l<m; l++)
for(int r=l+2; r<m; r++)
{
bool bad = false ,ok;
for(int k=i+1; k+1<n; k++){
ok = true;
for(int j=l+1; j+1<=r; j++){
ok &= (a[k][j] < a[k+1][j]);
if(a[k][j] >= a[i][j] || a[k][j] >= a[k][l] || a[k][j] >= a[k][r]){
bad = true;
break;
}
}
if(bad) break;
//if(ok)printf("[%d ,%d] to [%d ,%d]\n",i+1,l+1,k,r-1);
ans += ok;
}
}
}
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |