Submission #629701

#TimeUsernameProblemLanguageResultExecution timeMemory
629701samedWiring (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...