-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAOJ2450.cpp
294 lines (271 loc) · 6 KB
/
AOJ2450.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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
#include <bits/stdc++.h>
using namespace std;
using VS = vector<string>; using LL = long long;
using VI = vector<int>; using VVI = vector<VI>;
using PII = pair<int, int>; using PLL = pair<LL, LL>;
using VL = vector<LL>; using VVL = vector<VL>;
#define ALL(a) begin((a)),end((a))
#define RALL(a) (a).rbegin(), (a).rend()
#define SZ(a) int((a).size())
#define SORT(c) sort(ALL((c)))
#define RSORT(c) sort(RALL((c)))
#define UNIQ(c) (c).erase(unique(ALL((c))), end((c)))
#define FOR(i, s, e) for (int(i) = (s); (i) < (e); (i)++)
#define FORR(i, s, e) for (int(i) = (s); (i) > (e); (i)--)
#define debug(x) cerr << #x << ": " << x << endl
#define db(x) cerr<<#x<<":="<<x<<","
const int INF = 1e9; const LL LINF = 1e16;
const LL MOD = 1000000007; const double PI = acos(-1.0);
int DX[8] = { 0, 0, 1, -1, 1, 1, -1, -1 }; int DY[8] = { 1, -1, 0, 0, 1, -1, 1, -1 };
/* ----- 2018/06/14 Problem: AOJ 2450 / Link: http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=2450 ----- */
/* ------問題------
N頂点の木がある。
以下のクエリをさばけ。
1:[a,b]のpathをcでぬりつぶす
2:[a,b]のpath上で連続している部分列のうち最大値をもつ列の値を出力
-----問題ここまで----- */
/* -----解説等-----
segtreeならどうしたいかを考える。これができればHLDorLCTreeで終わり。
列なら、
1:やるだけ
2:pre,suf,sum,mxをmerge4回でできそう。
HLDのときは、壊れそう(非可換なのでこわれるのは当然)
ネットワークの課金システムっぽくやればできそう(やらない)
mergeパートが大変だった(あたまがこわれるので)
mergeパートは以下(HLD解でも多分同様+列のmergeもしなきゃダメそう)
左からmergeするとする。
最終的に部分列maxがほしい。
これは列のprefix,suffix,部分列からなるもののうちに含まれる
merge則:
- prefix = a.sum+b.prefix, a.prefix
- suffix = b.sum+a.suffix, b.suffix
- sum = a.sum+ b.sum
- max = a.max, b.max, a.prefix+b.suffix
これをLC木に乗せるので3点に拡張する。
あとは全部書くだけ
☆ 向きのあるmerge関数を書いて内部で3点mergeできるようにしたほうが良さそう…
0.65msで通した。はやいHLDの倍ぐらいかかるのかな?
----解説ここまで---- */
const LL NIL = LINF;
struct LCNode {
using NP = LCNode*;
static NP last;
/* main data block */
long long mx, sm, pre, suf;
long long v;
long long lz;
/* block end */
NP init_last() {
sz = 0; // Important
lz = NIL; // Important
mx = pre = suf = -INF;
v = -INF;
sm = 0;
return this;
}
void init_node(int d) {
sz = 1; rev = false; // Important
lz = NIL; // Important
mx = sm = pre = suf = v = d;
}
// push済みのdataに関してやる(mergeと一緒)
void update() {
sz = 1 + l->sz + r->sz; // Important
sm = v + l->sm + r->sm;
// l,c / c,rでやる
// sm , mx, pre, suf
pre = max({ l->pre, l->sm+v,l->sm + v + r->pre });
suf = max({ r->suf, r->sm+v , r->sm + v + l->suf });
mx = max({ v,sm , l->mx, r->mx, l->suf +v + r->pre, l->suf+v, v+r->pre });
}
// 遅延させるのでpush
void push() {
assert(this != last);
if (rev) { // Important
if (l != last) {
l->revdata();
}
if (r != last) {
r->revdata();
}
rev = false;
}
if (lz != NIL) {
if (l != last) {
l->lzdata(lz);
}
if (r != last) {
r->lzdata(lz);
}
lz = NIL;
}
}
void revdata() {
rev ^= true; swap(l, r); // Important
swap(suf, pre);
// if not abelian, swap elem below
}
// 作用素とmonoidのmerge?
void lzdata(long long x) {
lz = x;
v = x;
if (x >= 0) {
mx = sm = pre = suf = x*sz;
}
else {
mx = pre = suf = x;
sm = x*sz;
}
}
/*--- setting ---*/
NP p, l, r;
int sz;
bool rev;
LCNode() : p(nullptr), l(last), r(last) {}
inline int pos() {
if (p) {
if (p->l == this) return -1;
if (p->r == this) return 1;
}
return 0;
}
void rot() {
NP q = p->p;
int pps = p->pos();
if (pps == -1) q->l = this;
if (pps == 1) q->r = this;
if (p->l == this) {
p->l = r;
if (r) r->p = p;
r = p;
}
else {
p->r = l;
if (l) l->p = p;
l = p;
}
p->p = this;
p->update(); update();
p = q;
if (q) q->update();
}
void splay() {
supush();
int ps;
while ((ps = pos())) {
int pps = p->pos();
if (!pps) {
rot();
}
else if (ps == pps) {
p->rot(); rot();
}
else {
rot(); rot();
}
}
}
void expose() {
assert(this != last);
NP u = this, ur = last;
do {
u->splay();
u->r = ur;
u->update();
ur = u;
} while ((u = u->p));
splay();
}
void supush() {
if (pos()) p->supush();
push();
}
void link(NP r) {
evert(); r->expose();
p = r;
}
void cut() {
expose();
l->p = NULL;
l = last;
update();
}
void evert() {
expose(); revdata();
}
//tree func
NP parent() {
expose();
NP u = this->l;
if (u == last) return last;
u->push();
while (u->r != last) {
u = u->r;
u->push();
}
u->expose();
return u;
}
NP root() {
expose();
NP u = this;
while (u->l != last) {
u = u->l;
u->push();
}
u->expose();
return u;
}
NP lca(NP n) {
n->expose();
expose();
NP t = n;
while (n->p != nullptr) {
if (!n->pos()) t = n->p;
n = n->p;
}
return (this == n) ? t : nullptr;
}
};
LCNode::NP LCNode::last = (new LCNode())->init_last();
const int MN = 200005;
LCNode lct[MN];
int getid(LCNode *x) {
return (x - lct);
}
int main() {
int N, Q;
scanf("%d%d", &N, &Q);
int w;
FOR(i, 0, N) {
scanf("%d", &w);
lct[i] = LCNode();
lct[i].init_node(w);
}
int a, b;
FOR(i, 0, N - 1) {
scanf("%d%d", &a, &b);
a--, b--;
lct[b].evert();
lct[b].link(lct+a);
}
lct[0].evert();
FOR(i, 0, N) {
lct[i].expose();
}
int com, c;
FOR(i, 0, Q) {
scanf("%d%d%d%d", &com, &a, &b, &c);
a--, b--;
if (com == 1) {// update
lct[a].evert();
lct[b].expose();
lct[b].lzdata(c);
}
else { // query
lct[a].evert();
lct[b].expose();
printf("%lld\n", lct[b].mx);
}
}
}