# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
285868 | AMO5 | 미술 수업 (IOI13_artclass) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "artclass.h"
#include <bits/stdc++.h>
using namespace std;
#define fi first
#define se second
#define eb emplace_back
#define all(x) x.begin(),x.end()
#define sz(x) int(x.size())
#define maxn 505
using ii = pair<int,int>;
/* style 1, cc
* style 4, cc (blur)
* style 2, mostly green
* style 3, complicated
*/
int h,w;
int c[mxn][mxn][3];
int dif(int x, int y, int x2, int y2){
int sum = 0;
for(int k:{0,1,2}){
sum+=abs(c[x][y][k]-c[x2][y2][k]);
}
return sum;
}
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++){
c[i][j][0]=R[i][j];
c[i][j][1]=G[i][j];
c[i][j][2]=B[i][j];
}
}
int sum=0,cnt=0;
for(int i=0; i<h; i++){
for(int j=0; j<w; j++){
if(i)sum+=dif(i,j,i-1,j),cnt++;
if(j)sum+=dif(i,j,i,j-1),cnt++;
if(i+1<h)sum+=dif(i,j,i+1,j),cnt++;
if(j+1<w)sum+=dif(i,j,i,j+1),cnt++;
}
}
sum/=cnt;
if(sum>=55)return 3;
if(sum>=25)return 2;
if(sum>=10)return 1;
return 4;
}
/*
int main() {
return 0;
}
// */