제출 #1212947

#제출 시각아이디문제언어결과실행 시간메모리
1212947LemserTeams (IOI15_teams)C++20
77 / 100
2781 ms589824 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; } struct SegTree { SegTree *left, *right; int l, r, s=0; SegTree () { } SegTree (int l, int r): l(l), r(r) { } SegTree *update(int i, int v){ if(r<i || l>i)return this; SegTree *t = new SegTree(l, r); if(l==r) t->s = s+v; else{ t->left=left->update(i, v); t->right=right->update(i,v); t->s = t->left->s + t->right->s; } return t; } int query (int i, int j){ if (l>j || r<i) return 0; if (l>=i && r<=j) return s; return right->query(i, j)+left->query(i,j); } }; void constr (SegTree *&st, ll l, ll r) { if (l == r) return; ll m = (l+r)/2; st->left = new SegTree(l, m); st->right = new SegTree(m+1, r); constr(st->left, l, m); constr(st->right, m+1, r); } const int N = 5e5 + 7; SegTree *st[N]; vector<int> ps[N]; int n; void init(int N, int a[], int b[]) { n = N; st[0] = new SegTree(0, n); constr(st[0], 0, n); fo (i, n) ps[a[i]].pb(b[i]); fore (x, 1, n+1) { st[x] = st[x-1]->update(0, 0); for (int y: ps[x]) { st[x] = st[x]->update(y, +1); } } } int rectangles (int x1, int x2, int y1, int y2) { int ans = st[x2]->query(y1, y2); if (x1 > 0) ans -= st[x1-1]->query(y1, y2); return ans; } int isec (int k1, int k2) { assert(k1 <= k2); if (k1 == k2) return 0ll; return rectangles (k1+1, k2, k2, n); } int can(int m, int k[]) { sort(k, k+m); if (accumulate(k, k+m, 0ll) > n) return 0; if (m >= 500) { int r = 1; multiset<int> st; 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; } vector<int> dp(m, 0); fo (i, m) { // no elegir a nadie dp[i] = rectangles(0, k[i], k[i], n) - k[i]; fo (j, i) { dp[i] = min(dp[i], dp[j] + isec(k[j], k[i]) - k[i]); } if (dp[i] < 0) return 0; } return 1; }

컴파일 시 표준 에러 (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...