# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
680217 | Dan4Life | 미술 수업 (IOI13_artclass) | C++17 | 75 ms | 4684 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "artclass.h"
#include <bits/stdc++.h>
using namespace std;
int avg(int a[][500], int x1=0, int y1=0, int x2=500, int y2=500){
int tot = 0;
for(int i = x1; i < x2; i++)
for(int j = y1; j < y2; j++)
tot+=a[i][j];
return tot/((x2-x1+1)*(y2-y1+1));
}
int cnt(int a[][500], int b[][500], int c[][500], int thl=0, int thr=255, int x1=0, int y1=0, int x2=500, int y2=500){
int tot = 0, x;
for(int i = x1; i < x2; i++)
for(int j = y1; j < y2; j++)
x = (a[i][j]+b[i][j]+c[i][j])/3, tot+=(x>=thl and x<=thr);
return tot;
}
int style(int H, int W, int R[500][500], int G[500][500], int B[500][500]) {
int r = avg(R), g = avg(G), b = avg(B);
int th = 125, nth = 500*500/3;
if(avg(G,0,150,500,500)>=th and
avg(B,0,150,500,500)<=40 and
avg(R,0,150,500,500<=100)) return 2;
if(cnt(R,G,B,230,255) >= nth) return 1; // lots of white pixels
if(cnt(R,G,B,0,50) >= nth) return 3; // lots of dark pixels
if(r>=th and g>=th and b>=th) return 4; // lighter in general
if(r>=th and g>=th/2 and b<th) return 3; //average color is close to brown? idk
if((r+g+b)/3>=th) return 4; //lightish?
return 3;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |