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 39 点赞 0 评论 59 浏览