Submission #699832

# Submission time Handle Problem Language Result Execution time Memory
699832 2023-02-18T05:40:30 Z vjudge1 Fences (JOI18_fences) C++17
Compilation error
0 ms 0 KB
#include<bits/stdc++.h>

#pragma GCC target("avx2")
#pragma GCC optimization("O3")
#pragma GCC optimization("unroll-loops")
#pragma comment(linker, "/stack:200000000")
#pragma GCC optimize("Ofast")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")

using namespace std;
 
#define fast ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define file(s) freopen(s".in", "r", stdin);freopen(s".out", "w", stdout);
#define all(v) v.begin(),v.end()
#define rall(v) v.rbegin(),v.rend()
#define pb push_back
#define ppb pop_back
#define ft first
#define sd second
#define ll long long
#define pll pair<ll,ll>
const int N = 1e6 + 5;
const int M = 1e7 + 5;
const int B = 316;
const ll mod = 998244353;
const ll inf = 3e18;

struct Mat { vector<vector<ll>> mt = vector<vector<ll>> (15, vector<ll>(15, 0)); Mat operator *(const Mat& other) { Mat c; for (int i = 0; i <= 10; ++ i) { for (int j = 0; j <= 10; ++ j) { for (int k = 0; k <= 10; ++ k) { (c.mt[i][k] += mt[i][j] * other.mt[j][k]) %= mod; } } } return c; } };
ll binmul(ll x, ll ti, ll m) { ll res = 0;while (ti){if(ti & 1)res += x;x += x;ti >>= 1; x %= m; res %= m;} return res;}
ll binpow(ll x, ll ti, ll m) { ll res = 1;while (ti){if(ti & 1)res=binmul(res,x,m);x=binmul(x,x,m);ti >>= 1; x %= m; res %= m;} return res;}
ll nok(ll a, ll b) { return (a*b)/__gcd(abs(a),abs(b)) * (a*b > 0 ? 1 : -1); }
bool odd(ll n) { return (n % 2 == 1); }
bool even(ll n) { return (n % 2 == 0); }

ll n;
long double s, x1[N], y1[N], x2[N], y2[N];

long double tabu(long double x, long double y, long double x2, long double y2, long double x3, long double y3) {
    long double base = sqrt(pow(x3 - x2, 2) + pow(y3 - y2, 2));
    long double s1 = sqrt(pow(x - x2, 2) + pow(y - y2, 2));
    long double s2 = sqrt(pow(x - x3, 2) + pow(y - y3, 2));
    long double p = (base + s1 + s2) * 0.5;
    long double area = sqrt(p * (p - base) * (p - s1) * (p - s2));
    long double h = (area * 2.0) / base;
    long double mx = max({s1, s2});
    if (mx == s1 && s1*s1 > s2*s2 + base*base) return s2;
    else if (mx == s2 && s2*s2 > s1*s1+base*base) return s1;
    else return h;
}

const void solve() {
    cin >> n >> s;
    for (int i = 1; i <= n; ++ i) cin >> x1[i] >> y1[i] >> x2[i] >> y2[i];
    long double ans = s * 8;
    if (n == 1) {
        if (x1[1] <= -s && x2[1] <= -s) {
            if (y1[1] > y2[1]) swap(x1[1], x2[1]), swap(y1[1], y2[1]);
            long double dis1 = tabu(-s, -s, x1[1], y1[1], x2[1], y2[1]);
            long double dis2 = tabu(-s, s, x1[1], y1[1], x2[1], y2[1]);
            ans = min(ans, s * 6 + dis1 + dis2);
        } 
        if (x1[1] >= s && x2[1] >= s) {
            if (y1[1] > y2[1]) swap(x1[1], x2[1]), swap(y1[1], y2[1]);
            long double dis1 = tabu(s, s, x1[1], y1[1], x2[1], y2[1]);
            long double dis2 = tabu(s, -s, x1[1], y1[1], x2[1], y2[1]);
            ans = min(ans, s * 6 + dis1 + dis2);
        }
        if (y1[1] <= -s && y2[1] <= -s) {
            if (x1[1] > x2[1]) swap(x1[1], x2[1]), swap(y1[1], y2[1]);
            long double dis1 = tabu(-s, -s, x1[1], y1[1], x2[1], y2[1]);
            long double dis2 = tabu(s, -s, x1[1], y1[1], x2[1], y2[1]);
            ans = min(ans, s * 6 + dis1 + dis2);
        }
        if (y1[1] >= s && y2[1] >= s) {
            if (x1[1] > x2[1]) swap(x1[1], x2[1]), swap(y1[1], y2[1]);
            long double dis1 = tabu(-s, s, x1[1], y1[1], x2[1], y2[1]);
            long double dis2 = tabu(s, s, x1[1], y1[1], x2[1], y2[1]);
            ans = min(ans, s * 6 + dis1 + dis2);
        }
        cout << fixed << setprecision(10) << ans;
        return;
    }
}

int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0); cout.tie(0);
    srand(time(NULL));
    // file("cowsignal");

    int tt = 1;
    // cin >> tt;

    for (int i = 1; i <= tt; ++ i) {
        // cout << "Case " << i << ": ";
        solve();
    }

    return 0;
}

Compilation message

fences.cpp:4: warning: ignoring '#pragma GCC optimization' [-Wunknown-pragmas]
    4 | #pragma GCC optimization("O3")
      | 
fences.cpp:5: warning: ignoring '#pragma GCC optimization' [-Wunknown-pragmas]
    5 | #pragma GCC optimization("unroll-loops")
      | 
fences.cpp:6: warning: ignoring '#pragma comment ' [-Wunknown-pragmas]
    6 | #pragma comment(linker, "/stack:200000000")
      | 
fences.cpp:36:27: error: 'long double y1 [1000005]' redeclared as different kind of entity
   36 | long double s, x1[N], y1[N], x2[N], y2[N];
      |                           ^
In file included from /usr/include/features.h:461,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/os_defines.h:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/c++config.h:518,
                 from /usr/include/c++/10/cassert:43,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:33,
                 from fences.cpp:1:
/usr/include/x86_64-linux-gnu/bits/mathcalls.h:221:1: note: previous declaration 'double y1(double)'
  221 | __MATHCALL (y1,, (_Mdouble_));
      | ^~~~~~~~~~
fences.cpp: In function 'const void solve()':
fences.cpp:53:55: warning: pointer to a function used in arithmetic [-Wpointer-arith]
   53 |     for (int i = 1; i <= n; ++ i) cin >> x1[i] >> y1[i] >> x2[i] >> y2[i];
      |                                                       ^
fences.cpp:53:48: error: no match for 'operator>>' (operand types are 'std::basic_istream<char>::__istream_type' {aka 'std::basic_istream<char>'} and 'double(double) noexcept')
   53 |     for (int i = 1; i <= n; ++ i) cin >> x1[i] >> y1[i] >> x2[i] >> y2[i];
      |                                   ~~~~~~~~~~~~ ^~ ~~~~~
      |                                       |               |
      |                                       |               double(double) noexcept
      |                                       std::basic_istream<char>::__istream_type {aka std::basic_istream<char>}
In file included from /usr/include/c++/10/sstream:38,
                 from /usr/include/c++/10/complex:45,
                 from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from fences.cpp:1:
/usr/include/c++/10/istream:120:7: note: candidate: 'std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(std::basic_istream<_CharT, _Traits>::__istream_type& (*)(std::basic_istream<_CharT, _Traits>::__istream_type&)) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_istream<_CharT, _Traits>::__istream_type = std::basic_istream<char>]' (near match)
  120 |       operator>>(__istream_type& (*__pf)(__istream_type&))
      |       ^~~~~~~~
/usr/include/c++/10/istream:120:7: note:   conversion of argument 1 would be ill-formed:
fences.cpp:53:55: error: invalid conversion from 'double (*)(double) noexcept' to 'std::basic_istream<char>::__istream_type& (*)(std::basic_istream<char>::__istream_type&)' {aka 'std::basic_istream<char>& (*)(std::basic_istream<char>&)'} [-fpermissive]
   53 |     for (int i = 1; i <= n; ++ i) cin >> x1[i] >> y1[i] >> x2[i] >> y2[i];
      |                                                   ~~~~^
      |                                                       |
      |                                                       double (*)(double) noexcept
In file included from /usr/include/c++/10/sstream:38,
                 from /usr/include/c++/10/complex:45,
                 from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from fences.cpp:1:
/usr/include/c++/10/istream:124:7: note: candidate: 'std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(std::basic_istream<_CharT, _Traits>::__ios_type& (*)(std::basic_istream<_CharT, _Traits>::__ios_type&)) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_istream<_CharT, _Traits>::__istream_type = std::basic_istream<char>; std::basic_istream<_CharT, _Traits>::__ios_type = std::basic_ios<char>]' (near match)
  124 |       operator>>(__ios_type& (*__pf)(__ios_type&))
      |       ^~~~~~~~
/usr/include/c++/10/istream:124:7: note:   conversion of argument 1 would be ill-formed:
fences.cpp:53:55: error: invalid conversion from 'double (*)(double) noexcept' to 'std::basic_istream<char>::__ios_type& (*)(std::basic_istream<char>::__ios_type&)' {aka 'std::basic_ios<char>& (*)(std::basic_ios<char>&)'} [-fpermissive]
   53 |     for (int i = 1; i <= n; ++ i) cin >> x1[i] >> y1[i] >> x2[i] >> y2[i];
      |                                                   ~~~~^
      |                                                       |
      |                                                       double (*)(double) noexcept
In file included from /usr/include/c++/10/sstream:38,
                 from /usr/include/c++/10/complex:45,
                 from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from fences.cpp:1:
/usr/include/c++/10/istream:131:7: note: candidate: 'std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(std::ios_base& (*)(std::ios_base&)) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_istream<_CharT, _Traits>::__istream_type = std::basic_istream<char>]' (near match)
  131 |       operator>>(ios_base& (*__pf)(ios_base&))
      |       ^~~~~~~~
/usr/include/c++/10/istream:131:7: note:   conversion of argument 1 would be ill-formed:
fences.cpp:53:55: error: invalid conversion from 'double (*)(double) noexcept' to 'std::ios_base& (*)(std::ios_base&)' [-fpermissive]
   53 |     for (int i = 1; i <= n; ++ i) cin >> x1[i] >> y1[i] >> x2[i] >> y2[i];
      |                                                   ~~~~^
      |                                                       |
      |                                                       double (*)(double) noexcept
In file included from /usr/include/c++/10/sstream:38,
                 from /usr/include/c++/10/complex:45,
                 from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from fences.cpp:1:
/usr/include/c++/10/istream:168:7: note: candidate: 'std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(bool&) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_istream<_CharT, _Traits>::__istream_type = std::basic_istream<char>]' (near match)
  168 |       operator>>(bool& __n)
      |       ^~~~~~~~
/usr/include/c++/10/istream:168:7: note:   conversion of argument 1 would be ill-formed:
fences.cpp:53:55: error: cannot bind non-const lvalue reference of type 'bool&' to an rvalue of type 'bool'
   53 |     for (int i = 1; i <= n; ++ i) cin >> x1[i] >> y1[i] >> x2[i] >> y2[i];
      |                                                   ~~~~^
In file included from /usr/include/c++/10/sstream:38,
                 from /usr/include/c++/10/complex:45,
                 from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from fences.cpp:1:
/usr/include/c++/10/istream:172:7: note: candidate: 'std::basic_istream<_CharT, _Traits>& std::basic_istream<_CharT, _Traits>::operator>>(short int&) [with _CharT = char; _Traits = std::char_traits<char>]' (near match)
  172 |       operator>>(short& __n);
      |       ^~~~~~~~
/usr/include/c++/10/istream:172:7: note:   conversion of argument 1 would be ill-formed:
fences.cpp:53:55: error: invalid conversion from 'double (*)(double) noexcept' to 'short int' [-fpermissive]
   53 |     for (int i = 1; i <= n; ++ i) cin >> x1[i] >> y1[i] >> x2[i] >> y2[i];
      |                                                   ~~~~^
      |                                                       |
      |                                                       double (*)(double) noexcept
fences.cpp:53:55: error: cannot bind rvalue '(short int)(y1 + ((sizetype)i))' to 'short int&'
In file included from /usr/include/c++/10/sstream:38,
                 from /usr/include/c++/10/complex:45,
                 from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from fences.cpp:1:
/usr/include/c++/10/istream:175:7: note: candidate: 'std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(short unsigned int&) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_istream<_CharT, _Traits>::__istream_type = std::basic_istream<char>]' (near match)
  175 |       operator>>(unsigned short& __n)
      |       ^~~~~~~~
/usr/include/c++/10/istream:175:7: note:   conversion of argument 1 would be ill-formed:
fences.cpp:53:55: error: invalid conversion from 'double (*)(double) noexcept' to 'short unsigned int' [-fpermissive]
   53 |     for (int i = 1; i <= n; ++ i) cin >> x1[i] >> y1[i] >> x2[i] >> y2[i];
      |                                                   ~~~~^
      |                                                       |
      |                                                       double (*)(double) noexcept
fences.cpp:53:55: error: cannot bind rvalue '(short unsigned int)(y1 + ((sizetype)i))' to 'short unsigned int&'
In file included from /usr/include/c++/10/sstream:38,
                 from /usr/include/c++/10/complex:45,
                 from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from fences.cpp:1:
/usr/include/c++/10/istream:179:7: note: candidate: 'std::basic_istream<_CharT, _Traits>& std::basic_istream<_CharT, _Traits>::operator>>(int&) [with _CharT = char; _Traits = std::char_traits<char>]' (near match)
  179 |       operator>>(int& __n);
      |       ^~~~~~~~
/usr/include/c++/10/istream:179:7: note:   conversion of argument 1 would be ill-formed:
fences.cpp:53:55: error: invalid conversion from 'double (*)(double) noexcept' to 'int' [-fpermissive]
   53 |     for (int i = 1; i <= n; ++ i) cin >> x1[i] >> y1[i] >> x2[i] >> y2[i];
      |                                                   ~~~~^
      |                                                       |
      |                                                       double (*)(double) noexcept
fences.cpp:53:55: error: cannot bind rvalue '(int)(y1 + ((sizetype)i))' to 'int&'
In file included from /usr/include/c++/10/sstream:38,
                 from /usr/include/c++/10/complex:45,
                 from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from fences.cpp:1:
/usr/include/c++/10/istream:182:7: note: candidate: 'std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(unsigned int&) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_istream<_CharT, _Traits>::__istream_type = std::basic_istream<char>]' (near match)
  182 |       operator>>(unsigned int& __n)
      |       ^~~~~~~~
/usr/include/c++/10/istream:182:7: note:   conversion of argument 1 would be ill-formed:
fences.cpp:53:55: error: invalid conversion from 'double (*)(double) noexcept' to 'unsigned int' [-fpermissive]
   53 |     for (int i = 1; i <= n; ++ i) cin >> x1[i] >> y1[i] >> x2[i] >> y2[i];
      |                                                   ~~~~^
      |                                                       |
      |                                                       double (*)(double) noexcept
fences.cpp:53:55: error: cannot bind rvalue '(unsigned int)(y1 + ((sizetype)i))' to 'unsigned int&'
In file included from /usr/include/c++/10/sstream:38,
                 from /usr/include/c++/10/complex:45,
                 from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from fences.cpp:1:
/usr/include/c++/10/istream:186:7: note: candidate: 'std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(long int&) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_istream<_CharT, _Traits>::__istream_type = std::basic_istream<char>]' (near match)
  186 |       operator>>(long& __n)
      |       ^~~~~~~~
/usr/include/c++/10/istream:186:7: note:   conversion of argument 1 would be ill-formed:
fences.cpp:53:55: error: invalid conversion from 'double (*)(double) noexcept' to 'long int' [-fpermissive]
   53 |     for (int i = 1; i <= n; ++ i) cin >> x1[i] >> y1[i] >> x2[i] >> y2[i];
      |                                                   ~~~~^
      |                                                       |
      |                                                       double (*)(double) noexcept
fences.cpp:53:55: error: cannot bind rvalue '(long int)(y1 + ((sizetype)i))' to 'long int&'
In file included from /usr/include/c++/10/sstream:38,
                 from /usr/include/c++/10/complex:45,
                 from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from fences.cpp:1:
/usr/include/c++/10/istream:190:7: note: candidate: 'std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(long unsigned int&) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_istream<_CharT, _Traits>::__istream_type = std::basic_istream<char>]' (near match)
  190 |       operator>>(unsigned long& __n)
      |       ^~~~~~~~
/usr/include/c++/10/istream:190:7: note:   conversion of argument 1 would be ill-formed:
fences.cpp:53:55: error: invalid conversion from 'double (*)(double) noexcept' to 'long unsigned int' [-fpermissive]
   53 |     for (int i = 1; i <= n; ++ i) cin >> x1[i] >> y1[i] >> x2[i] >> y2[i];
      |                                                   ~~~~^
      |                                                       |
      |                                                       double (*)(double) noexcept
fences.cpp:53:55: error: cannot bind rvalue '(long unsigned int)(y1 + ((sizetype)i))' to 'long unsigned int&'
In file included from /usr/include/c++/10/sstream:38,
                 from /usr/include/c++/10/complex:45,
                 from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from fences.cpp:1:
/usr/include/c++/10/istream:195:7: note: candidate: 'std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(long long int&) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_istream<_CharT, _Traits>::__istream_type = std::basic_istream<char>]' (near match)
  195 |       operator>>(long long& __n)
      |       ^~~~~~~~
/usr/include/c++/10/istream:195:7: note:   conversion of argument 1 would be ill-formed:
fences.cpp:53:55: error: invalid conversion from 'double (*)(double) noexcept' to 'long long int' [-fpermissive]
   53 |     for (int i = 1; i <= n; ++ i) cin >> x1[i] >> y1[i] >> x2[i] >> y2[i];
      |                                                   ~~~~^
      |                                                       |
      |                                                       double (*)(double) noexcept
fences.cpp:53:55: error: cannot bind rvalue '(long long int)(y1 + ((sizetype)i))' to 'long long int&'
In file included from /usr/include/c++/10/sstream:38,
                 from /usr/include/c++/10/complex:45,
                 from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from fences.cpp:1:
/usr/include/c++/10/istream:199:7: note: candidate: 'std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(long long unsigned int&) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_istream<_CharT, _Traits>::__istream_type = std::basic_istream<char>]' (near match)
  199 |       operator>>(unsigned long long& __n)
      |       ^~~~~~~~
/usr/include/c++/10/istream:199:7: note:   conversion of argument 1 would be ill-formed:
fences.cpp:53:55: error: invalid conversion from 'double (*)(double) noexcept' to 'long long unsigned int' [-fpermissive]
   53 |     for (int i = 1; i <= n; ++ i) cin >> x1[i] >> y1[i] >> x2[i] >> y2[i];
      |                                                   ~~~~^
      |                                                       |
      |                                                       double (*)(double) noexcept
fences.cpp:53:55: error: cannot bind rvalue '(long long unsigned int)(y1 + ((sizetype)i))' to 'long long unsigned int&'
In file included from /usr/include/c++/10/sstream:38,
                 from /usr/include/c++/10/complex:45,
                 from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from fences.cpp:1:
/usr/include/c++/10/istream:235:7: note: candidate: 'std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(void*&) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_istream<_CharT, _Traits>::__istream_type = std::basic_istream<char>]' (near match)
  235 |       operator>>(void*& __p)
      |       ^~~~~~~~
/usr/include/c++/10/istream:235:7: note:   conversion of argument 1 would be ill-formed:
fences.cpp:53:55: error: invalid conversion from 'double (*)(double) noexcept' to 'void*' [-fpermissive]
   53 |     for (int i = 1; i <= n; ++ i) cin >> x1[i] >> y1[i] >> x2[i] >> y2[i];
      |                                                   ~~~~^
      |                                                       |
      |                                                       double (*)(double) noexcept
fences.cpp:53:55: error: cannot bind rvalue '(void*)(y1 + ((sizetype)i))' to 'void*&'
In file included from /usr/include/c++/10/sstream:38,
                 from /usr/include/c++/10/complex:45,
                 from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from fences.cpp:1:
/usr/include/c++/10/istream:214:7: note: candidate: 'std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(float&) [with _CharT = c