-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathacc1p1.cpp
172 lines (139 loc) · 3.63 KB
/
acc1p1.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
// Ivan Carvalho
// Solution to https://dmoj.ca/problem/acc1p1
#include <bits/stdc++.h>
using namespace std;
typedef struct node *pnode;
struct node {
pnode l, r;
int best, pref, suf, total, comp;
int prior, size, val;
bool flag;
node(int _val = 0) {
l = r = NULL;
best = pref = suf = total = comp = val = _val;
prior = rand();
size = 1;
flag = false;
}
};
void propagate(pnode t) {
if (t == NULL || !t->flag) return;
t->flag = false;
swap(t->suf, t->pref);
swap(t->l, t->r);
if (t->l) t->l->flag ^= true;
if (t->r) t->r->flag ^= true;
}
inline int sz(pnode t) { return t ? t->size : 0; }
inline void upd_sz(pnode t) {
if (t) t->size = sz(t->l) + 1 + sz(t->r);
}
void upd_cont(pnode t) {
if (t == NULL) return;
propagate(t->l);
propagate(t->r);
if (t->val == 0) {
t->best = max(t->l ? (t->l->best) : 0, t->r ? t->r->best : 0);
t->pref = t->l ? t->l->pref : 0;
t->suf = t->r ? t->r->suf : 0;
t->comp = 0;
t->total = (t->l ? t->l->total : 0) + (t->r ? t->r->total : 0);
return;
}
if (t->l && t->r) {
t->comp = t->l->comp && t->r->comp;
t->total = (t->l->total) + 1 + (t->r->total);
t->pref =
max(t->l->pref, (t->l->comp) * (t->l->total + 1 + t->r->pref));
t->suf =
max(t->r->suf, (t->r->comp) * (t->r->total + t->val + t->l->suf));
t->best = max(max(t->l->best, t->r->best), t->l->suf + 1 + t->r->pref);
} else if (t->l) {
t->comp = t->l->comp;
t->total = t->l->total + 1;
t->pref = max(t->l->pref, t->l->comp * (t->l->total + 1));
t->suf = 1 + t->l->suf;
t->best = max(t->l->best, 1 + t->l->suf);
} else if (t->r) {
t->comp = t->r->comp;
t->total = 1 + t->r->total;
t->pref = 1 + t->r->pref;
t->suf = max(t->r->suf, t->r->comp * (t->r->total + 1));
t->best = max(t->r->best, 1 + t->r->pref);
} else {
t->best = t->pref = t->suf = t->total = t->comp = 1;
}
}
void split(pnode t, pnode &l, pnode &r, int key, int add) {
propagate(t);
if (t == NULL) {
l = r = NULL;
return;
}
int cur_key = sz(t->l) + add + 1;
if (key < cur_key) {
split(t->l, l, t->l, key, add);
r = t;
} else {
split(t->r, t->r, r, key, cur_key);
l = t;
}
upd_sz(t);
upd_cont(t);
}
void merge(pnode &t, pnode l, pnode r) {
propagate(l);
propagate(r);
if (l == NULL) {
t = r;
} else if (r == NULL) {
t = l;
} else if (l->prior > r->prior) {
merge(l->r, l->r, r);
t = l;
} else {
merge(r->l, l, r->l);
t = r;
}
upd_sz(t);
upd_cont(t);
}
void reverse(pnode &t, int a, int b) {
pnode L, mid, R;
split(t, L, R, a - 1, 0);
split(R, mid, R, b, sz(L));
mid->flag = true;
merge(t, L, mid);
merge(t, t, R);
}
int query(pnode &t, int a, int b) {
pnode L, mid, R;
split(t, L, R, a - 1, 0);
split(R, mid, R, b, sz(L));
int ans = mid->best;
merge(t, L, mid);
merge(t, t, R);
return ans;
}
int main() {
int N, Q;
scanf("%d %d", &N, &Q);
pnode raiz = NULL;
for (int i = 1; i <= N; i++) {
char c;
scanf(" %c", &c);
pnode novo = new node(c == '1');
merge(raiz, raiz, novo);
}
while (Q--) {
int op, a, b;
scanf("%d %d %d", &op, &a, &b);
a++;
if (op == 1) {
reverse(raiz, a, a + b - 1);
} else {
printf("%d\n", query(raiz, a, a + b - 1));
}
}
return 0;
}