# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
283272 | DystoriaX | 전선 연결 (IOI17_wiring) | C++14 | 52 ms | 9960 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "wiring.h"
#include <algorithm>
#include <iostream>
using namespace std;
vector<pair<int, int> > v;
const long long INF = 1e18;
long long dp[100010];
long long min_total_length(std::vector<int> r, std::vector<int> b) {
for(auto &k : r) v.emplace_back(k, 0);
for(auto &k : b) v.emplace_back(k, 1);
sort(v.begin(), v.end());
int vs = 1 - (v.begin() -> second);
int last = -1;
for(int i = 1; i < (int) v.size(); i++){
if(v[i].second == v[i - 1].second) continue;
else {last = i; break;}
}
for(int i = 0; i < (int) v.size(); i++) dp[i] = 1e17;
// cerr << last << "\n";
int lpos = v[last - 1].first, cpos = v[last].first;
int connected = 0;
for(int i = last; i < (int) v.size(); i++){
if(v[i].second == v[i - 1].second){
// cerr << i << " " << connected << "\n";
if(connected == 1) dp[i] = dp[i - 1] + v[i].first - lpos;
else connected--, dp[i] = dp[i - 1] + v[i].first - cpos;
} else {
lpos = v[i - 1].first;
cpos = v[i].first;
long long cost = 0;
for(int j = i - 1; j >= 0; j--){
if(v[j].second == v[i].second) break;
cost += v[i].first - v[j].first;
long long pen = (j == 0) ? 0 : dp[j - 1];
if(dp[i] >= pen + cost){
dp[i] = pen + cost;
connected = i - j;
}
}
}
// cerr << v[i].first << " " << i << " = " << dp[i] << "\n";
}
return dp[v.size() - 1];
}
컴파일 시 표준 에러 (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... |