# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
220914 | patrikpavic2 | Bitaro’s Party (JOI18_bitaro) | C++17 | 1290 ms | 117364 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <vector>
#include <queue>
#define X first
#define Y second
#define PB push_back
using namespace std;
const int N = 1e5 + 500;
const int INF = 0x3f3f3f3f;
const int K = 100;
typedef pair < int, int > pii;
vector < pii > tko[N];
vector < int > v[N], r[N];
int dis[N], zab[N], n, m, q, uso[N], gdje[N];
priority_queue < pii > Q;
void spoji(int x){
for(int y : r[x]){
gdje[y] = 0;
Q.push({tko[y][0].X, y});
}
for(;(!Q.empty()) && tko[x].size() < K;){
int vrh = Q.top().Y;
if(!uso[tko[vrh][gdje[vrh]].Y]){
uso[tko[vrh][gdje[vrh]].Y] = 1;
tko[x].PB(tko[vrh][gdje[vrh]]);
}
Q.pop(); gdje[vrh]++;
if(gdje[vrh] < (int)tko[vrh].size())
Q.push({tko[vrh][gdje[vrh]].X, vrh});
}
for(;!Q.empty();) Q.pop();
for(pii &tmp : tko[x])
uso[tmp.Y] = 0, tmp.X++;
if(tko[x].size() < K)
tko[x].PB({0, x});
}
void precompute(){
for(int i = 1;i <= n;i++)
spoji(i);
}
int seljacki(int x){
for(int i = 1;i <= n;i++)
dis[i] = -INF;
dis[x] = 0;
int ret = -1;
for(int i = x; i ; i--){
for(int j : v[i])
dis[i] = max(dis[i], dis[j] + 1);
if(!zab[i])
ret = max(ret, dis[i]);
}
return ret;
}
int main(){
scanf("%d%d%d", &n, &m, &q);
for(;m--;){
int x, y; scanf("%d%d", &x, &y);
v[x].PB(y);
r[y].PB(x);
}
precompute();
for(;q--;){
int st; scanf("%d", &st);
int kol; scanf("%d", &kol);
vector < int > tmp;
for(;kol--;){
int x; scanf("%d", &x);
tmp.PB(x); zab[x] = 1;
}
if((int)tmp.size() >= K)
printf("%d\n", seljacki(st));
else{
int ret = -1;
for(pii bla : tko[st])
if(!zab[bla.Y]) ret = max(ret, bla.X);
printf("%d\n", ret);
}
for(int x : tmp) zab[x] = 0;
}
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... |