제출 #81176

#제출 시각아이디문제언어결과실행 시간메모리
81176GoodTrung전선 연결 (IOI17_wiring)C++14
0 / 100
2 ms444 KiB
#include <bits/stdc++.h> #define fi first #define se second #define NAME "wiring" using namespace std; typedef long long LL; typedef pair <int, int> pii; typedef double DB; typedef pair <LL, LL> pLL; const int NMAX = 1e6+7; int n, m; LL min_total_length(vector <int> r, vector <int> b) { LL res = 0; n = r.size(); m = b.size(); if(r[n-1] < b[0]) { for(int i = 0; i < n; ++i) res += abs(b[0] - r[i]); for(int i = 1; i < m; ++i) res += abs(b[i] - r[n-1]); return res; } return 0; }
#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...