# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
922569 | LucaLucaM | 전선 연결 (IOI17_wiring) | C++17 | 1 ms | 348 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#ifndef WIRING_CPP_INCLUDED
#define WIRING_CPP_INCLUDED
#include "wiring.h"
#include <algorithm>
#include <iostream>
typedef long long ll;
long long min_total_length(std::vector<int> r, std::vector<int> b) {
int n = (int) r.size();
int m = (int) b.size();
std::vector<std::pair<int, int>> A;
for (const auto &x : r) {
A.push_back({x, 0});
}
for (const auto &x : b) {
A.push_back({x, 1});
}
A.push_back({-1, -1});
std::sort(A.begin(), A.end());
n = (int) A.size() - 1;
ll dp[n + 1] = {};
/**
dp[i] =def= costul minim sa cuplez primele i
1. c[i] == c[i - 1]
dp[i] = dp[i - 1] + (last == 0? 0 : a[i] - last)
2. c[i] != c[i - 1]
dp[i] = min{dp[j - 1] + sum{a[i] - a[k] | k = j..i - 1} | j=1..i-1}
**/
std::vector<int> a;
std::vector<int> c;
for (const auto &[x, y] : A) {
a.push_back(x);
c.push_back(y);
}
int last = -1;
int delta = 0;
int nextDelta = 0;
for (int i = 1; i <= n; i++) {
if (c[i] == c[i - 1]) {
if (delta == 0) {
dp[i] = dp[i - 1] + (last == -1? 0 : a[i] - last);
} else {
dp[i] = dp[i - 1] + 1;
delta--;
}
nextDelta++;
} else {
last = a[i - 1];
dp[i] = 1e18;
delta = nextDelta;
nextDelta = 0;
for (int j = 1; j < i; j++) {
ll cost = dp[j - 1];
for (int k = j; k < i; k++) {
cost += a[i] - a[k];
}
dp[i] = std::min(dp[i], cost);
}
}
// std::cout << i << ' ' << "dp = " << dp[i] << '\n';
}
return dp[n];
}
#endif // WIRING_CPP_INCLUDED
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |