# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
789838 | ymm | 전선 연결 (IOI17_wiring) | C++17 | 1 ms | 2644 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "wiring.h"
#include <bits/stdc++.h>
#define Loop(x,l,r) for (long long x = (l); x < (r); ++x)
typedef long long ll;
typedef std::pair<ll,ll> pll;
using namespace std;
const int N = 300010;
int _lst[2*N];
ll dp[N];
ll ps[N];
int *const lst = _lst+N;
long long min_total_length(std::vector<int> r, std::vector<int> b)
{
vector<pll> vec;
for (int x : r)
vec.push_back({x, -1});
for (int x : b)
vec.push_back({x, 1});
sort(vec.begin(), vec.end());
ll lstB = -1e16;
ll lstR = -1e16;
memset(_lst, -1, sizeof(_lst));
lst[0] = 0;
int sum = 0;
Loop (i,0,vec.size()) {
ps[i+1] = ps[i] + vec[i].first * vec[i].second;
}
Loop (i,0,vec.size()) {
auto [x, y] = vec[i];
ll lstC;
if (y == -1) {
lstR = vec[i].first;
lstC = lstB;
} else {
lstB = vec[i].first;
lstC = lstR;
}
sum += y;
dp[i+1] = dp[i] + x - lstC;
if (lst[sum] != -1) {
ll dard = dp[lst[sum]] + abs(ps[i+1] - ps[lst[sum]]);
dp[i+1] = min(dp[i+1], dard);
}
for (int j = i-1; j >= 0 && vec[j].second != vec[i].second; --j) {
ll dard = x * (i-j) - abs(ps[i] - ps[j]) + dp[j];
ll marg = x * (i-j) - abs(ps[i] - ps[j]) + dp[j+1];
dp[i+1] = min(dp[i+1], min(dard, marg));
}
lst[sum] = i+1;
}
return dp[vec.size()];
}
컴파일 시 표준 에러 (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... |