# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1060327 | Zicrus | 전선 연결 (IOI17_wiring) | C++17 | 26 ms | 12472 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "wiring.h"
using namespace std;
typedef long long ll;
vector<ll> dp;
ll getDp(ll i) {
if (i < 0) return 0;
return dp[i];
}
ll min_total_length(vector<int> r, vector<int> b) {
vector<vector<int>> rb = {r, b};
vector<pair<ll, pair<ll, ll>>> pos; // pos, {type, id in type}
for (int i = 0; i < r.size(); i++) pos.push_back({r[i], {0, i}});
for (int i = 0; i < b.size(); i++) pos.push_back({b[i], {1, i}});
sort(pos.begin(), pos.end());
ll n = pos.size();
dp = vector<ll>(n, 1ll << 62ll);
ll start = 0;
while (pos[start].second.first == pos[0].second.first) {
start++;
}
vector<int> last(2, -1);
last[pos[0].second.first] = start-1;
for (int i = n-1; i < n; i++) {
ll other = pos[i].second.first ^ 1;
ll ptr = last[other];
ll thisPtr = ptr+1;
ll origPtr = ptr;
ll sum = 0;
while (ptr >= 0 && pos[ptr].second.first == other && thisPtr <= i) {
sum += pos[thisPtr].first - pos[ptr].first;
ptr--; thisPtr++;
}
while (thisPtr <= i) {
sum += pos[thisPtr].first - pos[origPtr].first;
thisPtr++;
}
while (ptr >= 0 && pos[ptr].second.first == other) { // SIGNAL 11
sum += pos[origPtr+1].first - pos[ptr].first;
ptr--;
}
dp[i] = sum + getDp(ptr);
continue;
for (int j = ptr+2; j <= origPtr; j++) {
ll ptr = last[other];
ll thisPtr = ptr+1;
ll origPtr1 = ptr;
ll sum = 0;
while (ptr >= j && thisPtr <= i) {
sum += pos[thisPtr].first - pos[ptr].first;
ptr--; thisPtr++;
}
while (thisPtr <= i) {
sum += pos[thisPtr].first - pos[origPtr1].first;
thisPtr++;
}
while (ptr >= j) {
sum += pos[origPtr1+1].first - pos[ptr].first;
ptr--;
}
dp[i] = min(dp[i], sum + getDp(ptr));
}
last[other ^ 1] = i;
}
return dp.back();
}
컴파일 시 표준 에러 (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... |