自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 资源 (1)
  • 收藏
  • 关注

原创 Bestcoder Round 84 解题+补题记录

## 题目链接: ### [A.Aaronson](http://acm.hdu.edu.cn/showproblem.php?pid=5747) ### [B.Bellovin](http://acm.hdu.edu.cn/showproblem.php?pid=5748) ### [C.Colmerauer](http://acm.hdu.edu.cn/showproblem.php?pid=...

2018-07-23 12:30:32 211

原创 codeforces 920c

#include #include #include using namespace std; const int maxn = 2e5 + 7; int nums[maxn]; bool mark[maxn]; int sums[maxn << 2]; int n; int lowbit(int i) { return i & (-i); } void update(int o)

2018-02-05 23:59:32 379

原创 人生第一道 DP

#POJ 1163 题面:7 3 8 8 1 0 2 7 4 4 4 5 2 6 5(Figure 1)Figure 1 shows a number triangle. Write a program that calculates the highest sum of numbers passed on a route that starts a

2017-06-10 20:17:43 242

原创 C++ 数学小点

#求一个数的位数个数:# 直接对这个数字求log10+1 比如 #include #Include using namespace std; int main(){ int testnumber; cin>>testnumber; int counts=log10(testnumber)+1;

2017-06-10 20:10:13 232

原创 学习时遇到的头文件

智能指针(shared_ptr,unique_ptr)的头文件:  //new,delete 不用头文件 占位符(_1,_2 .......) : using namespace std::placeholders 关联容器: map,multi_map set, multi_set unordered_map unordered_set bad_alloc,nothrow

2017-02-15 00:03:33 196

原创 C++ 的一些小陷阱

1, { } 代表作用域,没有上下文联系时就出现也是开了一个新的作用域 2.流类型使用的时候一般要加&引用符号

2017-02-15 00:02:19 255

原创 将string类型的对象重新作为“输入”使用

#include #include #include using namespace std; int main() { string test,word; getline(cin,test); istringstream tem(test); //stream不能重新被赋值  即tem=test无法通过编译 while(tem>>word)  //重新将test作为流对象处理

2017-02-14 00:42:30 387

原创 简单的结构体排序

结构体排序

2017-02-11 22:04:37 487

cugb gpa计算

中国地质大学北京gpa的计算方式

2018-07-23

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除