이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define optimize ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL)
#define ALL(x) x.begin(), x.end()
#define endl "\n"
#define ll long long
#define vi vector<int>
#define pii pair<int,int>
#define INF 0x3f3f3f3f
const int MAXN = 1e5 + 5;
const int SQRT = 350;
using namespace std;
int block[MAXN], tempo = 0;
vi trafo[MAXN];
set<pii> best[MAXN];
void precalc(int u){
for(auto v : trafo[u])
{
precalc(v);
best[u].emplace(-1, v);
for(auto [x, w] : best[v])
{
best[u].emplace(x-1, w);
while(best[u].size() > SQRT)
best[u].erase(--best[u].end());
}
}
while(best[u].size() > SQRT)
best[u].erase(--best[u].end());
}
int dp[MAXN];
int calc[MAXN], iter = 0;
int solve(int u){
if(calc[u] == iter) return dp[u];
int ans = (block[u] == tempo ? -1 : 0);
for(auto v : trafo[u])
{
int temp = solve(v)+1;
if(temp) ans = max(ans, temp);
}
calc[u] = iter;
return dp[u] = ans;
}
int main(){
optimize;
int n, m, q;
cin >> n >> m >> q;
for(int i=0, u, v; i<m; i++)
{
cin >> u >> v;
trafo[v].emplace_back(u);
}
for(int i=1; i<=n; i++)
precalc(i);
int t, y;
while(q--)
{
tempo++;
cin >> t >> y;
for(int i=0, x; i<y; i++)
cin >> x, block[x] = tempo;
int ans = -1;
for(auto [x, w] : best[t])
if(block[w] != tempo)
{
ans = -x;
break;
}
if(ans == -1) iter++, ans = solve(t);
cout << ans << endl;
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |