码迷,mamicode.com
首页 >  
搜索关键字:iostream    ( 13291个结果
16.8.2【set容器的大小和交换、插入和删除、查找和统计】
1 #include<iostream> 2 #include<cstdlib> 3 using namespace std; 4 #include<set> 5 6 7 /* 8 3.8.3 set容器大小和交换 9 10 size(); //返回容器中元素的数目 11 empty(); //判断 ...
分类:其他好文   时间:2021-05-24 06:33:00    阅读次数:0
POJ1149 - PIGS - 网络流最大流 - 构图
##AC代码 #include<stdio.h> #include<string.h> #include<iostream> #include<queue> using namespace std; #define inf 0x3f3f3f3f const int N=1020; int e[N][ ...
分类:其他好文   时间:2021-05-24 03:46:14    阅读次数:0
off 表面三角网格翻转问题解决
简介 参考链接 https://gamedev.stackexchange.com/questions/26974/repairing-back-facing-triangles-without-user-input 缺陷, 对于非流形的网格会失败 code #include <iostream> ...
分类:其他好文   时间:2021-05-24 02:58:37    阅读次数:0
Tarjan
有向图强连通分量SCC P3387【模板】缩点 注释放代码里啦 时间复杂度O(n+m) #include<iostream> #include<cstdio> #include<cstdlib> #define maxn 100010 #define maxm 1000010 using names ...
分类:其他好文   时间:2021-05-24 02:15:52    阅读次数:0
第十一届山东省大学生程序设计竞赛(热身赛)
B.Willis and Fibonacci Sequence 题意: n的范围是10^9,f[i]是斐波那契数列,求f[i] / 2^n 的前n项和 思路:(打表)(精度) 打表,打表出前100项的答案,因为指数增长比斐波那契数列增长速度大得多,这个题的精度只有10^-6,最后发现第72项以后的答 ...
分类:其他好文   时间:2021-05-24 02:10:21    阅读次数:0
[ AGC003 D ] Anticube
题目 Atcoder 思路 代码 #include <iostream> #include <algorithm> #include <cmath> #include <map> #define int long long using namespace std; const int N = 100 ...
分类:其他好文   时间:2021-05-24 00:04:21    阅读次数:0
「图论」第4章 强连通分量课堂过关
「图论」第4章 强连通分量课堂过关 A. 【例题1】有向图缩点 题目 代码 #include <iostream> #include <cstdio> #include <cstring> #include <queue> using namespace std; #define N 10010 # ...
分类:其他好文   时间:2021-05-23 23:52:43    阅读次数:0
MD5加密算法
#include<iostream> #include<string> using namespace std; #define shift(x, n) (((x) << (n)) | ((x) >> (32-(n))))//右移的时候,高位一定要补零,而不是补充符号位 #define F(x, y ...
分类:编程语言   时间:2021-05-23 23:50:56    阅读次数:0
简化版由前序遍历和中序遍历返回后序遍历
#include<iostream> #include<cstring> #include<string> #include<stdio.h> using namespace std; void print(int n,char *x,char *y) { if(n<=0) return; int ...
分类:其他好文   时间:2021-05-23 23:32:39    阅读次数:0
[ AGC002 F ] Leftmost Ball
题目 Atcoder 思路 代码 #include <iostream> #include <cstring> #include <algorithm> using namespace std; const int N = 4000010, mod = 1e9 + 7; int n, k, fact ...
分类:其他好文   时间:2021-05-23 23:13:50    阅读次数:0
13291条   上一页 1 ... 4 5 6 7 8 ... 1330 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!