# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
542979 | nayhz | Art Class (IOI13_artclass) | C++17 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "artclass.h"
int style(int H, int W, int R[500][500], int G[500][500], int B[500][500]) {
int total = H * (W - 1);
for (int i = 0; i < H; i++) {
for (int j = 0; j < W - 1; j++) {
one++;
change += abs(R[i][j] - R[i][j + 1]);
change += abs(G[i][j] - G[i][j + 1]);
change += abs(B[i][j] - B[i][j + 1]);
}
}
change /= total;
if (change <= 10) return 4;
else if (change <= 20) return 1;
else if (change >= 150) return 2;
else return 3;
}