제출 #629701

#제출 시각아이디문제언어결과실행 시간메모리
629701samed전선 연결 (IOI17_wiring)C++17
0 / 100
1 ms256 KiB
#include "wiring.h"
#include<bits/stdc++.h>
using namespace std;
long long min_total_length(std::vector<int> a, std::vector<int> b) {
	long long answer = 0;
	int n = a.size();
  	int m = b.size();
    if(n > m)
    {
        swap(a,b);
        swap(n,m);
    }

    int i = n-1,j=m-1;
    while(i >= 0)
    {
        answer += abs(a[i] - b[j]);

        i--;
        j--;
    }
    
    while(j >= 0)
    {
        answer += abs(a[n-1] - b[j]);
        j--;
    }
	return answer;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...