我是靠谱客的博主 舒服羊,最近开发中收集的这篇文章主要介绍HDU-2017 多校训练赛5-1001-Rikka with Candies,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

ACM模版

描述

描述

题解

这个题的定位是 MediumEasy ,可是我比赛时却没有看懂题。

官方题解:
描述

bitset 的确是一个好东西,需要看看它有哪些高雅操作了~~~

代码

#include <iostream>
#include <algorithm>
#include <cstdio>
#include <bitset>

using namespace std;

const int MAXN = 5e4 + 10;

int n, m, q;
bitset<MAXN> a, b, ans;
bitset<MAXN> bb;    //  b的倍数,bb[i] = 1: 有奇数个 y 满足 i % b[y] == 0

void solve(int mk)
{
    bb.reset();
    ans.reset();
    for (int i = mk; i >= 0; --i)
    {
        ans[i] = (bb & (a >> i)).count() & 1;
        if (b[i])
        {
            //  枚举 b[i] 的倍数
            for (int j = 0; j < MAXN; j += i)
            {
                bb.flip(j);
            }
        }
    }
}

template <class T>
inline void scan_d(T &ret)
{
    char c;
    ret = 0;
    while ((c = getchar()) < '0' || c > '9');
    while (c >= '0' && c <= '9')
    {
        ret = ret * 10 + (c - '0'), c = getchar();
    }
}

int main()
{
    int T;
    scan_d(T);

    while (T--)
    {
        scan_d(n), scan_d(m), scan_d(q);

        a.reset();
        b.reset();
        int mk = 0, x;
        for (int i = 0; i < n; i++)
        {
            scan_d(x);
            a.set(x);
        }
        for (int i = 0; i < m; i++)
        {
            scan_d(x);
            b.set(x);
            mk = max(mk, x);
        }

        solve(mk);

        while (q--)
        {
            scanf("%d", &x);
            if (ans[x])
            {
                puts("1");
            }
            else
            {
                puts("0");
            }
        }
    }

    return 0;
}

最后

以上就是舒服羊为你收集整理的HDU-2017 多校训练赛5-1001-Rikka with Candies的全部内容,希望文章能够帮你解决HDU-2017 多校训练赛5-1001-Rikka with Candies所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部