# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
57397 | joaogui1 | 미술 수업 (IOI13_artclass) | C++14 | 157 ms | 3664 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "artclass.h"
#include <bits/stdc++.h>
using namespace std;
int dist(int a, int b, int c, int x, int y, int z){
double d = abs(a - x) + abs(b - y) + abs(c - z);
return d;
}
double mean(int R[500][500], int G[500][500], int B[500][500], int x, int y){
double ret = 0;
int dx[4] = {-1, 0, 1, 0}, dy[4] = {0, 1, 0, -1};
for(int i = 0; i < 4; ++i)
ret += dist(R[x][y], G[x][y], B[x][y], R[x + dx[i]][y + dy[i]], G[x + dx[i]][y + dy[i]], B[x + dx[i]][y + dy[i]]);
return ret;
}
int style(int H, int W, int R[500][500], int G[500][500], int B[500][500]) {
double d = 0;
for(int i = 1; i < H - 1; ++i)
for(int j = 1; j < W - 1; ++j){
d += mean(R, G, B, i, j);
}
d /= H*W;
//cout << d << "\n";
// cout << d << " ";
if(d < 36) return 4;
if(90.0 > d) return 1;
if(200.0 > d) return 2;
else return 3;
//return d;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |