//#define _GLIBCXX_DEBUG #include #define rep(i, n) for(int i=0; i; using vs = vector; using vi = vector; using vvi = vector; template using PQ = priority_queue; template using PQG = priority_queue, greater >; const int INF = 100010001; const ll LINF = (ll)INF*INF*10; template inline bool chmax(T1 &a, T2 b) {return a < b && (a = b, true);} template inline bool chmin(T1 &a, T2 b) {return a > b && (a = b, true);} template istream &operator>>(istream &is, pair &p) { return is >> p.first >> p.second;} template ostream &operator<<(ostream &os, const pair &p) { return os << p.first << ' ' << p.second;} const int N = 2010; //head int n; P ab[N]; int pp[N]; int u, tada; ll dp[N][N]; bool comp(const P &a, const P &b) { return a.second > b.second; } int main() { ios::sync_with_stdio(false); cin.tie(0); cin >> n; rep(i, n) cin >> ab[i]; sort(ab, ab+n, comp); tada = n/3; u = n-tada; rep(i, n) { rep(j, min(u, i+1)) { if(j == i) dp[i+1][j+1] = dp[i][j] + ab[i].first + (ll)ab[i].second*i; else { dp[i+1][j+1] = min(dp[i][j+1], dp[i][j] + ab[i].first + (ll)ab[i].second*j); } } } cout << dp[n][u] << endl; }