# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
781278 | GusterGoose27 | 전선 연결 (IOI17_wiring) | C++17 | 26 ms | 10972 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "wiring.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
const int MAXN = 2e5+5;
const ll inf = 1e18;
ll dp[MAXN][2];
ll pre[MAXN];
int nxt[MAXN]; // next thing of other color
int prv[MAXN]; // previous thing of same color
bool color[MAXN];
int pos[MAXN];
int n;
int _abs(int v) {
return v < 0 ? -v : v;
}
ll min_total_length(vector<int> r, vector<int> b) {
n = r.size()+b.size();
int i = 0;
int j = 0;
while (i < r.size() || j < b.size()) {
if (i == r.size()) {
color[i+j] = 1;
pos[i+j] = b[j];
j++;
continue;
}
if (j == b.size()) {
color[i+j] = 0;
pos[i+j] = r[i];
i++;
continue;
}
if (r[i] < b[j]) {
color[i+j] = 0;
pos[i+j] = r[i];
i++;
continue;
}
color[i+j] = 1;
pos[i+j] = b[j];
j++;
}
int occ[2];
occ[0] = n;
occ[1] = n;
for (int i = n-1; i >= 0; i--) {
occ[color[i]] = i;
nxt[i] = occ[!color[i]];
}
bool hot[2];
hot[0] = hot[1] = 0;
for (int i = 0; i < n; i++) {
pre[i] = hot[color[i]] ? pre[i-1] : 0;
pre[i] += pos[i];
if (!hot[color[i]]) occ[color[i]] = i;
prv[i] = occ[color[i]];
hot[color[i]] = 1;
hot[!color[i]] = 0;
}
dp[n][0] = 0;
for (int i = n-1; i >= 0; i--) {
if (nxt[i] == n) {
dp[i][0] = inf;
dp[i][1] = pre[n-1]-((color[i-1] == color[i]) ? pre[i-1] : 0)-(ll)pos[prv[i]-1]*(n-i);
continue;
}
int t = nxt[i];
int cursz = t-i;
int nxtsz = nxt[t]-t;
if (cursz == 1) dp[i][0] = dp[t][1];
else {
if (cursz <= nxtsz) {
ll cur_match = pre[2*t-i-2]-pre[t-2]+((color[i-1] == color[i]) ? pre[i-1] : 0);
dp[i][0] = cur_match+dp[2*t-i-1][1];
}
else {
if (nxtsz == 1) {
ll match = (ll)pos[t]*(t-i)-pre[t-1]+((color[i-1] == color[i]) ? pre[i-1] : 0);
dp[i][0] = min(dp[t][0]+match, dp[t+1][0]+match);
}
else {
int num_match = nxtsz-1;
ll cur_match = pre[t+num_match-1]-pre[t-1]+((color[i-1] == color[i]) ? pre[i-1] : 0)
+ (ll)pos[t]*(t-i-num_match); // match them all to the leftmost thing
dp[i][0] = min(dp[nxt[t]-1][0]+cur_match, dp[nxt[t]][0]+cur_match+pos[nxt[t]-1]-pos[t]);
}
}
dp[i][0] = min(dp[i][0], pos[t]-pos[i]+dp[i+1][0]);
}
int p = prv[i]-1;
if (p == -1) continue; // this will never be queried
dp[i][1] = pos[i]-pos[p]+min(dp[i][0], dp[i+1][0]);
if (i < t-1) dp[i][1] = min(dp[i][1], pos[i]-pos[p]+dp[i+1][1]);
}
return dp[0][0];
}
컴파일 시 표준 에러 (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... |