博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
训练记录
阅读量:5164 次
发布时间:2019-06-13

本文共 780 字,大约阅读时间需要 2 分钟。

2017/2/16

Codeforces Round #397 (DIV 1,2 combined)
Solved: 3 (A, B, C) out of 7 in 3 hours
Attempted: D
Standing: 1244/5507

2017/2/18

Codeforces Round #398 (DIV 2)
Solved 2 (A, D) out of 5 in 2 hours
Attempted: B, C
Standing: 131/3132
Starred Problems: B, C, E

2017/2/19

Solved 1 (A) out of 4 in 2 hours
Attempted: B
Standing: 64/116
Starred: A, B

2018/4/2

HackerRank HourRank 27
Solved: 1.5/3
Attempted: 2/3
Score: 62.59/135
Rank 87/1711
总结:

  1. ?: 的优先级比 << 高,在 cout 语句中用 ?: 要加括号。
  2. 仔细读题,读题目再写代码。
  3. long long ans; ans = max(ans, 0LL),其中 0LL 不能写成 0
  4. std::setstd::multiset 的成员函数 rbegin() 返回值是指向最大值的 iterator。
  5. std::set/mapstd:multiset/multimaperase 方法的参数的类型可以是 iterator 也可以是 const key_type & 。前一种情况只删除一个元素,后一种情况删除所有 key 等于所提供的参数的元素。

转载于:https://www.cnblogs.com/Patt/p/6407603.html

你可能感兴趣的文章
bzoj 2600: [Ioi2011]ricehub
查看>>
创建数据库,表
查看>>
工厂模式
查看>>
计算机网络基础知识
查看>>
C#里如何遍历枚举所有的项
查看>>
如何在键盘出现时滚动表格,以适应输入框的显示
查看>>
超级强大的鼠标手势工具
查看>>
常用Dockerfile举例
查看>>
jquery的ajax用法
查看>>
设计模式-策略模式(Strategy)
查看>>
django orm 数据查询详解
查看>>
JarvisOJ Basic 熟悉的声音
查看>>
C# list导出Excel(二)
查看>>
CAS 单点登录模块学习
查看>>
跟着辛星用PHP的反射机制来实现插件
查看>>
Android应用开发-网络编程①
查看>>
input中的name,value以及label中的for
查看>>
静态库制作-混编(工程是oc为基础)
查看>>
jQuery 显示加载更多
查看>>
代理模式
查看>>