Codeforce260B - Ancient Prophesy(模拟)

题目大意

题目链接

阅读更多

CLion 输出遇到乱码解决办法

更改设置:
File -> Settings -> Default Settings -> Editor -> File Encodings:
Global Encoding: UTF-8
Project Encoding : UTF-8
Default encoding for properties files: UTF-8

阅读更多

c++数据范围

详情见下:

阅读更多

c++字符串转换为数字(stoi, stol, stoul, stoull, stof, stod, stold)

c++字符串转换为数字(stoi, stol, stoul, stoull, stof, stod, stold)

头文件#include <string>

阅读更多

c++map遍历排序

遍历

map也有迭代器

阅读更多

c++map的遍历和按照key,value排序

c++map的遍历和按照key,value排序

map的遍历

1
2
3
4
5
map<int, int>ma;
map<int, int>::iterator it;
for(it = ma.begn(); it != ma.end(); it++){
cout << it->first << ' ' << it->second << "\n"; //first 是key , second 是 value
}

阅读更多

c++11 emplace 与 push 的区别

c++11 emplace 与 push 的区别

    阅读更多

    C++ 流控制函数setw()、setfill()、setbase()、setprecision()的使用

    C++ 流控制函数setw()、setfill()、setbase()、setprecision()的使用

    阅读更多

    C++ STL 中unique详解

    一. 概念

    unique的作用是去重。即“删除”序列中重复的相邻元素, 此处的删除不是真正的删除, 而是让不重复元素替换掉重复元素所在的位置。由于它是”删除”相邻的元素, 所以在使用unique之前, 一般要给序列排序。

    阅读更多

    ACM中关于文件的读入输出

    直接看下面代码

    阅读更多