模拟,区间覆盖,区间合并
摘要:
hdoj 1199 Color the Ball题目的思路就是用黑的段去更新白的段,然后合并白的段。更新时,如果全被黑的覆盖了,则令白段的左位置为0。#include <iostream>#include <cstdio>#include <algorithm>using namespace std;struct Node { int l, r;}ns[40005];int len, n;bool cmp( Node nd1, Node nd2 ) { return nd1.l < nd2.l;}void black( int a, int b ) { 阅读全文