# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
845006 | RaresFelix | 미술 수업 (IOI13_artclass) | C++17 | 53 ms | 3496 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "artclass.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
void add_dif_abs(int H, int W, int M[500][500], ll &dif_abs) {
for(int i = 0; i < H; ++i) {
for(int j = 0; j < W; ++j) {
if(i + 1 < H) {
dif_abs += abs(M[i][j] - M[i + 1][j]);
}
if(j + 1 < W) {
dif_abs += abs(M[i][j] - M[i][j + 1]);
}
}
}
}
void add_cont(int H, int W, int M[500][500], ll &cont, int vlim) {
for(int i = 0; i < H; ++i) {
for(int j = 0; j < W; ++j) {
if(i + 1 < H) {
cont += (abs(M[i][j] - M[i + 1][j]) > vlim);
}
if(j + 1 < W) {
cont += (abs(M[i][j] - M[i][j + 1]) > vlim);
}
}
}
}
ll contv(int H, int W, int R[500][500], int G[500][500], int B[500][500], int vlim) {
ll cont = 0;
add_cont(H, W, R, cont, vlim);
add_cont(H, W, G, cont, vlim);
add_cont(H, W, B, cont, vlim);
return cont;
}
vector<pair<ld, ld> > Sem[] ={
{{7.46, 2.66}, {3.96, 1.68}, {6.71, 4.44}, {1.90, 0.82}, {11.02, 8.62}, },
{{11.24, 5.51}, {3.21, 3.63}, {14.82, 10.70}, {5.76, 3.15}, {0.82, 1.32}, },
{{22.17, 8.98}, {19.02, 8.88}, {36.50, 15.21}, {2.13, 0.49}, {24.87, 18.76}, },
{{1.71, 0.88}, {0.13, 0.15}, {0.43, 0.31}, {7.63, 8.53}, {0.07, 0.18} }
};
ld W[5] = {1., .1, .1, 1., 1.};
ld asem(vector<pair<ld, ld> > A, vector<ld> V) {
ld re = 0;
for(int i = 0; i < 5; ++i) {
ld deltasig = abs(V[i] - A[i].first) / A[i].second * W[i];
re += deltasig * deltasig * deltasig;
}
return re;
}
int style(int H, int W, int R[500][500], int G[500][500], int B[500][500]) {
ll dif_abs = 0, cont40 = contv(H, W, R, G, B, 40), cont20 = contv(H, W, R, G, B, 20), cont100 = contv(H, W, R, G, B, 100);
add_dif_abs(H, W, R, dif_abs);
add_dif_abs(H, W, G, dif_abs);
add_dif_abs(H, W, B, dif_abs);
ld v1 = ld(dif_abs) / 1000000., v2 = ld(cont40) / 10000., v3 = ld(cont20) / 10000., v4 = v3 / v2, v5 = ld(cont100 / 1000.);
vector<ld> V = {v1, v2, v3, v4, v5};
vector<ld> Sigma;
for(int tip = 0; tip < 4; ++tip) {
Sigma.push_back(asem(Sem[tip], V));
}
const ld INF = 1e18;
if(v1 > 5. || v2 > 1.) Sigma[3] = INF;
if(v3 < 15. || v4 > 5. || v1 < 7. || v2 < 7.) Sigma[2] = INF;
if(v2 * v3 < .9) Sigma[0] = Sigma[1] = Sigma[2] = INF;
if(v4 > 3.5) Sigma[0] = INF;
if(v4 < 2.) Sigma[1] = INF;
int rasp = 0;
for(int tip = 0; tip < 4; ++tip) {
if(Sigma[tip] < Sigma[rasp]) rasp = tip;
}
// cout << rasp + 1 << " ";
// for(int i = 0; i < 4; ++i) cout << fixed << setprecision(3) << Sigma[i] << " ";
// cout << "\n";
// cout << fixed << setprecision(2) << v1 << " " << v2 << " " << v3 << " " << v4 << " " << v5 << "\n";
// cout << fixed << setprecision(2) << (ld(dif_abs) / 1000000.) << " " << (ld(cont40) / 10000.0) << " " << (ld(cont20) / 10000.0)<< " " << (ld(cont20) / ld(cont40)) << "\n";
return rasp + 1;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |