# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
125739 | MoNsTeR_CuBe | 미술 수업 (IOI13_artclass) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "artclass.h"
using namespace std;
#define int long long
int style(int H, int W, int R[500][500], int G[500][500], int B[500][500]) {
double r = 0, g = 0, b = 0;
double totG = 0;
double totR = 0;
double totB = 0;
for(int i = 0; i < H; i++){
for(int j = 0; j < W; j++){
totG += G[i][j];
totR += R[i][j];
totB += B[i][j];
if(j + 1 < W){
r += abs(R[i][j] - R[i][j+1]);
g += abs(G[i][j] - G[i][j+1]);
b += abs(B[i][j] - B[i][j+1]);
}
if(i + 1 < H){
r += abs(R[i][j] - R[i+1][j]);
g += abs(G[i][j] - G[i+1][j]);
b += abs(B[i][j] - B[i+1][j]);
}
}
}
//cout << r/((double)(H*W)) << ' ' << g/((double)(H*W)) << ' ' << b/((double)(H*W)) << endl;
if(r/((double)(H*W)) < (double)(6.22) || g/((double)(H*W)) < (double)(6) || b/((double)(H*W)) < (double)(6.1)){
return 4;
}
if(r/((double)(H*W)) > (double)(36.8) || g/((double)(H*W)) > (double)(36.3) || b/((double)(H*W)) > (double)(35.3)){
return 3;
}
if(totR/((double)(H*W)) > (double)(130.0) && totG/((double)(H*W)) > (double)(130.0) && totB/((double)(H*W) > (double)(130.0))){
return 1;
}
return 2;
//cout << totR/((double)(H*W)) << ' ' << totG/((double)(H*W)) << ' ' << totB/((double)(H*W)) << endl;
}