成段更新(上色 POJ 2777)
摘要:
import java.io.*;import java.util.*;import java.math.*;import java.text.*;public classMain { int L, T, O, A, B, C; Tree tree[]; int countBit(int x){ int out; for(out=0;x > 0;x>>=1) out+=x&1; return out; } void build(int pos, int lt, int rt) { tree[pos] = new Tree(); tree[pos].lt = lt; t 阅读全文
posted @ 2013-03-06 00:12 Sure_Yi 阅读(162) 评论(0) 推荐(0) 编辑