# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
781713 | FatihSolak | Art Class (IOI13_artclass) | C++17 | 78 ms | 6080 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"
#include <bits/stdc++.h>
using namespace std;
int style(int h, int w, int r[500][500], int g[500][500], int b[500][500]) {
int delta = 0;
int cnt = 0;
for(int i = 0;i<h;i++){
for(int j = 0;j<w;j++){
if(r[i][j] > g[i][j] && r[i][j] > b[i][j])
cnt++;
if(i){
delta += abs(r[i][j] - r[i-1][j]);
delta += abs(g[i][j] - g[i-1][j]);
delta += abs(b[i][j] - b[i-1][j]);
}
if(j){
delta += abs(r[i][j] - r[i][j-1]);
delta += abs(g[i][j] - g[i][j-1]);
delta += abs(b[i][j] - b[i][j-1]);
}
}
}
double x = (double)delta / (h * w);
double a = (double)cnt / (h * w);
//cout << x << ' ' << a << endl;
if(x < 20){
return 4;
}
if(x < 70){
return 1;
}
if(x < 120){
return 2;
}
return 3;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |