# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
43202 | szawinis | 전선 연결 (IOI17_wiring) | C++14 | 1079 ms | 7016 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "wiring.h"
#include <bits/stdc++.h>
#define pos first
#define col second
using namespace std;
using ll = long long;
const int N = 2e5+1;
const ll INF = 1e17;
int n;
vector<pair<int,int> > a;
ll s[N], dp[N];
ll min_total_length(std::vector<int> r, std::vector<int> b) {
n = r.size() + b.size();
for(int i = 0; i < r.size(); i++) a.emplace_back(r[i], 0);
for(int i = 0; i < b.size(); i++) a.emplace_back(b[i], 1);
a.emplace_back(INT_MIN, INT_MIN);
sort(a.begin(), a.end());
for(int i = 1; i <= n; i++) s[i] = s[i-1] + a[i].pos;
fill(dp+1, dp+n+1, INF);
for(int i = 2; i <= n; i++) {
// case segments completely disjoint
int k = i-1;
while(k >= 0 && a[k].col == a[i].col) --k;
if(!k) continue;
for(int j = k-1; j >= 0 && a[j+1].col == a[k].col; j--) {
ll res = dp[j] + (s[i] - s[k]) - (s[k] - s[j]);
if(i-k > k-j) res -= 1ll * ((i-k) - (k-j)) * a[k].pos;
else if(i-k < k-j) res += 1ll * ((k-j) - (i-k)) * a[k+1].pos;
dp[i] = min(res, dp[i]);
}
// case segments intersect at one node
if(k-1 >= 1 && a[k-1].col == a[i].col)
dp[i] = min(dp[k] + s[i] - s[k] - 1ll * (i-k) * a[k].pos, dp[i]);
}
return dp[n];
}
컴파일 시 표준 에러 (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... |