摘要: #include<bits/stdc++.h> #define ls (rt << 1) // 左儿子 #define rs (rt << 1 | 1) // 右儿子 using namespace std; const int N = 1e5 + 5; // 最大节点数 const int M = 阅读全文
posted @ 2025-12-09 21:00 词印 阅读(21) 评论(1) 推荐(1)