제출 #642330

#제출 시각아이디문제언어결과실행 시간메모리
642330dozerJoker (BOI20_joker)C++14
0 / 100
1105 ms262144 KiB
#include <bits/stdc++.h> using namespace std; #define fileio() freopen("input.txt", "r", stdin), freopen("output.txt", "w", stdout) #define fastio() cin.tie(0), ios_base::sync_with_stdio(0) #define sp " " #define endl "\n" #define pb push_back #define pii pair<int, int> #define st first #define nd second #define N 400005 const int modulo = 1e9 + 7; int ans[N], u[N], v[N], l[N], r[N], n; vector<int> ind[N], root, gh[N]; map<int, int> res[N]; int find(vector<int> &b, int node) { if (node < 0) return -(find(b, -node)); if (node == b[node]) return node; if (node == -b[node]) return 0; return b[node] = find(b, b[node]); } int32_t main() { fastio(); int m, q; cin>>n>>m>>q; root.resize(n + 5, 0); for (int i = 1; i <= n; i++) root[i] = i; for (int i = 1; i <= m; i++) { cin>>u[i]>>v[i]; } for (int i = 1; i <= q; i++) { cin>>l[i]>>r[i]; ind[l[i]].pb(r[i]); } for (int t = 1; t <= min(200, m); t++) { for (int i = 1; i <= n; i++) root[i] = i; for (int i = 1; i < t; i++) { if (ans[i] == 1) { ans[i + 1] = 1; continue; } int a = find(root, u[i]), b = find(root, v[i]); if (a == b) { ans[i + 1] = 1; } else { if (a < 0) a *= -1, b *= -1; root[a] = -b; } } for (int i = m; i >= 1; i--) { if (res[t][i] == 1 || ans[t] == 1) { res[t][i - 1] = 1; continue; } int a = find(root, u[i]), b = find(root, v[i]); if (a == b) { res[t][i - 1] = 1; } else { if (a < 0) a *= -1, b *= -1; root[a] = -b; } //cout<<i<<sp<<ans[i]<<endl; } } for (int i = 1; i <= q; i++) { if (res[l[i]][r[i]]) cout<<"YES\n"; else cout<<"NO\n"; } cerr<<"time taken : "<<(float)clock() / CLOCKS_PER_SEC<<" seconds\n"; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...