蓝桥杯-区间或

本文介绍了一道编程题目,涉及如何使用Python的itertools库和位操作计算给定整数数组中每个数字每位的出现次数,以及在指定范围内的二进制位数量。通过前缀和实现查询特定位的值。
摘要由CSDN通过智能技术生成
"""
https://www.lanqiao.cn/problems/3691/learning/?page=1&first_category_id=1&problem_id=3691
"""
from itertools import accumulate
import sys
input = sys.stdin.readline
print = sys.stdout.write

n, q = map(int, input().split())
a = list(map(int, input().split()))

a_bit = []

# 每一位单独考虑, 求a数组每个数字第i位有(1)还是没有(0)
for i in range(31):
  now_bit = []
  for x in a:
    now_bit.append((x >> i) & 1)
  # 前缀和
  a_bit.append(list(accumulate(now_bit)))

for _ in range(q):
  l, r = map(int, input().split())
  l -= 1
  r -= 1

  ans = 0
  for i in range(31):
    if l == 0:
      now = a_bit[i][r]
    else:
      now = a_bit[i][r] - a_bit[i][l - 1]
    if now > 0:
        ans += (1 << i)
  print(str(ans) + '\n')

  • 3
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

好无聊啊,烦死

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值