博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【codeforces 787B】Not Afraid
阅读量:5079 次
发布时间:2019-06-12

本文共 1360 字,大约阅读时间需要 4 分钟。

【题目链接】:

【题意】

…水题。。题目太吓人

【题解】

只要你在一组里面找到两个数字,它们的绝对值相同,但是正负性相反,那么就可以确定,这一组
里面最少不会全是间谍.
知道这个之后只要贪心一下就好;
遇到一个组里面有互为相反数的,这个组就ok;
如果有一个组没有,就返回false;
【完整代码】

#include 
using 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;}

转载于:https://www.cnblogs.com/AWCXV/p/7626531.html

你可能感兴趣的文章
从一个标准 url 里取出文件的扩展名
查看>>
map基本用法
查看>>
poj-1163 动态规划
查看>>
Golang之interface(多态,类型断言)
查看>>
Redis快速入门
查看>>
BootStrap---2.表格和按钮
查看>>
Linear Algebra lecture 2 note
查看>>
CRC计算模型
查看>>
Ajax之404,200等查询
查看>>
Aizu - 1378 Secret of Chocolate Poles (DP)
查看>>
csv HTTP简单表服务器
查看>>
OO设计的接口分隔原则
查看>>
数据库连接字符串大全 (转载)
查看>>
java类加载和对象初始化
查看>>
对于负载均衡的理解
查看>>
django简介
查看>>
window.event在IE和Firefox的异同
查看>>
常见的js算法面试题收集,es6实现
查看>>
IO流写出到本地 D盘demoIO.txt 文本中
查看>>
Windows10 下Apache服务器搭建
查看>>