This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using i64 = long long;
template <typename T> using Vec = std::vector<T>;
constexpr int inf = 1100000000;
constexpr i64 inf64 = 2000000000000000000;
template <typename T> bool setmin(T &a, const T v) {
if (a > v) {
a = v;
return true;
}
return false;
}
long long plan_roller_coaster(std::vector<int> S, std::vector<int> T) {
const int N = (int)S.size();
std::vector<int> order(N);
std::iota(order.begin(), order.end(), 0);
const int min_id = (int)(std::min_element(order.begin(), order.end(),
[&](const int a, const int b) {
if (S[a] != S[b])
return S[a] < S[b];
else
return T[a] < T[b];
}) -
order.begin());
std::set<std::pair<int, int>> set;
for (int i = 0; i < N; ++i)
if (i != min_id) set.insert({S[i], T[i]});
bool answer = true;
int now_t = T[min_id];
while (not set.empty()) {
auto itr = set.lower_bound({now_t, -inf});
if (itr != set.end()) {
now_t = itr->second;
set.erase(itr);
} else {
answer = false;
break;
}
}
// subtask 3
return answer ? 0 : 1;
}
# | 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... |