# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
396425 | wmrmr | 미술 수업 (IOI13_artclass) | C++17 | 65 ms | 3524 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "artclass.h"
#include <bits/stdc++.h>
using namespace std;
const int MAX = 500;
int r[MAX][MAX], g[MAX][MAX], b[MAX][MAX];
int MOD(int x)
{
if(x>0) return x;
return -x;
}
int style(int H, int W, int R[500][500], int G[500][500], int B[500][500]) {
int style4 = 0;
for(int i=0;i<H;i++)
{
int cnt,sR,sG,sB; cnt = sR = sG = sB = 0;
float w = W;
for(int j=0;j<W;j++)
{
sR += R[i][j];
sG += G[i][j];
sB += B[i][j];
}
int aR = sR/W, aG = sG/W, aB = sB/W;
for(int j=0;j<W;j++)
{
if( MOD(R[i][j]-aR) <= 10 && MOD(G[i][j]-aG) <= 10 && MOD(B[i][j]-aB) <= 10 ) cnt++;
}
float ind = cnt;
if(ind < w*0.7) continue;
style4++;
}
if(style4>H/2) return 4;
int cntW = 0;
for(int i=0;i<H;i++) for(int j=0;j<W;j++)
{
if(R[i][j]>240 && G[i][j]>240 && B[i][j]>240) cntW++;
}
if(cntW >= H*W/5) return 1;
srand(time(0));
return (rand()%2) ? 2 : 3;
}
//int main()
//{
// int n,m; scanf("%d %d",&n,&m);
// for(int i=0;i<n;i++) for(int j=0;j<m;j++) scanf("%d %d %d",&r[i][j],&g[i][j],&b[i][j]);
// printf("%d\n",style(n,m,r,g,b));
//}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |