Submission #600182

#TimeUsernameProblemLanguageResultExecution timeMemory
600182OttoTheDinoMixture (BOI20_mixture)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; #define rep(i,s,e) for (int i = s; i <= e; ++i) #define rrep(i,s,e) for (int i = s; i >= e; --i) #define pb push_back #define pf push_front #define fi first #define se second #define all(a) a.begin(), a.end() #define len(a) (int)a.size() typedef long long ll; typedef pair<int, int> ii; typedef pair<ll, ll> pll; typedef vector<ii> vii; typedef vector<int> vi; typedef vector<double> vd; typedef vector<string> vs; typedef vector<ll> vll; const double eps = 1e-8, pi = acos(-1); const int mx = 1e5; bool eq (double a, double b) { return abs(a-b)<=5*eps; } double ang[mx+1] = {}; int bud[mx+1] = {}, b = 0; set<pair<double,int>> st2; void do_two (int id) { double poss[5] = {fmod(ang[id]+pi+eps,2*pi), ang[id]+pi-eps, fmod(ang[id]+pi-eps,2*pi), fmod(ang[id]+pi,2*pi)+eps, fmod(ang[id]+pi,2*pi)-eps}; rep (i,0,3) { double pos = poss[i]; auto it = st2.lower_bound({pos, 0}); if (it!=st2.end() & bud[id] = (*it).se; bud[(*it).se] = id; st2.erase(it); b++; return; } } st2.insert({ang[id], id}); } int main() { ios::sync_with_stdio(0); cin.tie(0); double S, P, G; cin >> S >> P >> G; double X = S/(S+P+G), Y = P/(S+P+G); int n; cin >>n; int id = 1, a=0, p[n+1] = {}; multiset<double> st3; rep (i,1,n) { char tp; cin >> tp; if (tp=='A') { double Si, Pi, Gi; cin >> Si >> Pi >> Gi; double x = Si/(Si+Pi+Gi), y = Pi/(Si+Pi+Gi); if (eq(X,x) && eq(Y,y)) { a++; p[id] = 1; } else { ang[id] = fmod(pi+atan2(y-Y, x-X),2*pi); st3.insert(ang[id]); do_two(id); } ++id; } else { int x; cin >> x; st3.erase(ang[x]); a -= p[x]; if (bud[x]) { b--; bud[bud[x]] = 0; do_two(bud[x]); bud[x] = 0; } } bool c = 0; if (len(st3)>2) { double un = (*st3.begin()); double dos = (*--st3.upper_bound(un+pi)); double tres = (*--st3.upper_bound(dos+pi)); if (max(dos-un,max(tres-dos,2*pi+un-tres))<=pi) c = 1; } if (a) cout << "1\n"; else if (b) cout << "2\n"; else if (c) cout << "3\n"; else cout << "0\n"; } return 0; }

Compilation message (stderr)

Mixture.cpp: In function 'void do_two(int)':
Mixture.cpp:43:23: warning: suggest parentheses around comparison in operand of '&' [-Wparentheses]
   43 |                 if (it!=st2.end() &
      |                     ~~^~~~~~~~~~~
Mixture.cpp:43:35: error: lvalue required as left operand of assignment
   43 |                 if (it!=st2.end() &
      |                     ~~~~~~~~~~~~~~^
   44 |                     bud[id] = (*it).se;
      |                     ~~~~~~~        
Mixture.cpp:45:39: error: expected ')' before ';' token
   45 |                     bud[(*it).se] = id;
      |                                       ^
      |                                       )
Mixture.cpp:43:20: note: to match this '('
   43 |                 if (it!=st2.end() &
      |                    ^
Mixture.cpp:45:35: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
   45 |                     bud[(*it).se] = id;
      |                     ~~~~~~~~~~~~~~^~~~
Mixture.cpp:43:17: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
   43 |                 if (it!=st2.end() &
      |                 ^~
Mixture.cpp:46:21: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
   46 |                     st2.erase(it);
      |                     ^~~
Mixture.cpp: At global scope:
Mixture.cpp:52:13: error: 'st2' does not name a type
   52 |             st2.insert({ang[id], id});
      |             ^~~
Mixture.cpp:52:37: error: expected unqualified-id before ')' token
   52 |             st2.insert({ang[id], id});
      |                                     ^
Mixture.cpp:53:9: error: expected declaration before '}' token
   53 |         }
      |         ^