博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CodeForces-714C - Sonya and Queries【状压 】
阅读量:5775 次
发布时间:2019-06-18

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

 

 

不用字典树进行维护,直接状压用数组保存就可以了。

 

#include #include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
//#include
//#define LOACL#define space " "using namespace std;typedef long long LL;//typedef __int64 Int;typedef pair
paii;const int INF = 0x3f3f3f3f;const double ESP = 1e-5;const double PI = acos(-1.0);const int MOD = 1e9 + 7;const int MAXN = 100000 + 10;LL num[1 << 19], a;int main() { int T; char op; memset(num, 0, sizeof(num)); scanf("%d", &T); while (T--) { getchar(); scanf("%c%lld", &op, &a); LL bit = 0; for (int i = 0; i < 18; i++) { bit |= ((a % 10) & 1) << i, a /= 10; } if (op == '+') num[bit]++; else if (op == '-') num[bit]--; else printf("%d\n", num[bit]); } return 0;}

 

 

转载于:https://www.cnblogs.com/cniwoq/p/6770749.html

你可能感兴趣的文章
基于干净语言和好奇心的敏捷指导
查看>>
Node.js 2017企业用户调查结果发布
查看>>
“软”苹果水逆的一周:杂志服务崩溃,新机型遭泄露,芯片首架离职
查看>>
JAVA的优势就是劣势啊!
查看>>
ELK实战之logstash部署及基本语法
查看>>
帧中继环境下ospf的使用(点到点模式)
查看>>
BeanShell变量和方法的作用域
查看>>
LINUX下防恶意扫描软件PortSentry
查看>>
由数据库对sql的执行说JDBC的Statement和PreparedStatement
查看>>
springmvc+swagger2
查看>>
软件评测-信息安全-应用安全-资源控制-用户登录限制(上)
查看>>
我的友情链接
查看>>
Java Web Application 自架构 一 注解化配置
查看>>
如何 debug Proxy.pac文件
查看>>
Python 学习笔记 - 面向对象(特殊成员)
查看>>
Kubernetes 1.11 手动安装并启用ipvs
查看>>
Puppet 配置管理工具安装
查看>>
Bug多,也别乱来,别被Bug主导了开发
查看>>
sed 替换基础使用
查看>>
高性能的MySQL(5)创建高性能的索引一B-Tree索引
查看>>