이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "wiring.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const int MAXN = 2e5;
const ll INF = 1e18;
int N, M;
ll A[MAXN+10], B[MAXN+10];
ll ans=0;
pll C[MAXN+10];
int P[MAXN+10];
ll dp[MAXN+10];
ll min_total_length(vector<int> _A, vector<int> _B)
{
N=_A.size(); M=_B.size();
for(int i=1; i<=N; i++) A[i]=_A[i-1];
for(int i=1; i<=M; i++) B[i]=_B[i-1];
for(int i=1; i<=N; i++) C[i]={A[i], 1};
for(int i=1; i<=M; i++) C[i+N]={B[i], 2};
sort(C+1, C+N+M+1);
P[1]=0;
for(int i=2; i<=N+M; i++)
{
if(C[i].second==C[i-1].second) P[i]=P[i-1];
else P[i]=i-1;
}
ll val=0;
for(int i=1; i<=N+M; i++)
{
dp[i]=INF;
if(P[i]==0) continue;
if(C[i].second!=C[i-1].second) val=C[i].first-C[i-1].first;
else val+=C[i].first-C[P[i]].first;
ll val2=0;
for(int j=P[i]; j>=1 && C[j].second!=C[i].second; j--)
{
if(i-P[i]>=P[i]+1-j) val2+=C[P[i]].first-C[j].first;
else val2+=C[P[i]+1].first-C[j].first;
dp[i]=min(dp[i], dp[j-1]+val+val2);
}
}
return dp[N+M];
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |