-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmonoblock copy.cpp
65 lines (63 loc) · 1.31 KB
/
monoblock copy.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#include <bits/stdc++.h>
using namespace std;
int main()
{
long long l, q;
cin>>l>>q;
vector<long long> d;
for(long long j=0; j<l; j++)
{
long long a;
cin>>a;
d.push_back(a);
}
long long prev = d[0];
long long ans=l*(l+1)/2;
for(long long j=1; j<l; j++)
{
if(d[j]!=prev)
{
ans += j*(l-j);
prev=d[j];
}
}
for(long long k=0; k<q; k++)
{
long long x, y;
cin>>x>>y;
long long a = x-2;
long long b = x;
long long ls=0;
long long rs = 0;
if(a>=0 && d[a]!=d[x-1]) ls=1;
if(b<l && d[x-1]!=d[b]) rs=1;
d[x-1]=y;
if(a>=0)
{
if(ls==1 && d[a]==d[x-1])
{
ans-=(a+1)*(l-a-1);
// cout<<"h";
}
else if(ls!=1 && d[a]!=d[x-1])
{
ans += (a+1)*(l-a-1);
// cout<<"i";
}
}
if(b<l)
{
if(rs==1 && d[b]==d[x-1])
{
ans-=x*(l-x);
// cout<<"j";
}
else if(rs!=1 && d[b]!=d[x-1])
{
ans += x*(l-x);
// cout<<"k";
}
}
cout<<ans<<endl;
}
}