# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
420024 | Ozy | 미술 수업 (IOI13_artclass) | C++17 | 78 ms | 3280 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "artclass.h"
#include <bits/stdc++.h>
using namespace std;
#define rep(i,a,b) for (int i = (a); i <= (b); i++)
#define repa(i,a,b) for (int i = (a); i >= (b); i--)
#define lli long long int
#define debugsl(a) cout << #a << " = " << a << ", "
#define debug(a) cout << #a << " = " << a << endl
lli verdes,rojos,azules,num,a;
unordered_map<lli,lli> colores;
int style(int H, int W, int R[500][500], int G[500][500], int B[500][500]) {
rep(i,0,H-1) {
rep(j,0,W-1) {
R[i][j] >>= 5;
G[i][j] >>= 5;
B[i][j] >>= 5;
if (R[i][j] > G[i][j] && R[i][j] > B[i][j]) rojos++;
else if (B[i][j] > G[i][j] && B[i][j] > R[i][j]) azules++;
else verdes++;
a = R[i][j] + (1000 * B[i][j]) + (1000000 *G[i][j]);
if (colores[a] == 0) num++;
colores[a] = 1;
}
}
if (num < 10) return 1;
if (verdes > rojos && verdes > azules) return 2;
if (rojos > verdes && rojos > azules) return 4;
return 3;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |