#include using namespace std; using ll = long long; // #define int ll using PII = pair; #define FOR(i, a, n) for (ll i = (ll)a; i < (ll)n; ++i) #define REP(i, n) FOR(i, 0, n) #define ALL(x) x.begin(), x.end() template T &chmin(T &a, const T &b) { return a = min(a, b); } template T &chmax(T &a, const T &b) { return a = max(a, b); } template bool IN(T a, T b, T x) { return a<=x&&x T ceil(T a, T b) { return a/b + !!(a%b); } template vector make_v(size_t a) { return vector(a); } template auto make_v(size_t a,Ts... ts) { return vector(ts...))>(a,make_v(ts...)); } template typename enable_if::value==0>::type fill_v(T &t, const V &v) { t=v; } template typename enable_if::value!=0>::type fill_v(T &t, const V &v ) { for(auto &e:t) fill_v(e,v); } template ostream &operator <<(ostream& out,const pair& a){ out<<'('< istream& operator >> (istream& is, vector& vec){ for(T& x: vec) {is >> x;} return is; } template ostream &operator <<(ostream& out,const vector& a){ out<<'['; for(T i: a) {out<> n; vector v(n); REP(i, n) cin >> v[i].second >> v[i].first; sort(ALL(v), greater<>()); vector a(n), b(n); REP(i, n) { a[i] = v[i].second; b[i] = v[i].first; } ll m = n/3; vector> dp(n, vector(m+1, LLINF)); dp[0][0] = a[0]; dp[0][1] = 0; FOR(i, 1, n) REP(j, min(i+1,m)+1) { if(j) chmin(dp[i][j], dp[i-1][j-1]); chmin(dp[i][j], dp[i-1][j] + a[i] + b[i] * (i - j)); } cout << dp[n-1][m] << endl; return 0; }