Submission #1005535


Source Code Expand

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define rep1(i,n) for(int i=1;i<=(int)(n);i++)
#define all(c) c.begin(),c.end()
#define pb push_back
#define fs first
#define sc second
#define show(x) cout << #x << " = " << x << endl
#define chmin(x,y) x=min(x,y)
#define chmax(x,y) x=max(x,y)
using namespace std;
template<class S,class T> ostream& operator<<(ostream& o,const pair<S,T> &p){return o<<"("<<p.fs<<","<<p.sc<<")";}
template<class T> ostream& operator<<(ostream& o,const vector<T> &vc){o<<"sz = "<<vc.size()<<endl<<"[";for(const T& v:vc) o<<v<<",";o<<"]";return o;}
typedef long long ll;
ll inf=1e18;
int N;
ll L[5000],R[5000];
ll dp[2][2501][2501];
int main(){
	cin>>N;
	rep(i,N) cin>>L[i]>>R[i];
	rep(i,N-1) rep(j,N-1) if(L[j]+R[j]<L[j+1]+R[j+1]) swap(L[j],L[j+1]),swap(R[j],R[j+1]);
	rep(i,2) rep(j,2501) rep(k,2501) dp[i][j][k]=inf;
	dp[0][0][0]=0;
	rep(n,N){
		rep(c,2) rep(l,n+1-c){
			int r=n-l-c;
			if(dp[c][l][r]==inf) continue;
			if(c==0) chmin(dp[1][l][r],dp[0][l][r]+N/2*(L[n]+R[n]));
			if(l<2500) chmin(dp[c][l+1][r],dp[c][l][r]+l*(L[n]+R[n])+R[n]);
			if(r<2500) chmin(dp[c][l][r+1],dp[c][l][r]+r*(L[n]+R[n])+L[n]);
		}
	}
	ll ans=inf;
	rep(c,2) rep(l,N+1-c){
		int r=N-l-c;
		if(l<=2500&&r<=2500) chmin(ans,dp[c][l][r]);
	}
	cout<<ans<<endl;
}

Submission Info

Submission Time
Task F - Intervals
User sigma425
Language C++14 (GCC 5.4.1)
Score 0
Code Size 1337 Byte
Status RE
Exec Time 378 ms
Memory 98176 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 1000
Status
AC × 2
AC × 8
RE × 37
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 RE 376 ms 98048 KB
001.txt AC 186 ms 98048 KB
002.txt RE 375 ms 98048 KB
003.txt RE 361 ms 98048 KB
004.txt RE 377 ms 98048 KB
005.txt RE 344 ms 98048 KB
006.txt RE 376 ms 98048 KB
007.txt RE 350 ms 98048 KB
008.txt RE 378 ms 98048 KB
009.txt AC 138 ms 98048 KB
010.txt RE 377 ms 98048 KB
011.txt RE 347 ms 98176 KB
012.txt RE 376 ms 98048 KB
013.txt AC 129 ms 98048 KB
014.txt RE 377 ms 98048 KB
015.txt AC 188 ms 98048 KB
016.txt RE 376 ms 98048 KB
017.txt RE 362 ms 98048 KB
018.txt RE 374 ms 98048 KB
019.txt RE 346 ms 98048 KB
020.txt AC 98 ms 97920 KB
021.txt AC 99 ms 97920 KB
022.txt RE 355 ms 98048 KB
023.txt RE 366 ms 98048 KB
024.txt RE 365 ms 98048 KB
025.txt RE 368 ms 98048 KB
026.txt RE 365 ms 98048 KB
027.txt RE 369 ms 98048 KB
028.txt RE 361 ms 98048 KB
029.txt RE 367 ms 98048 KB
030.txt RE 362 ms 98048 KB
031.txt RE 366 ms 98048 KB
032.txt RE 362 ms 98048 KB
033.txt RE 364 ms 98048 KB
034.txt RE 363 ms 98048 KB
035.txt RE 368 ms 98048 KB
036.txt RE 361 ms 98048 KB
037.txt RE 367 ms 98048 KB
038.txt RE 366 ms 98048 KB
039.txt RE 367 ms 98048 KB
040.txt RE 368 ms 98048 KB
041.txt RE 367 ms 98048 KB
042.txt RE 369 ms 98048 KB
example0.txt AC 99 ms 97920 KB
example1.txt AC 99 ms 97920 KB