Submission #399164

# Submission time Handle Problem Language Result Execution time Memory
399164 2021-05-05T11:21:44 Z ACmachine Art Class (IOI13_artclass) C++17
89 / 100
93 ms 12116 KB
#include "artclass.h"
#include <bits/stdc++.h>
using namespace std;
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;

template<typename T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
template<typename T, typename U> using ordered_map = tree<T, U, less<T>, rb_tree_tag, tree_order_statistics_node_update>;

typedef long long ll;
typedef long double ld;

typedef pair<int,int> pii;
typedef pair<ll,ll> pll;

typedef vector<int> vi;
typedef vector<ll> vll;

#define FOR(i,j,k,in) for(int i=(j); i < (k);i+=in)
#define FORD(i,j,k,in) for(int i=(j); i >=(k);i-=in)
#define REP(i,b) FOR(i,0,b,1)
#define REPD(i,b) FORD(i,b,0,1)
#define pb push_back
#define mp make_pair
#define ff first
#define ss second
#define all(x) begin(x), end(x)
#define MANY_TESTS int tcase; cin >> tcase; while(tcase--)

const double EPS = 1e-9;
const int MOD = 1e9+7;
const ll INFF = 1e18;
const int INF = 1e9;
const ld PI = acos((ld)-1);
const vi dy = {1, 0, -1, 0, -1, 1, 1, -1};
const vi dx = {0, 1, 0, -1, -1, 1, -1, 1};

void DBG(){cout << "]" << endl;}
template<typename T, typename ...U> void DBG(const T& head, const U... args){ cout << head << "; "; DBG(args...); }
#define dbg(...) cout << "Line(" << __LINE__ << ") -> [" << #__VA_ARGS__ << "]: [", DBG(__VA_ARGS__);
#define chk() cout << "Check at line(" << __LINE__ << ") hit." << endl;

template<class T, unsigned int U>
ostream& operator<<(ostream& out, const array<T, U> &v){out << "[";  REP(i, U) out << v[i] << ", ";  out << "]"; return out;}
template <class T, class U>
ostream& operator<<(ostream& out, const pair<T, U> &par) {out << "[" << par.first << ";" << par.second << "]"; return out;}
template <class T>
ostream& operator<<(ostream& out, const set<T> &cont) { out << "{"; for( const auto &x:cont) out << x << ", "; out << "}"; return out; }
template <class T, class U>
ostream& operator<<(ostream& out, const map<T, U> &cont) {out << "{"; for( const auto &x:cont) out << x << ", "; out << "}"; return out; }
template<class T>
ostream& operator<<(ostream& out, const vector<T> &v){ out << "[";  REP(i, v.size()) out << v[i] << ", ";  out << "]"; return out;}

template<class T>
istream& operator>>(istream& in, vector<T> &v){ for(auto &x : v) in >> x; return in; }

// make functions return [0..1]
int style(int h, int w, int R[500][500], int G[500][500], int B[500][500]) {
    auto in_tolerance = [&](int a, int b){
        return abs(a - b) < 15;
    };
    auto similar = [&](array<int, 3> a, array<int, 3> b){
        return in_tolerance(a[0],b[0]) && in_tolerance(a[1], b[1]) && in_tolerance(a[2], b[2]);
    };
    auto similar3 = [&](array<int, 3> a, array<int, 3> b){
        return abs(a[0] - b[0]) < 5 && abs(a[1] - b[1]) < 5 && abs(a[2] - b[2]) < 5;
    };
    vector<vector<array<int, 3>>> grid(500, vector<array<int,3>>(500));
    REP(i, h){
        REP(j, w){
            grid[i][j] = {R[i][j], G[i][j], B[i][j]};
        }
    }
    auto get_green = [&]()->double{
        auto is_green = [&](array<double, 3> px)->double{ // high red and green?
            double scaling = 1.0 * px[1] / 255.0;
            REP(i, 3) px[i] *= scaling;
            return max(0.0, 2 * px[1] - px[0] - px[2]);
        };
        double cnt = 0;
        REP(i, h){
            REP(j, w){
                cnt += is_green({grid[i][j][0], grid[i][j][1], grid[i][j][2]});
            }
        }
        return (double)cnt / (double)(h * w);
    };
    auto get_granularity = [&]()->double{
        double res = 0;
        REP(i, h){
            REP(j, w){
                double curr = 0;
                REP(sm, 4){
                    if(dy[sm] < 0 || dx[sm] < 0) continue;
                    int ny = i + dy[sm];
                    int nx = j + dx[sm];
                    if(ny < 0 || ny >= h || nx < 0 || nx >= w) continue;
                    if(!similar(grid[i][j], grid[ny][nx]))
                        curr+=1.0;
                }
                res += curr;
            }
        }
        return res / (double)(h * w * 2);
    };
    auto get_sensitive_granularity = [&]()->double{
        double res = 0;
        REP(i, h){
            REP(j, w){
                double curr = 0;
                REP(sm, 4){
                    if(dy[sm] < 0 || dx[sm] < 0) continue;
                    int ny = i + dy[sm];
                    int nx = j + dx[sm];
                    if(ny < 0 || ny >= h || nx < 0 || nx >= w) continue;
                    if(!similar3(grid[i][j], grid[ny][nx]))
                        curr+=1.0;
                }
                res += curr;
            }
        }
        return res / (double)(h * w * 2);
    };
    auto similar2 = [&](array<int, 3> a, array<int, 3> b){
        int cutoff = 35;
        return abs(a[0] - b[0]) < cutoff && abs(a[1] - b[1]) < cutoff && abs(a[2] - b[2]) < cutoff;
    };
    auto get_components = [&]()->array<double, 3>{ // also count disproportionate components
        vector<vector<int>> visited(h, vector<int>(w, -1));
        int curr_id = 0;
        auto bfs = [&](int row, int col){
            queue<array<int, 2>> q;
            visited[row][col] = curr_id;
            q.push({row, col});
            while(!q.empty()){
                auto v = q.front();
                q.pop();
                REP(sm, 4){
                    int ny = v[0] + dy[sm];
                    int nx = v[1] + dx[sm];
                    if(ny < 0 || ny >= h || nx < 0 || nx >= w || visited[ny][nx] != -1 || !similar2(grid[ny][nx], grid[row][col]))
                        continue;
                    visited[ny][nx] = curr_id;
                    q.push({ny, nx});
                }
            }
        };
        vector<int> miny(h * w, INF);
        vector<int> maxy(h * w, -INF);
        vector<int> minx(h * w, INF);
        vector<int> maxx(h * w, -INF);
        vector<int> cnt(h * w, 0);
        REP(i, h){
            REP(j, w){
                if(visited[i][j] == -1){
                    bfs(i, j);
                    curr_id++;
                }
            }
        }
        REP(i, h){
            REP(j, w){
                miny[visited[i][j]] = min(miny[visited[i][j]], i);
                maxy[visited[i][j]] = max(maxy[visited[i][j]], i);
                minx[visited[i][j]] = min(minx[visited[i][j]], j);
                maxx[visited[i][j]] = max(maxx[visited[i][j]], j);
                cnt[visited[i][j]]++;
            }
        }
        int components = 0; // only 30+ px; ?
        int disproportionate_components = 0;
        REP(i, h * w){
            if(cnt[i] > 10){
                components++;
                int s = abs(miny[i] - maxy[i]) * abs(minx[i] - maxx[i]);
                double cut = 0.3;
                if((double)cnt[i] / s < cut)
                    disproportionate_components++;
            }
        }
        return {(1.0 * components) / (1.0 * h * w), 1.0 * disproportionate_components, (1.0 * disproportionate_components)/(1.0 * components)};
    };
    double p = get_green();
    double p2 = get_granularity();
    auto v3 = get_components();
    //dbg(p, v3);
    double p4 = get_sensitive_granularity();
    /*
     dbg(p4);
     if(p2 > 0.25){
         if(v3[0] > 0.01)
             return 3;
         else
             return 2;

         if(p2 > 0.5) return 3;
         if(v3[1] < 10) return 2;
         if(p < 5) return 3;


     }else{
         // 1 or 4
         if(v3[0] < 0.001){
             return 4;
         }
         else{
             return 1;
         }

     }
     */
    //dbg(p, p2, v3, p4)

    if((v3[0] < 0.0008) && v3[2] < 0.2) return 4;
    if(p4 < 0.6) return 1;
    if(v3[0] > 0.01 || v3[1] > 40) return 3;
    return 2;


    return 2;
}

Compilation message

artclass.cpp: In lambda function:
artclass.cpp:84:78: warning: narrowing conversion of '(&(&(& grid)->std::vector<std::vector<std::array<int, 3> > >::operator[](((std::vector<std::vector<std::array<int, 3> > >::size_type)i)))->std::vector<std::array<int, 3> >::operator[](((std::vector<std::array<int, 3> >::size_type)j)))->std::array<int, 3>::operator[](0)' from 'std::array<int, 3>::value_type' {aka 'int'} to 'double' [-Wnarrowing]
   84 |                 cnt += is_green({grid[i][j][0], grid[i][j][1], grid[i][j][2]});
      |                                                                              ^
artclass.cpp:84:78: warning: narrowing conversion of '(&(&(& grid)->std::vector<std::vector<std::array<int, 3> > >::operator[](((std::vector<std::vector<std::array<int, 3> > >::size_type)i)))->std::vector<std::array<int, 3> >::operator[](((std::vector<std::array<int, 3> >::size_type)j)))->std::array<int, 3>::operator[](1)' from 'std::array<int, 3>::value_type' {aka 'int'} to 'double' [-Wnarrowing]
artclass.cpp:84:78: warning: narrowing conversion of '(&(&(& grid)->std::vector<std::vector<std::array<int, 3> > >::operator[](((std::vector<std::vector<std::array<int, 3> > >::size_type)i)))->std::vector<std::array<int, 3> >::operator[](((std::vector<std::array<int, 3> >::size_type)j)))->std::array<int, 3>::operator[](2)' from 'std::array<int, 3>::value_type' {aka 'int'} to 'double' [-Wnarrowing]
artclass.cpp: In function 'int style(int, int, int (*)[500], int (*)[500], int (*)[500])':
artclass.cpp:184:12: warning: unused variable 'p' [-Wunused-variable]
  184 |     double p = get_green();
      |            ^
artclass.cpp:185:12: warning: unused variable 'p2' [-Wunused-variable]
  185 |     double p2 = get_granularity();
      |            ^~
# Verdict Execution time Memory Grader output
1 Correct 59 ms 9564 KB Output is correct
2 Correct 68 ms 10844 KB Output is correct
3 Correct 48 ms 7764 KB Output is correct
4 Correct 71 ms 11012 KB Output is correct
5 Correct 76 ms 11232 KB Output is correct
6 Correct 67 ms 10180 KB Output is correct
7 Correct 81 ms 10080 KB Output is correct
8 Correct 87 ms 11948 KB Output is correct
9 Correct 82 ms 10820 KB Output is correct
10 Incorrect 59 ms 10096 KB Output isn't correct
11 Correct 79 ms 10996 KB Output is correct
12 Correct 70 ms 9728 KB Output is correct
13 Incorrect 61 ms 10220 KB Output isn't correct
14 Correct 83 ms 11668 KB Output is correct
15 Correct 69 ms 9580 KB Output is correct
16 Correct 23 ms 7500 KB Output is correct
17 Incorrect 54 ms 9844 KB Output isn't correct
18 Correct 69 ms 10988 KB Output is correct
19 Correct 75 ms 10412 KB Output is correct
20 Correct 73 ms 11076 KB Output is correct
21 Correct 75 ms 10316 KB Output is correct
22 Correct 76 ms 10988 KB Output is correct
23 Incorrect 42 ms 8972 KB Output isn't correct
24 Incorrect 71 ms 10984 KB Output isn't correct
25 Correct 75 ms 10948 KB Output is correct
26 Correct 78 ms 11480 KB Output is correct
27 Incorrect 67 ms 10052 KB Output isn't correct
28 Correct 79 ms 10692 KB Output is correct
29 Correct 72 ms 10016 KB Output is correct
30 Correct 71 ms 9856 KB Output is correct
31 Correct 80 ms 11096 KB Output is correct
32 Correct 60 ms 8900 KB Output is correct
33 Correct 60 ms 8668 KB Output is correct
34 Correct 84 ms 11716 KB Output is correct
35 Correct 85 ms 12088 KB Output is correct
36 Incorrect 76 ms 11008 KB Output isn't correct
37 Correct 92 ms 11972 KB Output is correct
38 Incorrect 82 ms 11808 KB Output isn't correct
39 Correct 83 ms 11068 KB Output is correct
40 Correct 64 ms 10192 KB Output is correct
41 Correct 79 ms 10692 KB Output is correct
42 Incorrect 76 ms 11284 KB Output isn't correct
43 Correct 70 ms 10704 KB Output is correct
44 Incorrect 76 ms 10564 KB Output isn't correct
45 Correct 82 ms 10692 KB Output is correct
46 Correct 51 ms 7620 KB Output is correct
47 Correct 60 ms 8864 KB Output is correct
48 Correct 71 ms 10884 KB Output is correct
49 Correct 64 ms 9076 KB Output is correct
50 Correct 20 ms 5060 KB Output is correct
51 Correct 62 ms 9668 KB Output is correct
52 Correct 75 ms 10884 KB Output is correct
53 Correct 77 ms 10712 KB Output is correct
54 Correct 93 ms 12116 KB Output is correct
55 Correct 59 ms 8516 KB Output is correct
56 Correct 80 ms 10920 KB Output is correct
57 Correct 81 ms 10692 KB Output is correct
58 Correct 53 ms 9716 KB Output is correct
59 Correct 69 ms 9904 KB Output is correct
60 Correct 50 ms 7692 KB Output is correct
61 Correct 43 ms 6984 KB Output is correct
62 Correct 50 ms 9628 KB Output is correct
63 Correct 69 ms 10948 KB Output is correct
64 Correct 67 ms 10384 KB Output is correct
65 Correct 75 ms 10908 KB Output is correct
66 Correct 49 ms 7632 KB Output is correct
67 Correct 73 ms 10236 KB Output is correct
68 Correct 75 ms 9804 KB Output is correct
69 Correct 48 ms 9368 KB Output is correct
70 Incorrect 48 ms 8004 KB Output isn't correct
71 Correct 85 ms 12060 KB Output is correct
72 Correct 86 ms 11844 KB Output is correct
73 Correct 75 ms 10964 KB Output is correct
74 Correct 82 ms 11588 KB Output is correct
75 Correct 75 ms 11280 KB Output is correct
76 Correct 77 ms 10316 KB Output is correct
77 Correct 79 ms 11480 KB Output is correct
78 Correct 60 ms 10180 KB Output is correct
79 Incorrect 93 ms 12064 KB Output isn't correct
80 Correct 69 ms 10356 KB Output is correct
81 Correct 57 ms 9892 KB Output is correct
82 Correct 56 ms 9976 KB Output is correct
83 Correct 76 ms 10576 KB Output is correct
84 Incorrect 89 ms 11972 KB Output isn't correct
85 Correct 76 ms 10656 KB Output is correct
86 Correct 86 ms 12076 KB Output is correct
87 Incorrect 73 ms 11016 KB Output isn't correct
88 Correct 67 ms 10820 KB Output is correct
89 Correct 77 ms 11044 KB Output is correct
90 Correct 73 ms 10308 KB Output is correct
91 Correct 69 ms 10080 KB Output is correct
92 Correct 69 ms 9924 KB Output is correct
93 Correct 76 ms 10772 KB Output is correct
94 Correct 86 ms 11956 KB Output is correct
95 Correct 79 ms 10276 KB Output is correct
96 Correct 71 ms 9780 KB Output is correct
97 Correct 73 ms 10856 KB Output is correct
98 Correct 92 ms 11952 KB Output is correct
99 Correct 40 ms 6760 KB Output is correct
100 Correct 40 ms 6792 KB Output is correct
101 Correct 83 ms 11976 KB Output is correct
102 Incorrect 56 ms 9804 KB Output isn't correct