이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "railroad.h"
#include <bits/stdc++.h>
#define fr first
#define sc second
#define mk make_pair
#define pb push_back
#define all(s) s.begin(), s.end()
using namespace std;
const int N = 2e5 + 5;
int n;
multiset < pair <int, int>, greater <pair< int, int> > > s;
long long plan_roller_coaster(vector <int> a, vector<int> b) {
n = a.size();
for (int i = 0; i < n; i++) {
s.insert({b[i], a[i]});
}
int v = 1e9 + 7;
while (!s.empty()) {
auto it = s.upper_bound({v, 1e9});
if (it == s.begin())
return 1;
it--;
v = it->sc;
s.erase(it);
}
return 0;
}
# | 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... |