# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
261262 | Berted | Arcade (NOI20_arcade) | C++14 | 420 ms | 17876 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 <iostream>
#include <algorithm>
#include <set>
#include <tuple>
#define pii pair<int, int>
#define fst first
#define snd second
/*
Observe that we can go from a pair to another pair iff:
|Aj - Ai| <= Tj - Ti
Therefore,
Ti - Ai <= Tj - Aj ---> if Ai <= Aj
Ti + Ai <= Tj + Aj ---> if Ai > Aj
Observe that if Ti - Ai <= Tj - Aj for Ai <= Aj
Ti + Ai <= Tj + Aj will also be satisfied.
Therefore, we could sort the array based on Ti - Ai
And change each element in the array into just Ti + Ai
And the problem is now reduced to :
The minimum number of groups required such that each group
is an non-decreasing subsequence of the array.
*/
using namespace std;
set<int> s;
int m, n;
pii ar[500001];
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |