# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
456221 | nonsensenonsense1 | Palembang Bridges (APIO15_bridge) | C++17 | 2 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <set>
#include <algorithm>
#include <vector>
const int N = 100000;
int n, task;
long long pref[N + 1], suf[N + 1];
std::vector<std::pair<int, std::pair<int, int> > > a;
void process(long long *to)
{
std::multiset<int> x, y;
long long sx = 0, sy = 0;
for (int i = 0; i < (int)a.size(); ++i) {
x.insert(a[i].second.first);
x.insert(a[i].second.second);
sx += a[i].second.first;
sx += a[i].second.second;
y.insert(*prev(x.end()));
sy += *prev(x.end());
sx -= *prev(x.end());
x.erase(prev(x.end()));
while (*prev(x.end()) > *y.begin()) {
int p = *prev(x.end()), q = *y.begin();
x.erase(prev(x.end()));
y.erase(y.begin());
x.insert(q);
y.insert(p);
sx -= p - q;
sy += p - q;
}
to[i + 1] = sy - sx;
printf("size %d %d\n", (int)x.size(), (int)y.size());
}
}
int main()
{
scanf("%d%d", &task, &n);
long long ans_add = 0;
for (int i = 0; i < n; ++i) {
char type1, type2;
int l, r;
scanf(" %c%d %c%d", &type1, &l, &type2, &r);
if (l > r) std::swap(l, r);
if (type1 == type2) ans_add += r - l;
else {
++ans_add;
a.push_back(std::make_pair(l + r, std::make_pair(l, r)));
}
}
std::sort(a.begin(), a.end());
process(pref);
std::reverse(a.begin(), a.end());
process(suf);
if (task == 1) printf("%lld\n", ans_add + pref[a.size()]);
else {
long long ans = ~((long long)1 << 63);
for (int i = 0; i <= a.size(); ++i) ans = std::min(ans, pref[i] + suf[(int)a.size() - i]);
printf("%lld\n", ans_add + ans);
}
return 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... |