# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
126180 | nxteru | 미술 수업 (IOI13_artclass) | C++14 | 83 ms | 12512 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "artclass.h"
#include <bits/stdc++.h>
using namespace std;
#define D 20
#define PB push_back
int h,w,r[505][505],g[505][505],b[505][505],s,t[10005],sz;
vector<int>q[250005];
bool vis[250005];
void dfs(int v){
vis[v]=true;
s++;
for(int i=0;i<q[v].size();i++){
if(!vis[q[v][i]]){
dfs(q[v][i]);
}
}
}
int style(int H, int W, int R[500][500], int G[500][500], int B[500][500]) {
h=H,w=W;
//cout<<h<<' '<<w<<endl;
for(int i=0;i<h;i++){
for(int j=0;j<w;j++){
r[i][j]=R[i][j];
g[i][j]=G[i][j];
b[i][j]=B[i][j];
}
}
return 1;
//cout<<"ok\n";
for(int i=0;i<h;i++){
for(int j=0;j<w;j++){
if(j+1<w&&abs(r[i][j]-r[i][j+1])<D&&abs(g[i][j]-g[i][j+1])<D&&abs(b[i][j]-b[i][j+1])<D){
q[i*w+j].PB(i*w+j+1);
q[i*w+j+1].PB(i*w+j);
}
if(i+1<h&&abs(r[i][j]-r[i+1][j])<D&&abs(g[i][j]-g[i+1][j])<D&&abs(b[i][j]-b[i+1][j])<D){
q[i*w+j].PB((i+1)*w+j);
q[(i+1)*w+j].PB(i*w+j);
}
vis[i*w+j]=false;
}
}
//cout<<"ok\n";
for(int i=0;i<h*w;i++){
if(!vis[i]){
s=0;
dfs(i);
if(s<10000)t[s/100]++;
sz++;
}
}
//cout<<sz<<endl;
for(int i=0;i<100;i++)cout<<t[i]<<' ';
//cout<<endl;
if(sz<100)return 4;
if(sz<10000)return 1;
if(sz<30000)return 2;
return 3;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |