
STL
ACder_chen
将AC进行到底
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
STL
#include #include #include #include #include using namespace std; //map用法,map有自动按字典序排序, int main() { map m; //定义map; string s; int n; n = 0; while(getline(cin,s)) //相当于get原创 2014-08-02 09:53:37 · 566 阅读 · 0 评论 -
poj3253 优先队列
#include #include #include using namespace std; const int M = 20000 + 10; long long ans; int n; struct T { int x; const bool operator<(T a) const { return a.x < x; }原创 2014-08-12 10:00:24 · 545 阅读 · 0 评论