Submission #651379

#TimeUsernameProblemLanguageResultExecution timeMemory
651379shmadBitaro’s Party (JOI18_bitaro)C++17
0 / 100
17 ms23824 KiB
#pragma GCC optimize("O3", "unroll-loops") // "Ofast" 	
#pragma GCC target("avx2", "bmi", "bmi2", "lzcnt", "popcnt") 

#include <bits/stdc++.h>

//#define int long long
#define vt vector
#define pb push_back
#define all(x) (x).begin(), (x).end()
#define sz(x) (int)(x).size()
#define ff first
#define ss second
#define dbg(x) cerr << #x << " = " << x << '\n'
#define bit(x, i) ((x) >> (i) & 1)

using namespace std;
using ll = long long;
using pii = pair<int, int>;
using vvt = vt< vt<int> >;

const int N = 1e6 + 5, mod = 1e9 + 7, B = 500;
const ll inf = 1e18 + 7, LIM = (1ll << 60);
const double eps = 1e-6;

int n, m, q, c[N], ans;
vt<int> g[N];
bool used[N], can[N];

void dfs (int v, int dest, int dist = 0) {
	if (v == dest) {
    	ans = max(ans, dist);
    	return;
    }
    used[v] = 1;
	for (auto to: g[v]) {
		if (!used[to]) dfs(to, dest, dist + 1);
	}
}

bool check (int x, int t) {
	for (int i = 1; i <= n; i++) used[i] = 0;
	ans = -1;
	dfs(x, t);
	return (ans != -1);
}

void solve () {
	cin >> n >> m >> q;
	for (int i = 1; i <= m; i++) {
		int x, y;
		cin >> x >> y;
		g[x].pb(y);
	}             
	fill(can, can + n + 1, 1);
	while (q--) {
		int t, y;
		cin >> t >> y;
		for (int i = 1; i <= y; i++) {
			int x;
			cin >> x;
			can[x] = 0;
		}
		int res = -1;
		for (int i = 1; i <= n; i++) {
			if (!can[i]) continue;
			if (check(i, t)) res = max(res, ans);
		}
		cout << res << '\n';
		for (int i = 1; i <= n; i++) can[i] = 1;
	}
	cout << '\n';
}

bool testcases = 0;

signed main() {
#ifdef ONLINE_JUDGE
	freopen(".in", "r", stdin);
	freopen(".out", "w", stdout);
#endif
	cin.tie(0) -> sync_with_stdio(0);
	int test = 1;
	if (testcases) cin >> test;
	for (int cs = 1; cs <= test; cs++) {
		solve();
	}
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...