Submission #1212971

#TimeUsernameProblemLanguageResultExecution timeMemory
1212971LemserTeams (IOI15_teams)C++20
77 / 100
4101 ms162584 KiB
#include "teams.h" #include <bits/stdc++.h> #pragma GCC optimize("Ofast, O3, unroll-loops") #pragma GCC target("avx2") #pragma GCC target("popcnt") using namespace std; using ll = long long; using ull = unsigned long long; using lld = long double; using ii = pair<int,int>; using pll = pair<ll, ll>; using vi = vector<int>; using vll = vector<ll>; using vii = vector<ii>; using vpll = vector<pll>; using vlld = vector<lld>; #define all(x) x.begin(),x.end() #define lsb(x) x&(-x) #define gcd(a,b) __gcd(a,b) #define sz(x) (int)x.size() #define mp make_pair #define pb push_back #define fi first #define se second #define fls cout.flush() #define fore(i, l, r) for (auto i = l; i < r; i++) #define fo(i, n) fore (i, 0, n) #define forex(i, r, l) for (auto i = r-1; i >= l; i--) #define ffo(i, n) forex (i, n, 0) bool cmin(ll &a, ll b) { if (b < a) { a=b; return 1; } return 0; } bool cmax(ll &a, ll b) { if (b > a) { a=b; return 1; } return 0; } const int N = 5e5 + 7; const int MAX = 15000000; int snd[MAX], leftnd[MAX], rightnd[MAX]; int n, rts[N], act_idx, dp[1005]; vector<int> ps[N]; int new_node (int l, int r) { int x = act_idx++; snd[x] = 0; leftnd[x] = -1; rightnd[x] = -1; return x; } int update (int id, int l, int r, int i, int v){ if (r<i || l>i) return id; auto t = new_node(l, r); int m = (l+r)/2; if (l == r) snd[t] = snd[id]+v; else{ leftnd[t] = update(leftnd[id], l, m, i, v); rightnd[t] = update(rightnd[id], m+1, r, i,v); snd[t] = snd[leftnd[t]] + snd[rightnd[t]]; } return t; } int query (int id, int l, int r, int i, int j){ if (l>j || r<i) return 0; if (l>=i && r<=j) return snd[id]; int m = (l+r)/2; return query(leftnd[id], l, m, i, j) + query(rightnd[id], m+1, r, i,j); } void constr (int id, int l, int r) { if (l == r) return; int m = (l+r)/2; leftnd[id] = new_node(l, m); rightnd[id] = new_node(m+1, r); constr(leftnd[id], l, m); constr(rightnd[id], m+1, r); } void init(int N, int a[], int b[]) { act_idx = 0; n = N; rts[0] = new_node(1, n); constr(rts[0], 1, n); fo (i, n) ps[a[i]].pb(b[i]); fore (x, 1, n+1) { rts[x] = update(rts[x-1], 1, n, 0, 0); for (int y: ps[x]) { rts[x] = update(rts[x], 1, n, y, +1); } } } // int rectangles (int x1, int x2, int y1, int y2) { // int ans = query(rts[x2], 1, n, y1, y2); // if (x1 > 0) ans -= query(rts[x1-1], 1, n, y1, y2); // return ans; // } multiset<int> st; int can(int m, int k[]) { sort(k, k+m); if (accumulate(k, k+m, 0ll) > n) return 0; if (m >= 450) { int r = 1; st.clear(); fo (i, m) { while (r <= k[i]) { for (int b: ps[r]) st.insert(b); r++; } while (st.size() && *st.begin() < k[i]) st.erase(st.find(*st.begin())); while (st.size() && k[i]--) st.erase(st.find(*st.begin())); if (k[i] > 0) return 0; } return 1; } fo (i, m) { // no elegir a nadie int r = query(rts[k[i]], 1, n, k[i], n); dp[i] = r - k[i]; fo (j, i) { if (k[i] != k[j]) { r = query(rts[k[i]], 1, n, k[i], n); r -= query(rts[k[j]], 1, n, k[i], n); } else r = 0; dp[i] = min(dp[i], dp[j] + r - k[i]); } if (dp[i] < 0) return 0; } return 1; }

Compilation message (stderr)

teams.cpp:3:47: warning: bad option '-f O3' to pragma 'optimize' [-Wpragmas]
    3 | #pragma GCC optimize("Ofast, O3, unroll-loops")
      |                                               ^
teams.cpp:3:47: warning: bad option '-f unroll-loops' to pragma 'optimize' [-Wpragmas]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
    4 | #pragma GCC target("avx2")
      |                          ^
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f O3' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
teams.cpp:4:26: warnin
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...