| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 150055 | 채원♡예나 (#200) | Lokahian Relics (FXCUP4_lokahia) | C++17 | 7 ms | 640 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 "lokahia.h"
#include <vector>
#include <queue>
using namespace std;
int h[300];
int sz[300];
typedef pair<int,int> pii;
vector<int> q,nq;
vector<int> Q;
vector<int> lft;
bool merge(int x, int y) {
int t;
if(h[x]==h[y]) t=h[x];
else t=CollectRelics(h[x],h[y]);
if(t<0) return false;
h[x]=t;
sz[x]+=sz[y];
return true;
}
int FindBase(int N){ int n=N;
for(int i=0; i<n; i++) q.push_back(i), h[i]=i, sz[i]=1;
for(int j=0; j<!q.empty(); j++) {
nq.clear();
for(int i=0; i<(int)q.size(); i+=2) {
if(i==(int)q.size()-1) {
lft.push_back(q[i]);
}
if(merge(q[i], q[i+1])) {
nq.push_back(q[i]);
} else {
Q.push_back(q[i]);
Q.push_back(q[i+1]);
}
}
q=nq;
}
if(lft.empty()) return -1;
int X=lft.back();
for(int i=0; i<(int)lft.size()-1; i++) merge(X, lft[i]);
for(int i=0; i<(int)Q.size(); i++) merge(X, Q[i]);
if(sz[X]>(n/2)) return h[X];
else return -1;
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
