이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "rect.h"
using namespace std;
typedef long long ll;
ll n, m;
ll count_rectangles(vector<vector<int>> a) {
if (a.size() <= 2) return 0;
n = a.size(); m = a[0].size();
vector<vector<bool>> vst(n, vector<bool>(m));
ll res = 0;
for (int i = 1; i < n-1; i++) {
for (int j = 1; j < m-1; j++) {
if (a[i][j] || vst[i][j]) continue;
ll ptrN = i, ptrM = j;
while (!a[ptrN][ptrM] && ptrM < m-1) ptrM++;
ptrM--;
while (!a[ptrN][ptrM] && ptrN < n-1) ptrN++;
ptrN--;
bool poss = true;
for (int x = i; x <= ptrN && poss; x++) {
for (int y = j; y <= ptrM && poss; y++) {
vst[x][y] = true;
if (a[x][y]) poss = false;
}
}
for (int x = i; x <= ptrN && poss; x++) {
if (!a[x][j-1]) poss = false;
if (!a[x][ptrM+1]) poss = false;
}
for (int y = j; y <= ptrM && poss; y++) {
if (!a[i-1][y]) poss = false;
if (!a[ptrN+1][y]) poss = false;
}
res += poss;
}
}
return res;
}
# | 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... |