# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1001937 | vjudge1 | Liteh and Newfiteh (INOI20_litehfiteh) | C++17 | 300 ms | 252364 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>
using namespace std;
const int N = 1e5+10;
const int LG = 20;
struct node {
long long mn=0;
vector<int> dec;
node() {
dec=vector<int>(LG, -1);
}
};
int n, a[N];
node up[N][LG];
node merge(const node &A, const node &B) {
node res;
res.mn = min(A.mn, B.mn);
for(int i = 0;i<LG;i++){
if(A.dec[i] == -1 or B.dec[i] == -1)continue;
res.dec[i] = A.dec[i]+B.dec[i];
}
if(res.mn > 0) {
for(int i = 0;i+1<LG;i++){
if(A.dec[i+1] == -1 or B.dec[i+1]==-1)continue;
int L = A.dec[i+1];
int R = B.dec[i+1];
if(L == -1 or R == -1)continue;
if(res.dec[i] == -1)res.dec[i] = L+R+1;
else res.dec[i] = min(res.dec[i], L+R+1);
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |