# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
797460 | kingfran1907 | Segments (IZhO18_segments) | C++14 | 5079 ms | 11388 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>
#define X first
#define Y second
using namespace std;
const int maxn = 2e5+10;
int n, t;
set< int > s, cur;
int l[maxn], r[maxn];
int inter(pair<int, int> a, pair<int, int> b) {
if (a.X > b.X) swap(a, b);
return min(a.Y, b.Y) - b.X + 1;
}
int main() {
scanf("%d%d", &n, &t);
for (int i = 1; i <= n + 2; i++) s.insert(i);
int lastans = 0;
int ptr = 0;
while (n--) {
int type;
scanf("%d", &type);
if (type == 1) {
int ind = ++ptr;
int l, r;
Compilation message (stderr)
# | 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... |