码迷,mamicode.com
首页 >  
搜索关键字:include    ( 84546个结果
SPOJ AGGRCOW 二分枚举
给定n个从小到大排好序的数,要从中选出c个数,使得任意两个相邻数的间隔最小的值尽量的大。求最大的最小间隔。#include #include #include using namespace std; int a[111111]; int vis[111111]; int cha[11111];int n,k;int cheak(int...
分类:其他好文   时间:2015-07-21 12:54:16    阅读次数:77
PAT 1092. To Buy or Not to Buy(STL)
CODE: #include #include #include using namespace std; multiset mst; char s1[1005],s2[1005]; int main() { while(scanf("%s%s",s1,s2)==2) { mst.clear(); bool flag=true; ...
分类:其他好文   时间:2015-07-21 12:53:06    阅读次数:95
PAT 1094. The Largest Generation(BFS)
CODE: #include #include #include using namespace std; bool mat[105][105]; bool root[105]; int n,m; int R; int cnt[105]; int ans1,ans2; struct TNode { int num; int level; }; void BFS() { ...
分类:其他好文   时间:2015-07-21 12:51:41    阅读次数:128
sgu 101 无向图有双重边的欧拉路径
#include #include #include #include #include #include #include #include using namespace std; const int MAXN = 400 + 10; struct Edge { int to, next; }edge[MAXN]; int tot, head[MAXN]; int vi...
分类:其他好文   时间:2015-07-21 12:50:32    阅读次数:112
Java程序员学习C++之字符串
#include #include using namespace std; int my_len(const char *str) { int len = 0; // while (*str != '\0') // { // ++len; // ++str; // } while (*(str++) != '\0') { ++len; } return len; }...
分类:编程语言   时间:2015-07-21 12:49:16    阅读次数:113
PAT 1005. Spell It Right (注意考虑0的情况)
代码: #include #include using namespace std; char s[10][20]; int main() { strcpy(s[0],"zero");//对字符数组赋值 strcpy(s[1],"one"); strcpy(s[2],"two"); strcpy(s[3],"three"); strcpy(s[4],"...
分类:其他好文   时间:2015-07-21 12:48:23    阅读次数:115
KMP(1-模板题)
DescriptionGiven two sequences of numbers : a[1], a[2], ...... , a[N], and b[1], b[2], ...... , b[M] (1 #include #include using namespace std;const in...
分类:其他好文   时间:2015-07-21 12:43:02    阅读次数:167
Linux下简易线程池
线程池简介简易线程池实现 线程池头文件threadpool.h如下: 1 #ifndef THREADPOOL_H 2 #define THREADPOOL_H 3 4 #include 5 #include 6 #include 7 #include 8 9 /**10 * 线程体数...
分类:编程语言   时间:2015-07-21 12:41:01    阅读次数:182
POJ-2676-Sudoku: DFS 剪枝 回溯
// 思路请点这里#include#include#includeusing namespace std;int board[9][9]; // 棋盘int RowFlag[9][10]; // RowFlag[i][j]=1 表示 在 第i行 已经放了数字 jint ColFlag[9][1...
分类:其他好文   时间:2015-07-21 12:37:19    阅读次数:113
bzoj3211 花神游历各国
线段树区间开方。。。直接暴力改到叶子。。一开始数组开小RE。。。#include#include#include#include#include#include#include#define l(a) (((a)>1; build(l(a),l,mid); build(r(a),mid+...
分类:其他好文   时间:2015-07-21 12:35:54    阅读次数:107
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!