【题目链接】:
【题意】
…水题。。题目太吓人【题解】
只要你在一组里面找到两个数字,它们的绝对值相同,但是正负性相反,那么就可以确定,这一组 里面最少不会全是间谍. 知道这个之后只要贪心一下就好; 遇到一个组里面有互为相反数的,这个组就ok; 如果有一个组没有,就返回false; 【完整代码】#includeusing namespace std;#define lson l,m,rt<<1#define rson m+1,r,rt<<1|1#define LL long long#define rep1(i,a,b) for (int i = a;i <= b;i++)#define rep2(i,a,b) for (int i = a;i >= b;i--)#define mp make_pair#define pb push_back#define fi first#define se second#define rei(x) scanf("%d",&x)#define rel(x) scanf("%lld",&x)#define ref(x) scanf("%lf",&x)typedef pair pii;typedef pair pll;const int dx[9] = { 0,1,-1,0,0,-1,-1,1,1};const int dy[9] = { 0,0,0,-1,1,-1,1,-1,1};const double pi = acos(-1.0);const int N = 110;int n,m;map dic;void in(){ rei(n),rei(m);}bool get_ans(){ rep1(i,1,m) { int k,x; bool ju = false; rei(k); dic.clear(); rep1(j,1,k) { rei(x); if (dic[-x]) ju = true; dic[x] = 1; } if (!ju) return false; } return true;}int main(){ //freopen("F:\\rush.txt","r",stdin); in(); if (get_ans()) puts("NO"); else puts("YES"); //printf("\n%.2lf sec \n", (double)clock() / CLOCKS_PER_SEC); return 0;}