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<bits/stdc++.h>
using namespace std;
#define for2(a,b,c) for(int a=b;a<c;a++)
#define ll long long
#include "wiring.h"
ll sub2(vector<int> r,vector<int> b){
ll res = 0;
int L = 0;
int R = b.size()-1;
while(L != r.size() && R != -1){
res += b[R]-r[L];
L++;
R--;
}
while(R != -1){
res += b[R]-r[L-1];
R--;
}
while(L != r.size()){
res += b[R+1]-r[L];
L++;
}
return res;
}
#define PII pair<int,int>
#define F first
#define S second
#define pb push_back
#define all(x) (x).begin(),(x).end()
const int maxn = 200100;
ll dp[maxn];
ll sub3(vector<int> v1,vector<int> v2){
vector<int> v[2];
vector<PII> V;
for(auto x : v1) {
v[0].pb(x);
V.pb({x,0});
}
for(auto x : v2){
v[1].pb(x);
V.pb({x,1});
}
sort(all(V));
int n = V.size();
for2(i,0,n){
int x = V[i].F;
bool t = V[i].S;
dp[i] = 1e18;
ll tmp = 1e18;
int ind = lower_bound(all(v[!t]),x)-v[!t].begin();
if(ind != v[!t].size()) tmp = min(tmp,(ll)v[!t][ind]-x);
ind --;
if(ind >= 0) tmp = min(tmp,(ll)x-v[!t][ind]);
if(i) tmp += dp[i-1];
dp[i] = tmp;
tmp = 0;
ll cnt = 0;
for(int j = i; j >= 0; j--){
if(j != i) tmp += cnt*(V[j+1].F-V[j].F);
if(V[j].S != V[i].S) break;
cnt++;
}
int k = 0;
for(int j = max(0ll,i-2*cnt+1); j <= i-cnt; j++){
if(V[j].S == V[i].S) break;
if(j != i-2*cnt+1) tmp += k*(V[j].F-V[j-1].F);
k++;
}
if(k != cnt){
continue;
}
dp[i] = min(dp[i],dp[i-2*cnt]+tmp);
}
return dp[V.size()-1];
}
long long min_total_length(std::vector<int> r, std::vector<int> b) {
if(r.back() < b[0]) return sub2(r,b);
return sub3(r,b);
}
Compilation message (stderr)
wiring.cpp: In function 'long long int sub2(std::vector<int>, std::vector<int>)':
wiring.cpp:11:10: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
while(L != r.size() && R != -1){
~~^~~~~~~~~~~
wiring.cpp:20:10: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
while(L != r.size()){
~~^~~~~~~~~~~
wiring.cpp: In function 'long long int sub3(std::vector<int>, std::vector<int>)':
wiring.cpp:55:10: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if(ind != v[!t].size()) tmp = min(tmp,(ll)v[!t][ind]-x);
~~~~^~~~~~~~~~~~~~~
# | 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... |