# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
257721 | davi_bart | 미술 수업 (IOI13_artclass) | C++14 | 92 ms | 20600 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC optimize("O3")
#include <bits/stdc++.h>
#include "artclass.h"
using namespace std;
typedef long long ll;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
int e=20;
bool vis[260][260][260];
int style(int H, int W, int R[500][500], int G[500][500], int B[500][500]){
for(int i=0;i<259;i++){
for(int j=0;j<259;j++){
for(int h=0;h<259;h++)vis[i][j][h]=0;
}
}
int r=0,g=0,b=0;
int diff=0,tot=0;
int neri=0;
for(int i=0;i<H;i++){
for(int j=0;j<W;j++){
r+=R[i][j];
g+=G[i][j];
b+=B[i][j];
if(i>0){
tot++;
if(abs(R[i][j]-R[i-1][j])+abs(G[i][j]-G[i-1][j])+abs(B[i][j]-B[i-1][j])>e)diff++;
}
if(j>0){
tot++;
if(abs(R[i][j]-R[i][j-1])+abs(G[i][j]-G[i][j-1])+abs(B[i][j]-B[i][j-1])>e)diff++;
}
//if(R[i][j]+G[i][j]+B[i][j]<20)neri++;
vis[R[i][j]][G[i][j]][B[i][j]]=1;
}
}
int num=0;
for(int i=0;i<259;i++){
for(int j=0;j<259;j++){
for(int h=0;h<259;h++)num+=vis[i][j][h];
}
}
int x=diff*100.0/tot;
//cout<<r/(H*W)<<" "<<g/(H*W)<<" "<<b/(H*W)<<endl;
//cout<<x<<"% div:"<<num<<" ";
if(x<4)return 4;
if(x<35)return 1;
if(x<60 || (x<75 && (b/(H*W)<80)))return 2;
return 3;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |