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>
#define taskname "A"
using namespace std;
const int INF = 1e9;
template<class T>void maximize(T& a, T b){
if(a < b){
a = b;
}
}
int n, m, q;
namespace sub12{
const int lim = 1e5 + 5;
vector<int>e[lim];
int dp[lim];
void solve(){
for(int _ = 0; _ < m; _++){
int u, v;
cin >> u >> v;
e[v].emplace_back(u);
}
int t, y;
cin >> t >> y;
bitset<lim>busy;
busy.reset();
for(int _ = 0; _ < y; _++){
int x;
cin >> x;
busy.set(x);
}
for(int i = 1; i <= n; i++){
dp[i] = (busy.test(i) ? -INF : 0);
for(int& v : e[i]){
maximize(dp[i], dp[v] + 1);
}
}
cout << max(dp[t], -1);
}
}
namespace sub3{
const int lim = 1e5 + 5;
const int SIZE = 320;
vector<int>e[lim];
vector<pair<int, int>>candidate[lim];
int dp[lim], d[lim], vis[lim];
void solve(){
for(int _ = 0; _ < m; _++){
int u, v;
cin >> u >> v;
e[v].emplace_back(u);
}
memset(d, 0, sizeof(d));
memset(vis, 0, sizeof(vis));
for(int i = 1; i <= n; i++){
vector<int>current(1, i);
for(int& j : e[i]){
for(auto& [w, k] : candidate[j]){
if(vis[k] == i){
maximize(d[k], w + 1);
}
else{
current.emplace_back(k);
vis[k] = i;
d[k] = w + 1;
}
}
}
for(int& x : current){
candidate[i].emplace_back(d[x], x);
}
sort(candidate[i].begin(), candidate[i].end(), greater<pair<int, int>>());
if(candidate[i].size() > SIZE){
candidate[i].erase(candidate[i].begin() + SIZE, candidate[i].end());
}
}
memset(vis, -1, sizeof(vis));
for(int _i = 0; _i < q; _i++){
int t, y;
cin >> t >> y;
vector<int>a(y);
for(int& x : a){
cin >> x;
vis[x] = _i;
}
if(y < SIZE){
for(auto& [w, u] : candidate[t]){
if(vis[u] != _i){
cout << w << "\n";
break;
}
}
continue;
}
memset(dp, 0, sizeof(dp));
for(int& x : a){
dp[x] = -INF;
}
for(int i = 1; i <= n; i++){
for(int& v : e[i]){
maximize(dp[i], dp[v] + 1);
}
}
cout << max(dp[t], -1) << "\n";
}
}
}
int main(){
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
if(fopen(taskname".inp", "r")){
freopen(taskname".inp", "r", stdin);
}
cin >> n >> m >> q;
if(q == 1){
sub12::solve();
}
else{
sub3::solve();
}
}
Compilation message (stderr)
bitaro.cpp: In function 'void sub3::solve()':
bitaro.cpp:56:15: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
56 | for(auto& [w, k] : candidate[j]){
| ^
bitaro.cpp:85:15: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
85 | for(auto& [w, u] : candidate[t]){
| ^
bitaro.cpp: In function 'int main()':
bitaro.cpp:109:10: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
109 | freopen(taskname".inp", "r", stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |