# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
587366 | Omar_Elgedawy | 삶의 질 (IOI10_quality) | C++14 | 47 ms | 828 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
#define ordered_set tree<int, null_type,less<int>, rb_tree_tag,tree_order_statistics_node_update>
//#include "grader.cpp"
#include "quality.h"
using namespace std;
#define cin(vec) for(auto& i : vec) cin >> i
#define cout(vec) for(auto& i : vec) cout << i << " "; cout << "\n";
#define fast ios::sync_with_stdio(0);cin.tie(0);
#define loop(i,a,b) for (int i = a; i < b; i++)
#define F first
#define S second
#define pb(n) push_back(n)
#define pf(n) push_front(n)
#define dci(d) fixed<<setprecision(d)
#define sp ' '
#define el '\n'
#define all(v) v.begin(),v.end()
#define f find_by_order
int rectangle(int n, int m, int r, int c, int a[3001][3001]) {
ordered_set s;
for(int i=0;i<r;i++){
for(int j=0;j<c;j++){
s.insert(a[i][j]);
}
}
int ans=*(s.f(s.size()/2));
int op=1;
for(int i=0;i<n-r;i++){
if(op){
if(s.size())
ans=min(ans,*s.f(s.size()/2));
for(int j=0;j<m-c;j++){
for(int k=i;k<r+i;k++){
// cout<<k<<' '<<j<<el;
s.erase(a[k][j]);
}
for(int k=i;k<r+i;k++){
// cout<<k<<' '<<j+c<<el;
s.insert(a[k][j+c]);
}
// cout(s);
if(s.size())
ans=min(ans,*s.f(s.size()/2));
}
for(int j=m-c;j<m;j++){
s.erase(a[i][j]);
}
for(int j=m-c;j<m;j++){
s.insert(a[i+r][j]);
}
}
else{
if(s.size())
ans=min(ans,*s.f(s.size()/2));
for(int j=m-1;j>=c;j--){
for(int k=i;k<r+i;k++){
// cout<<k<<' '<<j+c<<el;
s.insert(a[k][j-c]);
}
for(int k=i;k<r+i;k++){
// cout<<k<<' '<<j<<el;
s.erase(a[k][j]);
}
// cout<<"D ";
// cout(s);
if(s.size())
ans=min(ans,*s.f(s.size()/2));
}
for(int j=0;j<c;j++){
s.erase(a[i][j]);
}
for(int j=0;j<c;j++){
s.insert(a[i+r][j]);
}
}
op=!op;
}
if(s.size())
ans=min(ans,*s.f(s.size()/2));
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... |