最新 最热

2019 第四届CCCC 彩虹瓶

都说这道题简单,不懂STL里面是什么玄学东西用临时变量存就是10分,要用数组存。 懂的大哥留言告知一哈#include <bits/stdc++.h>using namespace std;

2019-04-09
0

VS2005中Nebula3数据类型的调试信息显示

用过VS2003的应该知道, STL的容器调试起来非常麻烦, 因为调试时显示的信息非常不直观VS2005引入一个autoexp.dat, 可以定义数据在调试时显示的格式详细介绍可以参考:Writing custom visualizers for Visual Studio 20...

2018-05-23
0

让priority_queue支持小根堆的几种方法

点击这里了解什么是priority_queue 前言priority_queue默认是大根堆,也就是大的元素会放在前面例如#include<iostream>#include<cstdi

2018-04-11
0

pd_ds中的hash

前言在c++的STL中,提供了一种hash函数,其用法和map是几乎一样的,但是速度却能快接近一倍使用方法需要的头文件#include<ext/pb_ds/assoc_container.hpp>#include<ext/pb_ds/hash_policy.hpp>using namespace __gnu......

2018-04-10
0

Codeforces Round #423 (Div. 2, rated, based on VK Cup Finals)爆零记

昨晚一个瓜皮说今晚有cf,听说是晚间场,我瞅了一眼,娃,VK Cup,上分的好机会,看着比赛时间就有点心酸了,0:35,当时一直在纠结要不要打的问题,当时想着应该不难吧,要不打一下吧,要不还是看看题先,如果容易就打,难的话就不打了好的吧!于...

stl
2018-04-09
0

STL priority实例

按顺序输出序列: 1 #include <iostream> 2 #include <vector> 3 #include <queue> 4 #include <functional> 5 #include <string> 6 using namespace std; 7 template <type......

stl
2018-01-17
0

本次新生赛部分题解

A poj1129这题的愿意是考察四色原理(不是太难,主要是了解),但是模拟+暴力枚举也是可以过的,有几个WA点,注意看注释#include<cstdio>#include<cstring>#include<iostream>using namespace std;int main(){ int ......

2018-01-12
0

Leetcode 128 Longest Consecutive Sequence

Given an unsorted array of integers, find the length of the longest consecutive elements sequence. For example, Given [100, 4, 200, 1, 3, 2], The longest co...

2018-01-12
0

Leetcode 215. Kth Largest Element in an Array

Find the kth largest element in an unsorted array. Note that it is the kth largest element in the sorted order, not the kth distinct element. For example, Gi...

2018-01-12
0

蓝桥杯 幸运数

腾讯云开发者社区是腾讯云官方开发者社区,致力于打造开发者的技术分享型社区。提供专栏,问答,沙龙等产品和服务,汇聚海量精品云计算使用和开发经验,致力于帮助开发者快速成长与发展,营造开放的云计算技术生态圈。...

2018-01-09
0