이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <cstdio>
#include <vector>
#include <algorithm>
#include "railroad.h"
using namespace std;
// <|°_°|>
const int INFINI = (1000 * 1000 * 1000);
const int MAX_COORD = (400 * 1000 + 2);
int Dsu[MAX_COORD];
pair <long long, int> Evenements[MAX_COORD];
long long Sommes[MAX_COORD];
long long Correspondances[MAX_COORD];
pair <long long, int> Aretes[MAX_COORD];
int nbAretes = 0;
long long coutTotal = 0;
int nbSections;
int Find(int a) {
if (Dsu[a] < 0)
return a;
return Dsu[a] = Find(Dsu[a]);
}
void Union(int a, int b) {
int rA = Find(a), rB = Find(b);
if (rA == rB)
return;
if (Dsu[rA] > Dsu[rB])
swap(rA, rB);
Dsu[rA] += Dsu[rB];
Dsu[rB] = rA;
return;
}
long long plan_roller_coaster(vector<int> Entrees, vector<int> Sorties) {
Entrees.push_back(INFINI);
Sorties.push_back(1LL);
nbSections = Entrees.size();
for (int i = 0; i < nbSections; i ++)
{
Evenements[2 * i] = {(long long)Entrees[i], i + 1};
Evenements[2 * i + 1] = {(long long)Sorties[i], - (i + 1)};
}
sort(Evenements, Evenements + 2 * nbSections);
int nbDiff = 0;
for (int i = 0; i < 2 * nbSections; i ++)
{
int dep = i;
while (i < 2 * nbSections && Evenements[i].first == Evenements[i + 1].first)
i ++;
for (int j = dep; j <= i; j ++)
{
int id = Evenements[j].second;
if (id > 0)
{
Entrees[id - 1] = nbDiff;
Sommes[nbDiff] ++;
}
else
{
Sorties[- id - 1] = nbDiff;
Sommes[nbDiff] --;
}
}
Correspondances[nbDiff ++] = Evenements[i].first;
}
for (int i = 0; i < nbDiff; i ++)
{
Dsu[i] = -1;
}
for (int i = 0; i < nbSections; i ++)
{
Union(Entrees[i], Sorties[i]);
}
long long nbOuverts = 0;
for (int i = 0; i < nbDiff - 1; i ++)
{
nbOuverts += Sommes[i];
coutTotal += max(0LL, nbOuverts) * (Correspondances[i + 1] - Correspondances[i]);
if (nbOuverts != 0)
{
Union(i, i + 1);
}
else if (Find(i) != Find(i + 1))
{
Aretes[nbAretes ++] = {Correspondances[i + 1] - Correspondances[i], i};
}
}
sort(Aretes, Aretes + nbAretes);
for (int i = 0; i < nbAretes; i ++)
{
int id = Aretes[i].second;
if (Find(id) != Find(id + 1))
{
coutTotal += Correspondances[id + 1] - Correspondances[id];
Union(id, id + 1);
}
}
return coutTotal;
}
# | 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... |