摘要: 1 const int N = 1e5 + 5; 2 3 int a[N]; 4 5 struct LCT { 6 struct Tree { 7 int son[2], tag, val, fa; 8 } tr[N]; 9 10 void init(int ro) { 11 tr[ro].son[ 阅读全文
posted @ 2024-05-29 20:41 ORzyzRO 阅读(21) 评论(0) 推荐(0)