#include using namespace std; using ll = long long; using ld = long double; using V = vector; using Vll = vector; using Vld = vector; using Vbo = vector; using VV = vector; using VVll = vector; using VVld = vector; using VVbo = vector; using P = pair; using Pll = pair; using Pld = pair; #define rep2(i, m, n) for(ll i=int(m); i=int(n); --i) #define rep(i, n) rep2(i, 0, n) #define drep(i, n) drep2(i, n, 0) #define all(a) a.begin(), a.end() struct fast_ios { fast_ios(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); }; } fast_ios_; template inline bool chmin(T &a, T b) { if (a > b) { a = b; return true; } return false; } template inline bool chmax(T &a, T b) { if (a < b) { a = b; return true; } return false; } template istream &operator>>(istream &is, pair &p) { is >> p.first >> p.second; return is; } template ostream &operator<<(ostream &os, const pair &p) { os << "(" << p.first << ", " << p.second << ")"; return os; } template istream &operator>>(istream &is, vector &v) { for (auto &e : v) is >> e; return is; } template ostream &operator<<(ostream &os, const vector &v) { for (auto &e : v) os << e << " "; return os; } template inline int count_between(vector &a, T l, T r) { return lower_bound(all(a), r) - lower_bound(all(a), l); } // [l, r) inline int Log2(ll x) { int k; for (k = 0; x > 0; ++k) x >>= 1; return k; } // number of binary digits const int INF = 1<<30; const ll INFll = 1ll<<62; const ld EPS = 1e-10; const int MOD = int(1e9)+7; using VVV = vector; int main() { ll n; cin >> n; VV a(n, V(3)); cin >> a; auto f = [&] (int i1, int j1, int i2, int j2) { int x1 = a[i1][(j1+1)%3]; int y1 = a[i1][(j1+2)%3]; int x2 = a[i2][(j2+1)%3]; int y2 = a[i2][(j2+2)%3]; if (x1 > y1) swap(x1, y1); if (x2 > y2) swap(x2, y2); return (x1 >= x2 && y1 >= y2); }; int N = 1<>i1)&1)) continue; if ((S>>i2)&1) continue; if (!f(i1, j1, i2, j2)) continue; int x = dp[S][i1][j1] + a[i2][j2]; chmax(dp[S+(1<