跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2120. Inna and Binary Logic

    ID: 2126 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 7 上传者: 标签>二分位运算数据结构算法思想数学提高难度共享题库Codeforces英文题面题目来源题面语言

Inna and Binary Logic

题目描述

E. Inna and Binary Logic
time limit per test
3 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Inna is fed up with jokes about female logic. So she started using binary logic instead.

Inna has an array of n elements a1[1],a1[2],...,a1[n]. Girl likes to train in her binary logic, so she does an exercise consisting of n stages: on the first stage Inna writes out all numbers from array a1, on the i-th (i≥2) stage girl writes all elements of array ai, which consists of n-i+1 integers; the k-th integer of array ai is defined as follows: ai[k]=ai-1[k]ANDai-1[k+1]. Here AND is bit-wise binary logical operation.

Dima decided to check Inna's skill. He asks Inna to change array, perform the exercise and say the sum of all elements she wrote out during the current exercise.

Help Inna to answer the questions!

Input

The first line contains two integers n and m (1≤n,m≤105) − size of array a1 and number of Dima's questions. Next line contains n integers a1[1],a1[2],...,a1[n] (0≤ai≤105) − initial array elements.

Each of next m lines contains two integers − Dima's question description. Each question consists of two integers pi,vi (1≤pin;0≤vi≤105). For this question Inna should make a1[pi] equals vi, and then perform the exercise. Please, note that changes are saved from question to question.

Output

For each question print Inna's answer on a single line.

Examples
Input
3 4
1 1 1
1 1
2 2
3 2
1 2
Output
6
4
7
12

题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 1719 题。保留原作者与原赛事署名。