摘要:
#include#define N 10007using namespace std;vector p[N];bool vis[N*2];int mat[N*2];bool find(int x){ for(int i=p[x].size()-1;i>=0;--i){ int y=p[x][i];... 阅读全文
摘要:
#include#define N 10007using namespace std;vector p[N];bool vis[N*2];int mat[N*2];bool find(int x){ for(int i=p[x].size()-1;i>=0;--i){ int y=p[x][i];... 阅读全文
|