| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 217340 | vanic | Cover (COCI18_cover) | C++14 | 12 ms | 768 KiB | 
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <iostream>
#include <cstdio>
#include <math.h>
#include <algorithm>
#include <vector>
#include <set>
/*
#include <dora>
#include <vito>
*/
#include <string>
#include <map>
#include <queue>
//#include <>
using namespace std;
typedef long long ll;
const int maxn=5005;
const ll inf=1e18;
int n;
map < pair < int, int >, bool > bio;
vector < pair < int, int > > v;
deque < pair < int, int > > q;
ll dp[maxn];
int main(){
	ios_base::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
	cin >> n;
	pair < int, int > p;
	for(int i=0; i<n; i++){
		cin >> p.first >> p.second;
		p.first=abs(p.first);
		p.second=abs(p.second);
		if(!bio[p]){
			bio[p]=1;
			v.push_back(p);
		}
	}
	n=v.size();
	sort(v.begin(), v.end());
	for(int i=0; i<n; i++){
		while(!q.empty() && q.back().second<=v[i].second){
			q.pop_back();
		}
		q.push_back(v[i]);
	}
	v.clear();
	while(!q.empty()){
		v.push_back(q.front());
		q.pop_front();
	}
	n=v.size();
	for(int i=0; i<n; i++){
		dp[i]=inf;
		for(int j=0; j<=i; j++){
			if(j){
				dp[i]=min(dp[i], dp[j-1]+(ll)v[j].second*v[i].first);
			}
			else{
				dp[i]=min(dp[i], (ll)v[j].second*v[i].first);
			}
		}
	}
	cout << dp[n-1]*4 << '\n';
	return 0;
}
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
