HDOJ 1166 #include<stdio.h>#include<string.h>#define MAX 50000#define L(x) (x << 1)#define R(x) (x << 1|1)typedef struct{ int left; int right; int sum;}Node;Node ... Other 2024-01-03 161 点赞 2 评论 243 浏览