# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
47759 | daniel_02 | Bitaro’s Party (JOI18_bitaro) | C++17 | 2061 ms | 8044 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
#define fr first
#define sc second
using namespace std;
const int N = 1e5 + 7;
const int inf = 1e9 + 7;
priority_queue<pair<int, int>>q;
vector<pair<int, int>>g[N];
bool busy[N];
int d[N];
main()
{
int n, m, Q;
cin >> n >> m >> Q;
for (int i = 1; i <= m; i ++)
{
int u, v;
scanf("%d%d", &u, &v);
g[v].pb({u, 1});
}
while (Q--)
{
int t, k, mx;
scanf("%d%d", &t, &k);
for (int i = 0; i < k; i++)
{
int a;
scanf("%d", &a);
busy[a] = 1;
}
for (int i = 1; i <= n; i++)
d[i] = -inf;
q.push({t, 0});
d[t] = 0;
while (!q.empty())
{
int v = q.top().fr, cs = q.top().sc * -1;
q.pop();
if (d[v] < cs)continue;
for (int i = 0; i < g[v].size(); i++)
{
int to = g[v][i].fr, cost = g[v][i].sc;
if (d[to] < cost + d[v])
{
// cout << v << " " << to << " " << d[v] << endl;
d[to] = cost + d[v];
q.push({to, -d[v]});
}
}
}
mx = -1;
for (int i = 1; i <= n; i++)
{
if (!busy[i] && d[i] != -inf)
{
mx = max(mx, d[i]);
}
}
if (mx == -1 || mx == -inf)
{
cout << -1 << endl;
continue;
}
cout << mx << endl;
memset(busy, 0, sizeof(busy));
}
}
컴파일 시 표준 에러 (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... |