CodeForces-714C - Sonya and Queries【状压 】

 

C - Sonya and Queries

CodeForces - 714C 

 

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

 

#include <map>
#include <set>
#include <cstdio>
#include <cstring>
#include <sstream>
#include <algorithm>
#include <queue>
#include <iostream>
#include <stack>
#include <cmath>
#include <string>
#include <vector>
#include <cstdlib>
//#include <bits/stdc++.h>
//#define LOACL
#define space " "
using namespace std;
typedef long long LL;
//typedef __int64 Int;
typedef pair<int, int> 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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值