Submission #2165395


Source Code Expand

// #include {{{
#include <iostream>
#include <cassert>
#include <cstring>
#include <cstdlib>
#include <cstdio>
#include <cctype>
#include <cmath>
#include <ctime>
#include <queue>
#include <set>
#include <map>
#include <stack>
#include <string>
#include <bitset>
#include <vector>
#include <complex>
#include <algorithm>
using namespace std;
// }}}
// #define {{{
typedef long long ll;
typedef double db;
typedef pair<int,int> pii;
typedef vector<int> vi;
#define de(x) cout << #x << "=" << x << endl
#define rep(i,a,b) for(int i=a;i<(b);++i)
#define per(i,a,b) for(int i=(b)-1;i>=(a);--i)
#define all(x) (x).begin(),(x).end()
#define sz(x) (int)(x).size()
#define mp make_pair
#define pb push_back
#define fi first
#define se second
// }}}

const int N = 5005;
const ll inf = 1e18;
int n , l[N] , r[N];
ll dp[2][N][2];
inline void Update(ll &x,ll d) {
  if(x > d) x = d;
}

int main(){
  cin >> n;
  rep(i,0,n) cin >> l[i] >> r[i];
  vector<pair<ll,int> > seg;
  rep(i,0,n) seg.pb(mp(l[i] + r[i] , i));
  sort(all(seg));
  reverse(all(seg));
  rep(i,0,2) rep(j,0,N) rep(k,0,2) dp[i][j][k] = inf;
  auto f = dp[0] , g = dp[1];
  f[0][0] = 0;
  int goleft = n / 2 , goright = n - 1 - goleft;
  rep(i,0,n) {
    int s = seg[i].se;
    rep(j,0,i+2) rep(k,0,2) g[j][k] = inf;
    rep(j,0,i+1) {
      if(f[j][0] != inf) {
        Update(g[j][0] , f[j][0] + ll(l[s] + r[s]) * (i - j) + l[s]);
        Update(g[j+1][0] , f[j][0] + ll(l[s] + r[s]) * j + r[s]);
        Update(g[j][1] , f[j][0] + ll(goleft) * l[s] + ll(goright) * r[s]);
      }
      if(f[j][1] != inf) {
        Update(g[j][1] , f[j][1] + ll(l[s] + r[s]) * (i - 1 - j) + l[s]);
        Update(g[j+1][1] , f[j][1] + ll(l[s] + r[s]) * j + r[s]);
      }
    }
    swap(f , g);
  }
  cout << f[goleft][1] << endl;
  return 0;
}

Submission Info

Submission Time
Task F - Intervals
User Y_UME
Language C++14 (GCC 5.4.1)
Score 1000
Code Size 1860 Byte
Status AC
Exec Time 80 ms
Memory 640 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 1000 / 1000
Status
AC × 2
AC × 45
Set Name Test Cases
Sample example0.txt, example1.txt
All 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, 008.txt, 009.txt, 010.txt, 011.txt, 012.txt, 013.txt, 014.txt, 015.txt, 016.txt, 017.txt, 018.txt, 019.txt, 020.txt, 021.txt, 022.txt, 023.txt, 024.txt, 025.txt, 026.txt, 027.txt, 028.txt, 029.txt, 030.txt, 031.txt, 032.txt, 033.txt, 034.txt, 035.txt, 036.txt, 037.txt, 038.txt, 039.txt, 040.txt, 041.txt, 042.txt, example0.txt, example1.txt
Case Name Status Exec Time Memory
000.txt AC 80 ms 640 KB
001.txt AC 17 ms 512 KB
002.txt AC 80 ms 640 KB
003.txt AC 61 ms 640 KB
004.txt AC 80 ms 640 KB
005.txt AC 32 ms 640 KB
006.txt AC 80 ms 640 KB
007.txt AC 40 ms 512 KB
008.txt AC 80 ms 640 KB
009.txt AC 9 ms 512 KB
010.txt AC 80 ms 640 KB
011.txt AC 35 ms 512 KB
012.txt AC 80 ms 640 KB
013.txt AC 8 ms 512 KB
014.txt AC 80 ms 640 KB
015.txt AC 17 ms 512 KB
016.txt AC 80 ms 640 KB
017.txt AC 60 ms 640 KB
018.txt AC 80 ms 640 KB
019.txt AC 39 ms 512 KB
020.txt AC 1 ms 384 KB
021.txt AC 1 ms 384 KB
022.txt AC 78 ms 640 KB
023.txt AC 80 ms 640 KB
024.txt AC 80 ms 640 KB
025.txt AC 80 ms 640 KB
026.txt AC 80 ms 640 KB
027.txt AC 80 ms 640 KB
028.txt AC 80 ms 640 KB
029.txt AC 80 ms 640 KB
030.txt AC 80 ms 640 KB
031.txt AC 80 ms 640 KB
032.txt AC 80 ms 640 KB
033.txt AC 80 ms 640 KB
034.txt AC 80 ms 640 KB
035.txt AC 80 ms 640 KB
036.txt AC 80 ms 640 KB
037.txt AC 80 ms 640 KB
038.txt AC 80 ms 640 KB
039.txt AC 80 ms 640 KB
040.txt AC 80 ms 640 KB
041.txt AC 80 ms 640 KB
042.txt AC 80 ms 640 KB
example0.txt AC 1 ms 384 KB
example1.txt AC 1 ms 384 KB