#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pll;
#define all(x) (x).begin(),(x).end()
#define X first
#define Y second
#define sep ' '
#define endl '\n'
#define debug(x) cerr << #x << ": " << x << endl;
const ll MAXN = 2e5 + 10;
const ll LOG = 20;
namespace fenwick {
int fen[MAXN];
vector<pll> hist;
inline void add(int ind, int val, bool save_hist = true) {
for (++ind; ind < MAXN; ind += ind & -ind)
fen[ind] += val;
if (save_hist) hist.push_back({ind, val});
}
inline int query(int ind) {
int ans = 0;
for (++ind; ind > 0; ind -= ind & -ind)
ans += fen[ind];
return ans;
}
inline void reset() {
for (pll e : hist)
add(e.X, -e.Y, false);
hist.clear();
}
}
int n, q, p_w[MAXN], dp[MAXN], sz[MAXN], par[MAXN][LOG], last_edge[MAXN][LOG], H[MAXN];
map<int, int> ans[MAXN];
vector<pll> adj[MAXN];
vector<pair<int, pll>> Q; // time, query
bool B[MAXN], dec_lift[MAXN][LOG], inc_lift[MAXN][LOG];
void pre_dfs(int v, int p) {
H[v] = H[p] + 1;
for (auto [u, w] : adj[v]) {
if (u != p) {
pre_dfs(u, v);
par[u][0] = v;
last_edge[u][0] = w;
inc_lift[u][0] = dec_lift[u][0] = true;
}
}
}
inline int Par(int v, int k) {
for (int i = LOG - 1; i >= 0; i--)
if (k & (1 << i))
v = par[v][i];
return v;
}
inline int LCA(int u, int v) {
if (H[u] > H[v]) swap(v, u);
v = Par(v, H[v] - H[u]);
if (v == u) return v;
for (int i = LOG - 1; i >= 0; i--)
if (par[v][i] != par[u][i])
v = par[v][i], u = par[u][i];
return par[v][0];
}
inline int last_edge_lift(int v, int k) {
int ans = 0;
for (int i = 0; i < LOG; i++)
if (k & (1 << i))
ans = last_edge[v][i], v = par[v][i];
return ans;
}
inline bool is_dec(int v, int k) {
int w = MAXN * 2;
for (int i = 0; i < LOG; i++) {
if (k & (1 << i)) {
if (!dec_lift[v][i] || w < last_edge[v][0])
return false;
w = last_edge[v][i];
v = par[v][i];
}
}
return true;
}
inline bool is_inc(int v, int k) {
int w = -1;
for (int i = 0; i < LOG; i++) {
if (k & (1 << i)) {
if (!inc_lift[v][i] || w > last_edge[v][0])
return false;
w = last_edge[v][i];
v = par[v][i];
}
}
return true;
}
int sub_sz(int v, int p) {
sz[v] = 1;
for (auto [u, w] : adj[v])
if (u != p && !B[u])
sz[v] += sub_sz(u, v);
return sz[v];
}
int find_centroid(int v, int p, int n) {
for (auto [u, w] : adj[v])
if (sz[u] * 2 > n && !B[u] && u != p)
return find_centroid(u, v, n);
return v;
}
void dfs(int v, int p, bool inc, bool dec, int p_w, int init_w) {
if (dec) fenwick::add(init_w, 1);
if (inc) ans[v][p_w] += fenwick::query(init_w - 1);
for (auto [u, w] : adj[v]) {
if (B[u] || u == p) continue;
dfs(u, v, inc && w > p_w, dec && w < p_w, w, init_w);
}
}
inline void solve(int v) {
v = find_centroid(v, 0, sub_sz(v, 0));
B[v] = true;
fenwick::reset();
fenwick::add(0, 1);
for (auto [u, w] : adj[v])
if (!B[u])
dfs(u, v, true, true, w, w);
for (pll e : fenwick::hist)
ans[v][e.X]++;
reverse(all(adj[v]));
fenwick::reset();
for (auto [u, w] : adj[v])
if (!B[u])
dfs(u, v, true, true, w, w);
for (auto [u, w] : adj[v])
if (!B[u])
solve(u);
}
int main() {
ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
cin >> n >> q;
for (int i = 1; i <= n + q - 1; i++) {
char c;
cin >> c;
if (c == 'S') {
int u, v;
cin >> u >> v;
adj[u].push_back({v, i});
adj[v].push_back({u, i});
} else if (c == 'Q') {
int u, v;
cin >> u >> v;
Q.push_back({i, {v, u}});
} else {
int v;
cin >> v;
Q.push_back({i, {-1, v}});
}
}
pre_dfs(1, 0);
for (int i = 1; i < LOG; i++) {
for (int v = 1; v <= n; v++) {
int p = par[v][i - 1];
par[v][i] = par[p][i - 1];
last_edge[v][i] = last_edge[p][i - 1];
inc_lift[v][i] = (inc_lift[v][i - 1] && inc_lift[p][i - 1] && last_edge[v][i - 1] < last_edge[p][0]);
dec_lift[v][i] = (dec_lift[v][i - 1] && dec_lift[p][i - 1] && last_edge[v][i - 1] > last_edge[p][0]);
}
}
solve(1);
for (int v = 1; v <= n; v++) {
int ps = 0;
for (pll e : ans[v]) {
ps += e.Y;
ans[v][e.X] = ps;
} // optimize
}
for (auto [t, e] : Q) {
int u = e.X, v = e.Y;
if (u >= 0) {
int lca = LCA(e.X, e.Y);
// check last edge time
int lst = 0, lst_u = last_edge_lift(u, H[u] - H[lca]), lst_v = last_edge_lift(v, H[v] - H[lca]);
lst = lst_u;
if (v != lca) lst = last_edge[v][0];
cout << (lst <= t && is_inc(u, H[u] - H[lca]) && is_dec(v, H[v] - H[lca])
&& (!lst_v || !lst_u || lst_u < lst_v) ? "yes" : "no") << endl;
} else {
cout << prev(ans[v].upper_bound(t)) -> Y << endl;
}
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
49 ms |
17588 KB |
Output is correct |
2 |
Correct |
62 ms |
19400 KB |
Output is correct |
3 |
Correct |
66 ms |
19464 KB |
Output is correct |
4 |
Correct |
75 ms |
19584 KB |
Output is correct |
5 |
Correct |
63 ms |
19176 KB |
Output is correct |
6 |
Correct |
79 ms |
19164 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
49 ms |
17588 KB |
Output is correct |
2 |
Correct |
62 ms |
19400 KB |
Output is correct |
3 |
Correct |
66 ms |
19464 KB |
Output is correct |
4 |
Correct |
75 ms |
19584 KB |
Output is correct |
5 |
Correct |
63 ms |
19176 KB |
Output is correct |
6 |
Correct |
79 ms |
19164 KB |
Output is correct |
7 |
Incorrect |
55 ms |
17640 KB |
Extra information in the output file |
8 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
54 ms |
17588 KB |
Output is correct |
2 |
Runtime error |
173 ms |
106760 KB |
Execution killed with signal 11 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
54 ms |
17588 KB |
Output is correct |
2 |
Runtime error |
173 ms |
106760 KB |
Execution killed with signal 11 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
56 ms |
17524 KB |
Output is correct |
2 |
Runtime error |
201 ms |
107856 KB |
Execution killed with signal 11 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
56 ms |
17524 KB |
Output is correct |
2 |
Runtime error |
201 ms |
107856 KB |
Execution killed with signal 11 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
45 ms |
17592 KB |
Output is correct |
2 |
Correct |
345 ms |
61256 KB |
Output is correct |
3 |
Runtime error |
170 ms |
95224 KB |
Execution killed with signal 11 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
45 ms |
17592 KB |
Output is correct |
2 |
Correct |
345 ms |
61256 KB |
Output is correct |
3 |
Runtime error |
170 ms |
95224 KB |
Execution killed with signal 11 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
44 ms |
17620 KB |
Output is correct |
2 |
Runtime error |
269 ms |
107848 KB |
Execution killed with signal 11 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
44 ms |
17620 KB |
Output is correct |
2 |
Runtime error |
269 ms |
107848 KB |
Execution killed with signal 11 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
51 ms |
17532 KB |
Output is correct |
2 |
Correct |
60 ms |
19396 KB |
Output is correct |
3 |
Correct |
74 ms |
19516 KB |
Output is correct |
4 |
Correct |
72 ms |
19512 KB |
Output is correct |
5 |
Correct |
63 ms |
19320 KB |
Output is correct |
6 |
Correct |
74 ms |
19144 KB |
Output is correct |
7 |
Correct |
49 ms |
17568 KB |
Output is correct |
8 |
Runtime error |
170 ms |
106860 KB |
Execution killed with signal 11 |
9 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
51 ms |
17532 KB |
Output is correct |
2 |
Correct |
60 ms |
19396 KB |
Output is correct |
3 |
Correct |
74 ms |
19516 KB |
Output is correct |
4 |
Correct |
72 ms |
19512 KB |
Output is correct |
5 |
Correct |
63 ms |
19320 KB |
Output is correct |
6 |
Correct |
74 ms |
19144 KB |
Output is correct |
7 |
Correct |
49 ms |
17568 KB |
Output is correct |
8 |
Runtime error |
170 ms |
106860 KB |
Execution killed with signal 11 |
9 |
Halted |
0 ms |
0 KB |
- |