1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
| #include<bits/stdc++.h> #define Tp template<typename Ty> #define Ts template<typename Ty,typename... Ar> #define W while #define I inline #define RI register int #define LL long long #define Cn const #define CI Cn int& #define gc getchar #define D isdigit(c=gc()) #define pc(c) putchar((c)) #define min(x,y) ((x)<(y)?(x):(y)) #define max(x,y) ((x)>(y)?(x):(y)) using namespace std; namespace Debug{ Tp I void _debug(Cn char* f,Ty t){cerr<<f<<'='<<t<<endl;} Ts I void _debug(Cn char* f,Ty x,Ar... y){W(*f!=',') cerr<<*f++;cerr<<'='<<x<<",";_debug(f+1,y...);} Tp ostream& operator<<(ostream& os,Cn vector<Ty>& V){os<<"[";for(Cn auto& vv:V) os<<vv<<",";os<<"]";return os;} #define gdb(...) _debug(#__VA_ARGS__,__VA_ARGS__) }using namespace Debug; namespace FastIO{ Tp I void read(Ty& x){char c;int f=1;x=0;W(!D) f=c^'-'?1:-1;W(x=(x<<3)+(x<<1)+(c&15),D);x*=f;} Ts I void read(Ty& x,Ar&... y){read(x),read(y...);} Tp I void write(Ty x){x<0&&(pc('-'),x=-x,0),x<10?(pc(x+'0'),0):(write(x/10),pc(x%10+'0'),0);} Tp I void writeln(Cn Ty& x){write(x),pc('\n');} }using namespace FastIO; Cn int N=210,M=10010,P=3*N+6; int T,n,m,p,C[N],G[N][N],fir[P<<1],nxt[P*P<<2],son[P*P<<2],tot,dfn[P<<1],low[P<<1],stk[P<<1],col[P<<1],cnt,top,cc,rk[N]; struct Edge{int x,y;}e[P],E[M]; I void Add(CI x,CI y){nxt[++tot]=fir[x],fir[x]=tot,son[tot]=y;} #define to son[i] I void Tarjan(CI x){ dfn[x]=low[x]=++cnt,stk[++top]=x;RI i; for(i=fir[x];i;i=nxt[i]) if(!dfn[to]) Tarjan(to),low[x]=min(low[x],low[to]);else if(!col[to]) low[x]=min(low[x],dfn[to]); if(dfn[x]==low[x]){col[x]=++cc;W(stk[top]^x) col[stk[top--]]=cc;top--;} } int main(){ RI i,j,u,v,x,y,flg;read(T);W(T--){ for(memset(G,0,sizeof(G)),memset(dfn,0,sizeof(dfn)),read(n,m),i=1;i<=m;i++) read(E[i].x,E[i].y),E[i].x>E[i].y&&(swap(E[i].x,E[i].y),0); for(i=1;i<=n;i++) read(C[i]),rk[C[i]]=i,i>1&&(G[min(C[i-1],C[i-1])][max(C[i-1],C[i])]=1,0);G[min(C[1],C[n])][max(C[1],C[n])]=1; if(m>3*n+6){puts("NO");continue ;} for(memset(col,0,sizeof(col)),flg=cnt=top=cc=p=0,i=1;i<=m;i++) if(!G[E[i].x][E[i].y]) e[++p]=E[i]; for(memset(fir,0,sizeof(fir)),tot=0,i=1;i<=p;i++) for(j=i+1;j<=p;j++){ u=rk[e[i].x],v=rk[e[i].y],x=rk[e[j].x],y=rk[e[j].y]; if(u>v) swap(u,v);if(x>y) swap(x,y); if((u<x&&v>x&&v<y)(u>x&&u<y&&v>y)) Add(i,j+p),Add(i+p,j),Add(j,i+p),Add(j+p,i); }for(i=1;i<=(p<<1);i++) if(!dfn[i]) Tarjan(i);for(i=1;i<=p;i++) if(col[i]==col[i+p]){puts("NO");flg=1;break ;}if(!flg) puts("YES"); }return 0; }
|