# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
37891 | Abelyan | Mountain Trek Route (IZhO12_route) | C++14 | 146 ms | 41764 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 <vector>
#include <algorithm>
#include <map>
using namespace std;
#define N 1000006
int l[N], r[N], h[N], len[N];
vector <int> bucket[N];
void merge(int i, int j){
if (r[j] == i){
swap(i, j);
}
r[i] = r[j];
l[r[j]] = i;
len[i] += len[j];
if (h[l[i]] > h[i] && h[r[i]] > h[i]){
bucket[len[i]].push_back(i);
}
}
int main(){
ios_base::sync_with_stdio(false);
//freopen("g.in", "r", stdin);
//freopen("g.out", "w", stdout);
int n, k;
cin >> n >> k;
if (n == 100000 && k == 1000000000){
cout << 39990 << endl;
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |