# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
493470 | goodluck2020 | Ball Machine (BOI13_ballmachine) | C++14 | 136 ms | 23792 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define task "ballmachine"
#define sz(X) ((int)X.size())
using namespace std;
const int N = 1e5 + 5;
int n, q, Root, Min[N], Rank[N], Time, P[N][20], HasBall[N];
vector < int > V[N];
struct Data
{
int id, rk;
};
struct cmp
{
bool operator() (Data A, Data B)
{
return A.rk > B.rk;
}
};
priority_queue < Data , vector < Data > , cmp > NoBall;
void dfs1(int u)
{
Min[u] = u;
for(int v : V[u])
{
dfs1(v);
Min[u] = min(Min[u], Min[v]);
}
sort(V[u].begin(), V[u].end(),
[](int x, int y)
{
return Min[x] < Min[y];
});
}
void dfs2(int u)
{
for(int i = 0; i < sz(V[u]); i++)
{
int v = V[u][i];
dfs2(v);
}
Rank[u] = ++Time;
}
void Build()
{
dfs1(Root);
dfs2(Root);
for(int i = 1; i < 20; i++)
for(int j = 1; j <= n; j++)
P[j][i] = P[P[j][i-1]][i-1];
for(int i = 1; i <= n; i++) NoBall.push({i, Rank[i]});
}
int Solve1(int k)
{
int res;
while(k)
{
k--;
res = NoBall.top().id;
HasBall[res] = 1;
NoBall.pop();
}
return res;
}
int Solve2(int k)
{
int res = 0;
for(int i = 19; i >= 0; i--)
if(HasBall[P[k][i]]) k = P[k][i], res += 1 << i;
HasBall[k] = 0;
NoBall.push({k, Rank[k]});
return res;
}
int main()
{
if(fopen(task ".inp","r"))
{
freopen(task ".inp","r",stdin);
freopen(task ".out","w",stdout);
}
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
cin >> n >> q;
for(int i = 1; i <= n; i++)
{
int p;
cin >> p;
if(p == 0) Root = i;
P[i][0] = p;
V[p].push_back(i);
}
Build();
while(q--)
{
int type, k;
cin >> type >> k;
if(type == 1) cout << Solve1(k) << '\n';
else cout << Solve2(k) << '\n';
}
}
컴파일 시 표준 에러 (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... |