[Template] Segment Tree

2017-10-26

import java.util.Scanner; class Tree { int left; int right; int count; //Stand for what you want to record Tree(int l, int r) { ...