# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
923772 | n3rm1n | Ball Machine (BOI13_ballmachine) | C++17 | 56 ms | 12756 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define endl '\n'
using namespace std;
const int MAXN = 1e5 + 10;
void speed()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
}
int n, que;
int p[MAXN], root;
vector < int > g[MAXN];
void read()
{
cin >> n >> que;
for (int i = 1; i <= n; ++ i)
{
cin >> p[i];
if(!p[i])root = i;
g[p[i]].push_back(i);
}
}
int points[MAXN], cnt;
void dfs0(int beg)
{
int nb;
for (int i = 0; i < g[beg].size(); ++ i)
{
nb = g[beg][i];
if(!points[nb])dfs0(nb);
}
cnt ++;
points[beg] = cnt;
}
int used[MAXN];
priority_queue < pair < int, int > > q;
int query_type1(int x)
{
int v = 0;
while(x --)
{
v = q.top().second;
//cout << v << endl;
used[v] = 1;
q.pop();
}
return v;
}
int main()
{
speed();
read();
dfs0(root);
for (int i = 1; i <= n; ++ i)
q.push(make_pair(-points[i], i));
int t, x;
while(que --)
{
cin >> t >> x;
if(t == 1)
cout << query_type1(x) << endl;
else
{
q.push(make_pair(-points[x], x));
cout << 0 << endl;
}
}
return 0;
}
컴파일 시 표준 에러 (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... |