# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
72568 | RezwanArefin01 | Art Class (IOI13_artclass) | C++17 | 249 ms | 66560 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 <bits/stdc++.h>
#include "artclass.h"
using namespace std;
int dx[] = {0, 0, 1, -1, 1, 1, -1, -1};
int dy[] = {1, -1, 0, 0, -1, 1, 1, -1};
struct point {
int r, g, b;
point(int _r = 0, int _g = 0, int _b = 0) :
r(_r), g(_g), b(_b) {}
} p[500][500];
int n, m;
int sq(int x) { return x * x; }
double dist(point a, point b) {
return sqrt(sq(a.r - b.r) + sq(a.b - b.b) + sq(a.g - b.g));
}
double get_noise() {
int cnt = 0;
for(int i = 0; i < n; i++) {
for(int j = 0; j < m; j++) {
int diff = 0;
for(int k = 0; k < 8; k++) {
int ii = i + dx[k], jj = j + dy[k];
if(ii >= 0 && ii < n && jj >= 0 && jj < m)
if(dist(p[i][j], p[ii][jj]) > 10) diff++;
} if(diff >= 5) cnt++;
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |