# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
832811 | Marco_Escandon | Rectangles (IOI19_rect) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <unistd.h>
#include <cassert>
#include <string>
using namespace std;
typedef long long ll;
long long count_rectangles(std::vector<std::vector<int> > a) {
ll n=a[0].size();
ll cont=0;
for(int i=1; i<n; i++)
{
ll ma=0;
for(int j=i; j<n-1; j++)
{
ma=max(ma,(ll)a[1][j]);
if(a[1][j]>=a[0][j]||a[1][j]>=a[2][j])
break;
if(ma<a[1][i-1]&&ma<a[1][j+1])
cont++;
}
}
return cont;
}