# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
534300 | benson1029 | 미술 수업 (IOI13_artclass) | C++14 | 85 ms | 11148 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "artclass.h"
#include<bits/stdc++.h>
using namespace std;
bool vis[500][500];
int r[500][500], g[500][500], b[500][500];
int cntcompo = 0;
stack< pair<int,int> > stk;
int h,w;
bool ok(int x, int y) {
return (x>=0&&y>=0&&x<h&&y<w&&!vis[x][y]);
}
bool close(int X1, int Y1, int X2, int Y2) {
int absdiff = abs(r[X1][Y1]-r[X2][Y2]) + abs(g[X1][Y1]-g[X2][Y2]) + abs(b[X1][Y1]-b[X2][Y2]);
if(absdiff < 50) {
return true;
} else return false;
}
void dfs(int x, int y) {
stk.push({x, y});
while(!stk.empty()) {
int x = stk.top().first;
int y = stk.top().second;
vis[x][y] = true;
stk.pop();
if(ok(x+1, y) && close(x, y, x+1, y)) stk.push({x+1, y});
if(ok(x-1, y) && close(x, y, x-1, y)) stk.push({x-1, y});
if(ok(x, y+1) && close(x, y, x, y+1)) stk.push({x, y+1});
if(ok(x, y-1) && close(x, y, x, y-1)) stk.push({x, y-1});
}
}
int style(int H, int W, int R[500][500], int G[500][500], int B[500][500]) {
h=H; w=W;
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];
}
}
for(int i=0; i<H; i++) {
for(int j=0; j<W; j++) {
if(!vis[i][j]) {
dfs(i,j);
cntcompo++;
}
}
}
if(cntcompo<100) return 4;
else if(cntcompo<30000) return 1;
else return 2;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |