이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int N, M, Q;
vector<vector<int>> adj;
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
cin >> N >> M >> Q;
adj.resize(N);
for (int i = 0; i < M; i++) {
int a, b; cin >> a >> b; a--; b--;
adj[b].push_back(a);
}
vector<vector<int>> sol(N);
for (int i = 0; i < N; i++) {
sol[i].resize(i+1, INT_MIN);
sol[i][i] = 0;
for (int j : adj[i]) {
for (int k = 0; k <= j; k++) sol[i][k] = max(sol[i][k], sol[j][k] + 1);
}
}
while (Q--) {
int T, Y; cin >> T >> Y; T--;
vector<bool> busy(N, false);
for (int i = 0; i < Y; i++) {
int a; cin >> a; a--;
busy[a] = true;
}
int ans = -1;
for (int i = 0; i <= T; i++) {
if (!busy[i]) {
ans = max(ans, sol[T][i]);
}
}
cout << ans << '\n';
}
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... |