# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
383562 | morato | Bitaro’s Party (JOI18_bitaro) | C++17 | 2087 ms | 216940 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 1e5 + 5;
const int MAXS = 200;
vector<int> adj[MAXN], rev[MAXN];
vector<pair<int, int>> caras[MAXN], result;
int bosta[MAXN], dp[MAXN], valid[MAXN];
bool mark[MAXN], blocked[MAXN];
void merge(int a, int b) {
result.clear();
int j = 0;
for (int i = 0; i < (int) caras[a].size(); i++) {
for (; j < (int) caras[b].size() && caras[b][j].first + 1 > caras[a][i].first; j++) {
result.push_back({caras[b][j].first + 1, caras[b][j].second});
}
result.push_back(caras[a][i]);
}
for (; j < (int) caras[b].size(); j++) {
result.push_back({caras[b][j].first + 1, caras[b][j].second});
}
caras[a].clear();
for (auto x : result) {
if (!mark[x.second] && (int) caras[a].size() < MAXS + 1) {
caras[a].push_back(x);
mark[x.second] = true;
}
}
for (auto x : caras[a]) {
mark[x.second] = false;
}
}
int main(){
// ios::sync_with_stdio(false);
// cin.tie(0);
int n, m, q;
// cin >> n >> m >> q;
scanf("%d %d %d", &n, &m, &q);
for (int i = 0; i < m; i++) {
int a, b;
// cin >> a >> b;
scanf("%d %d", &a, &b);
adj[a].push_back(b);
rev[b].push_back(a);
}
for (int i = 1; i <= n; i++) {
caras[i].push_back({0, i});
for (int u : adj[i]) {
merge(u, i);
}
}
for (int i = 0; i < q; i++) {
int t, y;
// cin >> t >> y;
scanf("%d %d", &t, &y);
for (int j = 0; j < y; j++) {
// cin >> bosta[j];
scanf("%d", &bosta[j]);
blocked[bosta[j]] = true;
}
if (y > MAXS) {
for (int j = 1; j <= n; j++) {
dp[j] = -1000000000;
}
dp[t] = 0;
for (int v = n; v >= 1; v--) {
for (int u : rev[v]) {
dp[u] = max(dp[u], dp[v] + 1);
}
}
int ans = -1;
for (int j = 1; j <= t; j++) {
if (!blocked[j]) ans = max(ans, dp[j]);
}
cout << ans << '\n';
} else {
int ans = -1;
for (auto x : caras[t]) {
if (!blocked[x.second]) {
ans = x.first;
break;
}
}
// cout << ans << '\n';
printf("%d\n", ans);
}
for (int j = 0; j < y; j++) {
blocked[bosta[j]] = false;
}
}
return 0;
}
Compilation message (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... |