t = int(input())
for _ in range(t):
n, q = map(int, input().split())
final_sum = 0
num_even = 0
num_odd = 0
for x in (input().split()):
x = int(x)
final_sum += x
if x % 2:
num_odd += 1
num_even = n - num_odd
for i in range(q):
type, to_add = map(int, input().split())
if type == 0:
final_sum += to_add * num_even
if to_add % 2:
num_odd += num_even
num_even = 0
else:
final_sum += to_add * num_odd
if to_add % 2:
num_even += num_odd
num_odd = 0
print(final_sum)
#include <bits/stdc++.h>
using namespace std;
int main()
{
int t;
cin >> t;
while(t--)
{
int n, q, ch = 0, nch = 0;
long long sum = 0;
cin >> n >> q;
vector<int> a;
vector<int> type;
vector<int> k;
for(int i = 0; i < n; i++)
{
int x;
cin >> x;
a.push_back(x);
sum += x;
}
for(int i = 0; i < q; i++)
{
int x, y;
cin >> x >> y;
type.push_back(x);
k.push_back(y);
}
for(int i = 0; i < n; i++)
{
if (a[i] % 2 == 0) ch++;
else nch++;
}
for(int i = 0; i < q; i++)
{
if(type[i] == 1) sum += nch * k[i];
else sum += ch * k[i];
if(k[i] % 2 != 0 && type[i] == 0) {nch += ch; ch = 0;}
if(k[i] % 2 != 0 && type[i] == 1) {ch += nch; nch = 0;}
cout << sum << endl;
}
}
}
550B - Preparing Olympiad | 939B - Hamster Farm |
732A - Buy a Shovel | 1220C - Substring Game in the Lesson |
452A - Eevee | 1647B - Madoka and the Elegant Gift |
1408A - Circle Coloring | 766B - Mahmoud and a Triangle |
1618C - Paint the Array | 469A - I Wanna Be the Guy |
1294A - Collecting Coins | 1227A - Math Problem |
349A - Cinema Line | 47A - Triangular numbers |
1516B - AGAGA XOOORRR | 1515A - Phoenix and Gold |
1515B - Phoenix and Puzzle | 155A - I_love_username |
49A - Sleuth | 1541A - Pretty Permutations |
1632C - Strange Test | 673A - Bear and Game |
276A - Lunch Rush | 1205A - Almost Equal |
1020B - Badge | 1353A - Most Unstable Array |
770A - New Password | 1646B - Quality vs Quantity |
80A - Panoramix's Prediction | 1354B - Ternary String |