代码源每日一题DIV2 #106 订单编号
代码源每日一题DIV2 #106 订单编号
思路
使用set维护未使用编号,即set里面的所有区间中的每个编号都是未被使用过的,每次根据编号的情况进行打印新编号以及维护区间 学到的东西
用set维护区间的思想将点问题包含入区间中进行求解编码技巧:set里面可以装pair,且pair中进行lower_bound的效果为
lower_bound() returns an iterator pointing to the first element in the range [first, last) which has a value greater than or equals to the given value “val”. But in set of Pairs lower_bound() for pair(x, y) will return an iterator po
共有 0 条评论