# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
242635 | apostoldaniel854 | Robots (IOI13_robots) | C++14 | 2390 ms | 21732 KiB |
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>
#include <robots.h>
using namespace std;
using ll = long long;
#define pb push_back
#define dbg(x) cerr << #x << " " << x << "\n"
const int NA = 5e4, NT = 1e6;
int a, b, t;
int x[1 + NA], y[1 + NA];
pair <int, int> toy[1 + NT];
bool used[1 + NT];
int orderSmall[1 + NT], orderWeak[1 + NT];
bool check (int bound) {
for (int i = 1; i <= t; i++)
used[i] = false;
priority_queue <pair <int, int>> pq;
int j = 1;
for (int i = 1; i <= a; i++) {
while (j <= t && x[i] > toy[orderWeak[j]].first) {
pq.push ({toy[orderWeak[j]].second, orderWeak[j]});
j++;
}
int lft = bound;
while (lft && pq.size ()) {
used[pq.top ().second] = true;
pq.pop ();
# | 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... |