摘要: 传送门 Description Watchmen are in a danger and Doctor Manhattan together with his friend Daniel Dreiberg should warn them as soon as possible. There are 阅读全文
posted @ 2017-04-30 23:58 zxzhang 阅读(328) 评论(0) 推荐(0) 编辑
摘要: 传送门 Description The prison of your city has n prisoners. As the prison can't accommodate all of them, the city mayor has decided to transfer c of the 阅读全文
posted @ 2017-04-30 23:49 zxzhang 阅读(239) 评论(0) 推荐(0) 编辑
摘要: std::pair是一个结构模板,提供了一种将两个异构对象存储为一个单元的方法. 定义于头文件 <utility> std::make_pair 创建一个std::pair对象,推导出目标类型的参数类型. 定义于头文件 <utility> 示例: pair与make_pair的示例 阅读全文
posted @ 2017-04-30 23:38 zxzhang 阅读(1634) 评论(0) 推荐(0) 编辑
摘要: 使用STL中的map时候,有时候需要使用结构题自定义键值,比如想统计点的坐标出现的次数 这样子的话,会出现一堆报错 看着似乎满屏错误,其实就是少了一个键值比较函数,因为我们知道map插入键值后默认从小到大排序,使用自定义结构体作为键值,但是没有自定义比较函数的话,编译器无法为插入的元素排序。 这样子 阅读全文
posted @ 2017-04-30 23:15 zxzhang 阅读(1468) 评论(0) 推荐(2) 编辑