洛谷P1087 [NOIP 2004 普及组] FBI 树 2025-12-02 23:53 | 26 | 0 | 算法题解 190 字 | 3 分钟 题目 #include <bits/stdc++.h> using namespace std; struct tree{ int l,r; char v; }t[3001]; string s; int n; int two[12]={1,2,4,8,16,32,64,128,256,512,1024,2048}; v… 数据结构树