Submission #121128

#TimeUsernameProblemLanguageResultExecution timeMemory
121128BTheroTriangles (CEOI18_tri)C++17
Compilation error
0 ms0 KiB
// Why am I so dumb? :c
// chrono::system_clock::now().time_since_epoch().count()

//#pragma GCC optimize("Ofast")
//#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")

#include<bits/stdc++.h>
#include<ext/pb_ds/assoc_container.hpp>
#include<ext/pb_ds/tree_policy.hpp>
#include"trilib.h"

#define pb push_back
#define mp make_pair

#define all(x) (x).begin(), (x).end()

#define fi first
#define se second

using namespace std;
using namespace __gnu_pbds;

typedef long long ll;   
template<typename T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;

const int MAXN = (int)4e4 + 5;

int pivot;

bool cmp(int a, int b) {
    return is_clockwise(pivot, a, b);    
}

void printVec(vector<int> V) {
    printf("Hull is:");

    for (int x : V) {
        printf(" %d", x);
    }

    printf("\n");
}

void solve() {
    int n = get_n();
    int ans = n;    

    for (pivot = 1; pivot <= n; ++pivot) {
        vector<int> idx, V;

        for (int j = 1; j <= n; ++j) {
            if (j != pivot) {
                idx.pb(j);
            }
        }    

        sort(all(idx), cmp);
        V.pb(pivot);
        V.pb(idx[0]);

        for (int i = 1; i < idx.size(); ++i) {
            while (V.size() >= 2 && !is_clockwise(V[V.size() - 2], V.back(), idx[i])) {
                V.pop_back();
            }

            V.pb(idx[i]);
        }

        bool good = 1;

        for (int i = 0; i < V.size(); ++i) {
            good &= is_clockwise(V[i], V[(i + 1) % V.size()], V[(i + 2) % V.size()]);
        }

        if (good) {
            ans = min(ans, V.size());
            //printVec(V);
            //give_answer(V.size());
            //return;
        }
    }

    give_answer(ans);
}

int main() {
    int tt = 1;

    while (tt--) {
        solve();
    }

    return 0;
}

Compilation message (stderr)

tri.cpp: In function 'void solve()':
tri.cpp:61:27: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
         for (int i = 1; i < idx.size(); ++i) {
                         ~~^~~~~~~~~~~~
tri.cpp:71:27: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
         for (int i = 0; i < V.size(); ++i) {
                         ~~^~~~~~~~~~
tri.cpp:76:36: error: no matching function for call to 'min(int&, std::vector<int>::size_type)'
             ans = min(ans, V.size());
                                    ^
In file included from /usr/include/c++/7/bits/specfun.h:45:0,
                 from /usr/include/c++/7/cmath:1914,
                 from /usr/include/x86_64-linux-gnu/c++/7/bits/stdc++.h:41,
                 from tri.cpp:7:
/usr/include/c++/7/bits/stl_algobase.h:195:5: note: candidate: template<class _Tp> constexpr const _Tp& std::min(const _Tp&, const _Tp&)
     min(const _Tp& __a, const _Tp& __b)
     ^~~
/usr/include/c++/7/bits/stl_algobase.h:195:5: note:   template argument deduction/substitution failed:
tri.cpp:76:36: note:   deduced conflicting types for parameter 'const _Tp' ('int' and 'std::vector<int>::size_type {aka long unsigned int}')
             ans = min(ans, V.size());
                                    ^
In file included from /usr/include/c++/7/bits/specfun.h:45:0,
                 from /usr/include/c++/7/cmath:1914,
                 from /usr/include/x86_64-linux-gnu/c++/7/bits/stdc++.h:41,
                 from tri.cpp:7:
/usr/include/c++/7/bits/stl_algobase.h:243:5: note: candidate: template<class _Tp, class _Compare> constexpr const _Tp& std::min(const _Tp&, const _Tp&, _Compare)
     min(const _Tp& __a, const _Tp& __b, _Compare __comp)
     ^~~
/usr/include/c++/7/bits/stl_algobase.h:243:5: note:   template argument deduction/substitution failed:
tri.cpp:76:36: note:   deduced conflicting types for parameter 'const _Tp' ('int' and 'std::vector<int>::size_type {aka long unsigned int}')
             ans = min(ans, V.size());
                                    ^
In file included from /usr/include/c++/7/algorithm:62:0,
                 from /usr/include/x86_64-linux-gnu/c++/7/bits/stdc++.h:65,
                 from tri.cpp:7:
/usr/include/c++/7/bits/stl_algo.h:3450:5: note: candidate: template<class _Tp> constexpr _Tp std::min(std::initializer_list<_Tp>)
     min(initializer_list<_Tp> __l)
     ^~~
/usr/include/c++/7/bits/stl_algo.h:3450:5: note:   template argument deduction/substitution failed:
tri.cpp:76:36: note:   mismatched types 'std::initializer_list<_Tp>' and 'int'
             ans = min(ans, V.size());
                                    ^
In file included from /usr/include/c++/7/algorithm:62:0,
                 from /usr/include/x86_64-linux-gnu/c++/7/bits/stdc++.h:65,
                 from tri.cpp:7:
/usr/include/c++/7/bits/stl_algo.h:3456:5: note: candidate: template<class _Tp, class _Compare> constexpr _Tp std::min(std::initializer_list<_Tp>, _Compare)
     min(initializer_list<_Tp> __l, _Compare __comp)
     ^~~
/usr/include/c++/7/bits/stl_algo.h:3456:5: note:   template argument deduction/substitution failed:
tri.cpp:76:36: note:   mismatched types 'std::initializer_list<_Tp>' and 'int'
             ans = min(ans, V.size());
                                    ^