# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
954198 | StefanSebez | The Kingdom of JOIOI (JOI17_joioi) | C++14 | 1 ms | 348 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n,m;scanf("%i%i",&n,&m);
int a[n+10][m+10],mn=1e9+50,maks=0;for(int i=1;i<=n;i++) for(int j=1;j<=m;j++) {scanf("%i",&a[i][j]);mn=min(mn,a[i][j]),maks=max(maks,a[i][j]);}
int l=1,r=maks-mn-1,res=maks-mn;
while(l<=r){
//printf("%i %i\n",l,r);
int mid=(l+r)/2;
int b[n+10][m+10];
memset(b,0,sizeof(b));
bool bul=false;
for(int i=1;i<=n;i++){
for(int j=1;j<=m;j++){
if(a[i][j]>mn+mid) b[i][j]=2;
if(a[i][j]<maks-mid) b[i][j]=1;
if(mn+mid<a[i][j] && a[i][j]<maks-mid) bul=true;
}
}
if(bul) {l=mid+1;continue;}
while(1){
int c[n+50][m+50];
for(int i=1;i<=n;i++) for(int j=1;j<=m;j++) c[i][j]=b[i][j];
bool bul2=false;
for(int i=1;i<=n;i++){
int L1=-1,R1=-1,L2=-1,R2=-1;
for(int j=1;j<=m;j++){
if(b[i][j]==1) R1=j;
if(b[i][j]==2) R2=j;
}
for(int j=m;j>=1;j--){
if(b[i][j]==1) L1=j;
if(b[i][j]==2) L2=j;
}
if(L1==-1 || L2==-1) continue;
//bul2=true;
if((L1<L2 && L2<R1) || (L1<R2 && R2<R1) || (L2<L1 && L1<R2) || (L2<R1 && R1<R2)) {bul=true;break;}
if(R1<L2){
for(int j=1;j<=R1;j++) b[i][j]=1;
for(int j=L2;j<=m;j++) b[i][j]=2;
}
else{
for(int j=1;j<=R2;j++) b[i][j]=2;
for(int j=L1;j<=m;j++) b[i][j]=1;
}
}
for(int j=1;j<=m;j++){
int L1=-1,R1=-1,L2=-1,R2=-1;
for(int i=1;i<=n;i++){
if(b[i][j]==1) R1=i;
if(b[i][j]==2) R2=i;
}
for(int i=n;i>=1;i--){
if(b[i][j]==1) L1=i;
if(b[i][j]==2) L2=i;
}
if(L1==-1 || L2==-1) continue;
//bul2=true;
if((L1<L2 && L2<R1) || (L1<R2 && R2<R1) || (L2<L1 && L1<R2) || (L2<R1 && R1<R2)) {bul=true;break;}
if(R1<L2){
for(int i=1;i<=R1;i++) b[i][j]=1;
for(int i=L2;i<=n;i++) b[i][j]=2;
}
else{
for(int i=1;i<=R2;i++) b[i][j]=2;
for(int i=L1;i<=n;i++) b[i][j]=1;
}
}
for(int i=1;i<=n;i++) for(int j=1;j<=m;j++) if(b[i][j]!=c[i][j]) bul2=true;
if(!bul2) break;
}
if(bul) l=mid+1;
else r=mid-1,res=mid;
}
printf("%i\n",res);
return 0;
}
컴파일 시 표준 에러 (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... |