# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
618466 | chirathnirodha | Rectangles (IOI19_rect) | C++17 | 1 ms | 340 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();
int ans=0;
for(int i=0;i<n;i++){
for(int j=i+2;j<n;j++){
int l=0,r=2;
int curmax[n];
while(l<n && r<n){
int maxi=0;
bool ok=true;
for(int k=i+1;k<=j-1;k++){
if(a[k][r-1]>a[i][r-1] || a[k][r-1]>a[j][r-1]){ok=false;break;}
curmax[k]=max(curmax[k],a[k][r-1]);
if(curmax[k]>a[k][l] || curmax[k]>a[k][r]){ok=false;break;}
}
if(!ok)l=r-1;
else ans++;
r++;
}
}
}
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |