Submission #1063863

#TimeUsernameProblemLanguageResultExecution timeMemory
1063863pravcoder전선 연결 (IOI17_wiring)C++17
0 / 100
0 ms360 KiB
#include "wiring.h"
#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;

typedef long long ll;
typedef vector<int> vi;
typedef vector<vi> v2i;
typedef pair<int, int> pi;
typedef vector<pi> vpi;
typedef vector<bool> vb;

#define pb push_back
#define mp make_pair
#define rept(i, a, b) for (int i = a; i < b; i++)
#define rep(i, n) for (int i = 0; i < n; i++)

long long min_total_length(std::vector<int> r, std::vector<int> b) {
	ll length = 0;
	int n = r.size(), m = b.size();
	rep(i, min(m, n)) {
		length += b[i] - r[n - i - 1];
	}
	rept(i, min(m, n), max(m, n)) {
		if (m > n) {
			length += b[i] - r[n - 1];
		}
		else {
			length += b[0] - r[i];
		}
	}
	return length;
}
#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...