# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
789920 | ymm | 전선 연결 (IOI17_wiring) | C++17 | 50 ms | 11440 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;
ll dp[N], dp2[N];
ll ps[N], ps1[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());
int lstB = -1;
int lstR = -1;
Loop (i,0,vec.size()) {
ps[i+1] = ps[i] + vec[i].first;
ps1[i+1] = ps1[i] + vec[i].second;
}
Loop (i,0,vec.size()) {
auto [x, y] = vec[i];
int lstC;
if (y == -1) {
lstR = i;
lstC = lstB;
} else {
lstB = i;
lstC = lstR;
}
if (lstC == -1) {
dp[i+1] = 1e17;
continue;
}
dp[i+1] = dp[i] + x - vec[lstC].first;
int cnt = i - lstC;
if (cnt == 1) {
int cnt2 = 0;
for (int j = i-1; j >= 0 && vec[j].second != vec[i].second; --j) {
++cnt2;
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];
dp2[j] = min(dard, marg);
}
for (int j = i-cnt2; j < i-1; ++j)
dp2[j+1] = min(dp2[j+1], dp2[j]);
}
if (i+1 - 2*cnt >= 0 && abs(ps1[i-cnt+1] - ps1[i-2*cnt+1]) == cnt) {
ll dard = (ps[i+1] - ps[lstC+1]) - vec[lstC+1].first * cnt;
dard += dp2[i - 2*cnt + 1];
dp[i+1] = min(dp[i+1], dard);
}
}
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... |