#include <bits/stdc++.h>
#include <random>
#ifndef LOCAL
// #pragma GCC optimize("O3")
// #pragma GCC optimize("Ofast")
// #pragma GCC optimize("unroll-loops")
// #pragma GCC target("avx,avx2,bmi,bmi2,popcnt,lzcnt")
#endif
using namespace std;
typedef long long ll;
typedef double dd;
typedef long double ld;
typedef unsigned int uii;
#define x first
#define y second
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
void solve();
mt19937_64 mt(1);
int32_t main() {
#ifdef LOCAL
freopen("input.in", "r", stdin);
freopen("output.out", "w", stdout);
#else
ios::sync_with_stdio(false);
cin.tie(nullptr); cout.tie(nullptr);
//freopen("amusing.in", "r", stdin);
//freopen("amusing.out", "w", stdout);
#endif
cout << fixed << setprecision(30);
int tests = 1;
//cin >> tests;
while (tests--) {
solve();
}
}
#define int ll
ll mod;
class SegmentTree {
public:
void build(const vector<int>& b) {
int sz = 1;
while (sz < b.size()) {
sz *= 2;
}
x.resize(2 * sz - 1);
vn.resize(2 * sz - 1, 1);
size = 2 * sz - 1;
for (int i = sz - 1; i < 2 * sz - 1; i++) {
if (i - sz + 1 < b.size()) {
x[i] = b[i - sz + 1];
} else {
x[i] = 0;
}
}
for (int i = sz - 2; i >= 0; i--) {
//update(i);
x[i] = 0;
}
}
int get(int l, int r, int i = 0, int lx = 0, int rx = -1) {
if (rx == -1) {
rx = size / 2;
}
if (lx > r || rx < l) {
return 0;
}
if (lx >= l && rx <= r) {
return x[i];
}
updateVN(i);
return get(l, r, 2 * i + 1, lx, (rx + lx) / 2) + get(l, r, 2 * i + 2, (rx + lx) / 2 + 1, rx);
}
void change(int ind, int c, int i = 0, int lx = 0, int rx = -1) {
if (rx == -1) {
rx = size / 2;
}
if (lx == rx) {
x[i] = c;
return;
}
updateVN(i);
if ((rx + lx) / 2 >= ind) {
change(ind, c, 2 * i + 1, lx, (rx + lx) / 2);
} else {
change(ind, c, 2 * i + 2, (rx + lx) / 2 + 1, rx);
}
//update(i);
}
void plusOtr(int l, int r, ll p, int i = 0, int lx = 0, int rx = -1) {
if (r < l) {
return;
}
if (rx == -1) {
rx = size / 2;
}
if (lx >= l && rx <= r) {
x[i] = (x[i] * p) % mod;
vn[i] = (vn[i] * p) % mod;
return;
}
if (lx > r || rx < l) {
return;
}
updateVN(i);
plusOtr(l, r, p, 2 * i + 1, lx, (rx + lx) / 2);
plusOtr(l, r, p, 2 * i + 2, (rx + lx) / 2 + 1, rx);
//update(i);
}
private:
vector<ll> x, vn;
int size;
void updateVN(int i) {
if (2 * i + 2 < size) {
if (vn[i] != 1) {
if (x[2 * i + 1]) {
x[2 * i + 1] = (x[2 * i + 1] * vn[i]) % mod;
}
vn[2 * i + 1] = (vn[2 * i + 1] * vn[i]) % mod;
if (x[2 * i + 2]) {
x[2 * i + 2] = (x[2 * i + 2] * vn[i]) % mod;
}
vn[2 * i + 2] = (vn[2 * i + 2] * vn[i]) % mod;
vn[i] = 1;
}
}
}
void update(int i) {
if (2 * i + 2 < size) {
x[i] = x[2 * i + 1] + x[2 * i + 2];
}
}
};
void dfs(int s, int p, vector<vector<int>>& g, vector<int>& dist, vector<vector<int>>& d, vector<vector<pair<int, int>>>& seg, vector<int>& pr) {
if (p != -1) {
dist[s] = dist[p] + 1;
} else {
dist[s] = 0;
}
pr[s] = p;
d[dist[s]].push_back(s);
seg[s][0] = {d[dist[s]].size() - 1, d[dist[s]].size() - 1};
for (int i = 1; i < 41; i++) {
seg[s][i] = {INT32_MAX, INT32_MIN};
}
bool f = true;
for (int i : g[s]) {
if (i != p) {
dfs(i, s, g, dist, d, seg, pr);
for (int j = 1; j < 41; j++) {
seg[s][j].x = min(seg[s][j].x, seg[i][j - 1].x);
}
for (int j = 1; j < 41; j++) {
seg[s][j].y = max(seg[s][j].y, seg[i][j - 1].y);
}
}
}
}
void solve() {
int n;
cin >> n >> mod;
vector<vector<int>> g(n), d(n);
vector<int> deg(n, 0), dist(n), h(n), p(n);
vector<vector<pair<int, int>>> seg(n, vector<pair<int, int>>(41, {INT32_MAX, INT32_MIN}));
for (int i = 0; i < n - 1; i++) {
int u, v;
cin >> u >> v; u--; v--;
g[u].push_back(v);
g[v].push_back(u);
deg[u]++;
deg[v]++;
}
int root = 0;
for (int i = 0; i < n; i++) {
if (deg[i] == 1) {
root = i;
break;
}
}
dfs(root, -1, g, dist, d, seg, p);
for (int i = 0; i < n; i++) {
cin >> h[i];
}
for (int i = 0; i < n; i++) {
for (int j = 0; j < d[i].size(); j++) {
d[i][j] = h[d[i][j]];
}
}
vector<SegmentTree> dec(n);
for (int i = 0; i < n; i++) {
dec[i].build(d[i]);
}
int q;
cin >> q;
while (q--) {
int t;
cin >> t;
if (t == 1) {
int x, dk, wk;
cin >> x >> dk >> wk; x--;
vector<int> pr(dk + 1);
pr[0] = x;
int gr = INT32_MAX;
for (int i = 1; i <= dk; i++) {
pr[i] = p[pr[i - 1]];
if (pr[i] == -1) {
gr = i - 1;
pr[i] = pr[i - 1];
}
}
for (int l = -dk; l <= dk; l++) {
if (dist[x] - l < 0) {
break;
}
if (dist[x] - l >= n) {
continue;
}
if ((dk + l) / 2 - l >= 0 && (dk + l) / 2 - l <= dk) {
int l1, r1;
l1 = seg[pr[(dk + l) / 2]][(dk + l) / 2 - l].x;
r1 = seg[pr[(dk + l) / 2]][(dk + l) / 2 - l].y;
dec[dist[x] - l].plusOtr(l1, r1, wk);
}
}
} else {
int x;
cin >> x; x--;
cout << (dec[dist[x]].get(seg[x][0].x, seg[x][0].y) % mod + mod) % mod << '\n';
}
}
}
Compilation message
sprinkler.cpp: In member function 'void SegmentTree::build(const std::vector<long long int>&)':
sprinkler.cpp:52:19: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
52 | while (sz < b.size()) {
| ~~~^~~~~~~~~~
sprinkler.cpp:59:28: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
59 | if (i - sz + 1 < b.size()) {
| ~~~~~~~~~~~^~~~~~~~~~
sprinkler.cpp: In function 'void dfs(ll, ll, std::vector<std::vector<long long int> >&, std::vector<long long int>&, std::vector<std::vector<long long int> >&, std::vector<std::vector<std::pair<long long int, long long int> > >&, std::vector<long long int>&)':
sprinkler.cpp:160:10: warning: unused variable 'f' [-Wunused-variable]
160 | bool f = true;
| ^
sprinkler.cpp: In function 'void solve()':
sprinkler.cpp:200:27: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
200 | for (int j = 0; j < d[i].size(); j++) {
| ~~^~~~~~~~~~~~~
sprinkler.cpp:218:17: warning: variable 'gr' set but not used [-Wunused-but-set-variable]
218 | int gr = INT32_MAX;
| ^~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
599 ms |
197828 KB |
Output is correct |
3 |
Correct |
682 ms |
194884 KB |
Output is correct |
4 |
Correct |
590 ms |
212048 KB |
Output is correct |
5 |
Correct |
578 ms |
196100 KB |
Output is correct |
6 |
Correct |
591 ms |
196256 KB |
Output is correct |
7 |
Correct |
595 ms |
195776 KB |
Output is correct |
8 |
Correct |
512 ms |
195312 KB |
Output is correct |
9 |
Correct |
612 ms |
213720 KB |
Output is correct |
10 |
Correct |
670 ms |
210388 KB |
Output is correct |
11 |
Correct |
518 ms |
197680 KB |
Output is correct |
12 |
Correct |
731 ms |
194892 KB |
Output is correct |
13 |
Correct |
458 ms |
194700 KB |
Output is correct |
14 |
Correct |
564 ms |
195952 KB |
Output is correct |
15 |
Correct |
589 ms |
194924 KB |
Output is correct |
16 |
Correct |
585 ms |
194988 KB |
Output is correct |
17 |
Correct |
628 ms |
194964 KB |
Output is correct |
18 |
Correct |
1 ms |
344 KB |
Output is correct |
19 |
Correct |
1 ms |
344 KB |
Output is correct |
20 |
Correct |
1 ms |
344 KB |
Output is correct |
21 |
Correct |
0 ms |
344 KB |
Output is correct |
22 |
Correct |
1 ms |
344 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
599 ms |
197828 KB |
Output is correct |
3 |
Correct |
682 ms |
194884 KB |
Output is correct |
4 |
Correct |
590 ms |
212048 KB |
Output is correct |
5 |
Correct |
578 ms |
196100 KB |
Output is correct |
6 |
Correct |
591 ms |
196256 KB |
Output is correct |
7 |
Correct |
595 ms |
195776 KB |
Output is correct |
8 |
Correct |
512 ms |
195312 KB |
Output is correct |
9 |
Correct |
612 ms |
213720 KB |
Output is correct |
10 |
Correct |
670 ms |
210388 KB |
Output is correct |
11 |
Correct |
518 ms |
197680 KB |
Output is correct |
12 |
Correct |
731 ms |
194892 KB |
Output is correct |
13 |
Correct |
458 ms |
194700 KB |
Output is correct |
14 |
Correct |
564 ms |
195952 KB |
Output is correct |
15 |
Correct |
589 ms |
194924 KB |
Output is correct |
16 |
Correct |
585 ms |
194988 KB |
Output is correct |
17 |
Correct |
628 ms |
194964 KB |
Output is correct |
18 |
Correct |
1 ms |
344 KB |
Output is correct |
19 |
Correct |
1 ms |
344 KB |
Output is correct |
20 |
Correct |
1 ms |
344 KB |
Output is correct |
21 |
Correct |
0 ms |
344 KB |
Output is correct |
22 |
Correct |
1 ms |
344 KB |
Output is correct |
23 |
Correct |
0 ms |
344 KB |
Output is correct |
24 |
Correct |
576 ms |
197816 KB |
Output is correct |
25 |
Correct |
822 ms |
195272 KB |
Output is correct |
26 |
Correct |
667 ms |
212048 KB |
Output is correct |
27 |
Correct |
616 ms |
196176 KB |
Output is correct |
28 |
Correct |
692 ms |
196300 KB |
Output is correct |
29 |
Correct |
661 ms |
196844 KB |
Output is correct |
30 |
Correct |
568 ms |
195644 KB |
Output is correct |
31 |
Correct |
594 ms |
213832 KB |
Output is correct |
32 |
Correct |
760 ms |
210796 KB |
Output is correct |
33 |
Correct |
567 ms |
197768 KB |
Output is correct |
34 |
Correct |
819 ms |
194564 KB |
Output is correct |
35 |
Correct |
1 ms |
344 KB |
Output is correct |
36 |
Correct |
1 ms |
344 KB |
Output is correct |
37 |
Correct |
1 ms |
344 KB |
Output is correct |
38 |
Correct |
1 ms |
344 KB |
Output is correct |
39 |
Correct |
1 ms |
344 KB |
Output is correct |
40 |
Correct |
0 ms |
344 KB |
Output is correct |
41 |
Correct |
1 ms |
344 KB |
Output is correct |
42 |
Correct |
1 ms |
600 KB |
Output is correct |
43 |
Correct |
1 ms |
344 KB |
Output is correct |
44 |
Correct |
0 ms |
348 KB |
Output is correct |
45 |
Correct |
0 ms |
344 KB |
Output is correct |
46 |
Correct |
0 ms |
348 KB |
Output is correct |
47 |
Correct |
1 ms |
348 KB |
Output is correct |
48 |
Correct |
1 ms |
344 KB |
Output is correct |
49 |
Correct |
1 ms |
344 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
600 KB |
Output is correct |
2 |
Correct |
965 ms |
211116 KB |
Output is correct |
3 |
Correct |
3882 ms |
210532 KB |
Output is correct |
4 |
Correct |
1492 ms |
210620 KB |
Output is correct |
5 |
Correct |
2328 ms |
194652 KB |
Output is correct |
6 |
Correct |
1657 ms |
194756 KB |
Output is correct |
7 |
Correct |
1227 ms |
195468 KB |
Output is correct |
8 |
Correct |
567 ms |
194100 KB |
Output is correct |
9 |
Correct |
1012 ms |
211108 KB |
Output is correct |
10 |
Correct |
3802 ms |
210772 KB |
Output is correct |
11 |
Correct |
1297 ms |
195408 KB |
Output is correct |
12 |
Execution timed out |
4041 ms |
194668 KB |
Time limit exceeded |
13 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |