码迷,mamicode.com
首页 >  
搜索关键字:algorithm trading    ( 11829个结果
二叉堆【小顶堆】数组模板+C++STL
1 #include <iostream> 2 #include <algorithm> 3 #include <cstring> 4 #include <vector> 5 using namespace std; 6 const int SIZE = 1e6; 7 int heap[SIZE], ...
分类:编程语言   时间:2020-07-25 23:58:20    阅读次数:91
vector/set集合-交集、并集、差集、对称差
函数简介 这些函数主要用于vector/set进行交集、并集、差集、对称差集的运算,他们包含在< algorithm >头文件内。 函数原型 交集 (set_intersection) template <class InputIterator1, class InputIterator2, cla ...
分类:其他好文   时间:2020-07-25 09:34:12    阅读次数:81
莫队模版
#include <algorithm> #include <string> #include <cstring> #include <vector> #include <map> #include <stack> #include <set> #include <queue> #include < ...
分类:其他好文   时间:2020-07-24 23:42:50    阅读次数:81
7-4 Dijkstra Sequence (30分)
Dijkstra's algorithm is one of the very famous greedy algorithms. It is used for solving the single source shortest path problem which gives the short ...
分类:其他好文   时间:2020-07-24 21:53:35    阅读次数:107
圣章-精灵使的魔法语——线段树的运用
可能是要咕咕咕的题目,先上下代码。 代码: 1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<cmath> 5 #include<queue> 6 #include<algorithm> 7 using na ...
分类:其他好文   时间:2020-07-24 16:21:35    阅读次数:67
字母大小写转换
代码如下: 将小写转换为大写 #include<cstdio> #include<iostream>#include<algorithm>using namespace std;int main(){ char a; cin>>a; char b; b=a-32; cout<<b<<endl; re ...
分类:其他好文   时间:2020-07-24 09:57:40    阅读次数:62
小白进阶之路-滑雪-暑假训练
搜索依然爆炸的烂,继续加油吧。 题解:按照 h 排序的大根堆,每次寻找四周 h 小的接上dp串。 #include <iostream> #include <queue> #include <algorithm> using namespace std; /* * time: 2020.7.23 * ...
分类:其他好文   时间:2020-07-23 23:26:22    阅读次数:94
联考20200722 T1 集合划分
分析: 首先是一个$O(n2)$的DP,设$f_{i,j,0/1}$表示做了前$i$个,用了$j$个$A$,最后一个是$A/B$的方案数 然后我们不看最后一位,发现$f_{i,j}$两个状态可以用$2*2$的转移矩阵DP 发现转移矩阵与$j$没有关系,把$j$去掉,维护$f_i=\sum_a_jxj ...
分类:其他好文   时间:2020-07-22 20:29:49    阅读次数:64
[Lyndon分解] HDU 6761 Minimum Index (2020多校训练)
[Lyndon分解] HDU 6761 Minimum Index (2020多校训练) 题解 待补。 Code #include <iostream> #include <algorithm> #include <cstring> #include <string> #include <cstdi ...
分类:其他好文   时间:2020-07-22 01:46:30    阅读次数:178
P1484 种树
链接:Miku 对顶堆做法 #include<iostream> #include<cstdio> #include<algorithm> #include<queue> using namespace std; priority_queue <int,vector<int>,greater<int ...
分类:其他好文   时间:2020-07-21 13:58:51    阅读次数:72
11829条   上一页 1 ... 25 26 27 28 29 ... 1183 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!