# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1059887 | Zicrus | 전선 연결 (IOI17_wiring) | C++17 | 1 ms | 348 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "wiring.h"
using namespace std;
typedef long long ll;
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();
vector<int> last(2, -1);
vector<int> nxt(2, 1);
vector<bool> vst(n);
ll res = 0;
for (int i = 0; i < n; i++) {
if (vst[i]) continue;
ll otherT = pos[i].second.first ^ 1;
while (nxt[otherT] < n && (vst[nxt[otherT]] || pos[nxt[otherT]].second.first != otherT)) nxt[otherT]++;
if (nxt[otherT] >= n) {
res += pos[i].first - last[otherT];
}
else {
res += pos[nxt[otherT]].first - pos[i].first;
vst[nxt[otherT]] = true;
}
vst[i] = true;
last[pos[i].second.first] = pos[i].first;
}
return res;
}
컴파일 시 표준 에러 (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... |