码迷,mamicode.com
首页 >  
搜索关键字:using    ( 53562个结果
CodeForces 550B Preparing Olympiad(DFS回溯)
【题目链接】:click here~~ 【题目大意】 一组题目的数目(n 【解题思路】: DFS+回溯。 先发一发比较拙的代码: #include using namespace std; const int N=1e5+10; int num[N],mum[N]; int n,m,q,t,l,r; int top,ans,cnt; void dfs(int sum,int d,in...
分类:其他好文   时间:2015-06-22 22:20:14    阅读次数:206
Singleton单例模式
#include #include #include using namespace std; std::mutex _sMutex; template class Singleton { public: static Type* GetSigleton() { if (sin...
分类:其他好文   时间:2015-06-22 22:18:55    阅读次数:90
STL之string插入
1 #include 2 #include 3 4 using namespace std; 5 int main() 6 { 7 string s("hello"); 8 string s2("abcdef"); 9 10 string::ite...
分类:其他好文   时间:2015-06-22 22:18:37    阅读次数:180
不安装HALCON下安装运行版U盘加密狗驱动
参考halcon安装指导书Installation GuideDepending on your operating system, you can install, configure, and uninstall the dongle drivers manually using an auxi...
分类:其他好文   时间:2015-06-22 22:13:46    阅读次数:1930
poj 4088:Set操作
poj4088:集合运算题目:(至于4089。那个问题做过。使用归并思想,所以没有写)描写叙述小张须要从一批数量庞大的正整数中挑选出第k小的数。由于数据量太庞大,挑选起来非常费劲,希望你能编程帮他进行挑选。输入第一行第一个是数据的个数n(10#include using namespace std;...
分类:其他好文   时间:2015-06-22 22:07:10    阅读次数:125
CF:Problem 427C - Checkposts良好的沟通 Tarjan算法
tarjan算法的第一个问题 喷我的脸。。。。手写叠式开成BOOL,我一直在找错了。。。#include#include#include#include#define maxn 100005const int MOD=1000000007;using namespace std;struct nod...
分类:编程语言   时间:2015-06-22 19:20:34    阅读次数:128
Ajax.BeginForm 的使用
@using (Ajax.BeginForm("AddHomeRule", "MyHome", new AjaxOptions { HttpMethod = "Post",//获取或设置Http请求方法 Confirm = "确定提交",/...
分类:Web程序   时间:2015-06-22 19:19:59    阅读次数:194
Rides
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace RedisCall{ using ServiceSt...
分类:其他好文   时间:2015-06-22 19:15:01    阅读次数:105
[POJ Solutions] Brackets Sequence
This problem can be solved elegantly using dynamic programming.We maintain two arrays:cnt[i][j] --- number of parentheses needed to add within s[i..j]...
分类:其他好文   时间:2015-06-22 19:12:15    阅读次数:202
poj 1868 Antiarithmetic? 判断序列中是否有等差子序列
#include using namespace std; const int maxN=10024; int n,vis[maxN],a[maxN]; bool find() { memset(vis,-1,sizeof(vis)); for(int i=0;i<n;++i){ for(int j=0;j=0...
分类:其他好文   时间:2015-06-22 17:56:53    阅读次数:110
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!