# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
173751 | gs18103 | Port Facility (JOI17_port_facility) | C++14 | 4835 ms | 171412 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 fi first
#define se second
#define eb emplace_back
#define em emplace
#define all(v) v.begin(), v.end()
using namespace std;
typedef long long ll;
typedef pair <int, int> pii;
typedef pair <ll, ll> pll;
const int MAX = 1010101;
const int INF = 1e9;
const ll LINF = 1e18;
const int mod = 1e9+7;
struct containor {
int s, e, c;
} arr[MAX];
int idx1[2*MAX], idx2[2*MAX], n;
struct SEG {
vector <pii> tree;
void init(int n) {
tree.resize(4*n+10);
for(int i = 0; i < tree.size(); i++) tree[i] = make_pair(-INF, 0);
}
void update(int node, int s, int e, int k, int val) {
if(s == e) {
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... |