# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
426795 | dreezy | Rectangles (IOI19_rect) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "rect.h"
#include <bits/stdc++.h>
using namespace std;
long long count_rectangles(vector<vector<int> > a) {
int n = a.size();
int m = a[0].size();
ll ans = 0;
for(int i =1; i<n-1 ;i++){
for(int j =1 ;j <m-1; j++){
int cnt = 0;
if(a[i-1][j] < a[i][j])
cnt++;
if(a[i+1][j] < a[i][j])
cnt++;
if(a[i][j-1] < a[i][j])
cnt++
if(a[i][j+1] < a[i][j])
cnt++;
if(cnt == 4)
ans++;
}
}
return an;
}
/************/