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 "werewolf.h"
#include <bits/stdc++.h>
#define MAX 1000000000
using namespace std;
typedef vector<int> vi;
typedef pair<int,int> ii;
int l,r;
bitset<200010> vh,vw;
vector<vi> G;
void dfs_human(int u){
if(u<l) return;
vh[u]=1;
for(auto &v:G[u]){
if(!vh[v]){
dfs_human(v);
}
}
}
void dfs_wolf(int u){
if(u>r) return;
vw[u]=1;
for(auto &v:G[u]){
if(!vw[v]){
dfs_wolf(v);
}
}
}
map<int,int> m,mtr;
vector<int> path;
int vis[800010];
ii tree[800010];
void dfs(int u){
path.push_back(u);
vis[u]=1;
for(auto &v: G[u]){
if(!vis[v]){
dfs(v);
}
}
}
int le[200010];
void init(int node,int a,int b){
if(a>b) return;
if(a==b){
mtr[a]=node;
le[node]=a;
tree[node]=ii(path[a],path[a]);
return;
}
int mid=(a+b)/2;
init(2*node,a,mid);
init(2*node+1,mid+1,b);
tree[node].first=min(tree[2*node+1].first,tree[2*node].first);
tree[node].second=max(tree[2*node+1].second,tree[2*node].second);
}
int find_left(int node,int l,int r){
//si node simepre se puede
while(node>1 and (~node&1 or node-- and l<=tree[node].first and tree[node].second<=r)){
node/=2;
}
if(node==1) return 0;
while(true){
if(le[node]!=-1) break;
if(l<=tree[2*node+1].first and tree[2*node+1].second<=r) node=2*node;
else node=2*node+1;
}
return le[node]+1;
}
int M;
int find_right(int node,int l,int r){
while(node>1 and (~node&1 or node-- and l<=tree[node].first and tree[node].second<=r)){
node/=2;
}
if(node==1) return M+1;
while(true){
if(le[node]!=-1) break;
if(l<=tree[2*node].first and tree[2*node].second<=r) node=2*node+1;
else node=2*node;
}
return le[node]-1;
}
std::vector<int> check_validity(int N, std::vector<int> X, std::vector<int> Y,
std::vector<int> S, std::vector<int> E,
std::vector<int> L, std::vector<int> R) {
M=N-1;
G.resize(N+1);
for(int i=0;i<X.size();i++){
int u=X[i],v=Y[i];
G[u].push_back(v);
G[v].push_back(u);
}
bool sw=0;
int id;
for(int i=0;i<N;i++){
if(G[i].size()>2){
sw=1;
}
if(G[i].size()==1) id=i;
}
vector<int> res;
/* if(sw==1){
for(int i=0;i<S.size();i++){
l=L[i];
r=R[i];
vh.reset();
vw.reset();
dfs_human(S[i]);
dfs_wolf(E[i]);
bool sw=0;
for(int i=0;i<N;i++){
if(vh[i]==1 and vw[i]==1){
sw=1;
break;
}
}
res.push_back(sw);
}
}*/
// else{
dfs(id);
for(int i=0;i<path.size();i++){
m[path[i]]=i+1;
}
memset(le,-1,sizeof le);
init(1,1,N);
int q=S.size();
for(int i=0;i<q;i++){
int ns=mtr[m[S[i]]];
int ne=mtr[m[E[i]]];
int la=find_left(ns,L[i],N);
int ra=find_right(ns,L[i],N);
int lb=find_left(ne,1,R[i]);
int rb=find_right(ne,1,R[i]);
// cout<<la<<" "<<ra<<" "<<lb<<" "<<rb<<" "<<ns<<" "<<ne<<endl;
if((la<=lb and ra>=lb) or (la<=rb and ra>=rb)) res.push_back(1);
else res.push_back(0);
}
// }
return res;
}
Compilation message (stderr)
werewolf.cpp: In function 'int find_left(int, int, int)':
werewolf.cpp:58:63: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
58 | while(node>1 and (~node&1 or node-- and l<=tree[node].first and tree[node].second<=r)){
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
werewolf.cpp: In function 'int find_right(int, int, int)':
werewolf.cpp:71:63: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
71 | while(node>1 and (~node&1 or node-- and l<=tree[node].first and tree[node].second<=r)){
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
werewolf.cpp: In function 'std::vector<int> check_validity(int, std::vector<int>, std::vector<int>, std::vector<int>, std::vector<int>, std::vector<int>, std::vector<int>)':
werewolf.cpp:87:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
87 | for(int i=0;i<X.size();i++){
| ~^~~~~~~~~
werewolf.cpp:121:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
121 | for(int i=0;i<path.size();i++){
| ~^~~~~~~~~~~~
werewolf.cpp:92:8: warning: variable 'sw' set but not used [-Wunused-but-set-variable]
92 | bool sw=0;
| ^~
werewolf.cpp:120:8: warning: 'id' may be used uninitialized in this function [-Wmaybe-uninitialized]
120 | dfs(id);
| ~~~^~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |