제출 #577326

#제출 시각아이디문제언어결과실행 시간메모리
577326Mounir전선 연결 (IOI17_wiring)C++14
13 / 100
20 ms3788 KiB
#include "wiring.h"
#include <bits/stdc++.h>
using namespace std;
 
long long min_total_length(std::vector<int> r, std::vector<int> b) {
	long long sumRouge = 0, sumBleu = 0;
	for (int a : r)
		sumRouge += a;
	for (int a : b)
		sumBleu += a;
 
	long long tot = sumBleu - sumRouge;
	if (r.size() > b.size())
		tot += b[0] * (r.size() - b.size());
	if (b.size() > r.size())
		tot -= r[r.size() - 1] * (b.size() - r.size());
	return tot;
}
#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...