# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1090988 | elotelo966 | 전선 연결 (IOI17_wiring) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "wiring.h"
using namespace std;
#define OYY LLONG_MAX
#define mod 1000000007
#define faster ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define FOR for(int i=1;i<=n;i++)
#define mid (start+end)/2
#define lim 2000005
#define fi first
#define se second
typedef long long lo;
int a[lim],bt[lim];
long long min_total_length(std::vector<int> r, std::vector<int> b) {
int n=a.size();
int m=b.size();
for(int i=0;i<n;i++)a[i+1]=r[i];
for(int i=0;i<m;i++)bt[i+1]=b[i];
if(n>m){
swap(n,m);
swap(a,bt);
}
lo cev=0;
FOR{
cev+=abs(a[i]-bt[i]);
}
int cur=1;
for(int i=n+1;i<=m;i++){
while(cur<n && a[cur]<bt[i])cur++;
int tut=abs(a[cur]-bt[i]);
if(cur!=1)tut=min(tut,abs(a[cur-1]-bt[i]));
cev+=tut;
}
return cev;
}