码迷,mamicode.com
首页 > 2014年07月27日 > 全部分享
HDU 1394 Minimum Inversion Number
//============================================================================// Name : B.cpp// Author : L_Ecry// Version :// Copyrigh...
分类:其他好文   时间:2014-07-27 22:20:39    阅读次数:167
JsRender系列demo(3)-自定义容器
用{{: }} or {{> }}用可选和编码展示数据{{:value}} —用于渲染值,包括HTML标记。{{loc:value lang="..."}} —使用自定义转换器。{{html:value}} —将使用内置的HTML编码器。(更好的安全性,在元素的内容,但轻微的性能成本)。{{>val...
分类:Web程序   时间:2014-07-27 22:20:29    阅读次数:268
Linear Regreesion 线性回归问题
首先必须明白什么是线性回归, linear 线性:当y和x之间成比例,为直线时。 Regreesion 回归:即研究几个变量之间的关联关系,特别当因变量和自变量为线性关系时,它是一种特殊的线性模型。最简单的情形是一个自变量和一个因变量,且它们大体上有线性关系,这叫一元线性回归,即模型为Y=a+bX+...
分类:其他好文   时间:2014-07-27 22:20:19    阅读次数:190
Alignment
DescriptionIn the army, a platoon is composed by n soldiers. During the morning inspection, the soldiers are aligned in a straight line in front of th...
分类:其他好文   时间:2014-07-27 22:20:09    阅读次数:254
并查集(uva10608)
一 基础知识梳理:并查集(Union-find Sets)是一种非常精巧而实用的数据结构,它主要用于处理一些不相交集合的合并问题。一些常见的用途有求连通子图、求最小生成树的 Kruskal 算法和求最近公共祖先(Least Common Ancestors, LCA)等。使用并查集时,首先会存在一组...
分类:其他好文   时间:2014-07-27 22:19:59    阅读次数:323
poj1273最大流dinc
bfs 构建层次图,dfs 寻找增广路。dfs在寻找增广路的同时自我调整直到此时的层次图无增广路时 重新构图,直到无增广路为止。对于添加反弧,觉得对于每点 进流量和 出流量应该守恒,反向弧的添加方便自我调整,而通过每点的流量没变,最后导致流到终点的流量不变。#include #include #in...
分类:其他好文   时间:2014-07-27 22:19:49    阅读次数:191
HDU 4046 Panda
线段树单点更新,要注意两段合并多出的答案的计算即可//============================================================================// Name : D.cpp// Author : L_Ecry//...
分类:其他好文   时间:2014-07-27 22:19:39    阅读次数:265
Processing玩抠图
突然兴起想玩一下抠图,试着用自带的Example\video来改,花了一个中午做了个小样:分别是白色为底与黑色为底的效果,代码如下: 1 import processing.video.*; 2 int numPixels; 3 int[] backgroundPixels; 4 Capture v...
分类:其他好文   时间:2014-07-27 22:19:20    阅读次数:320
Git 客户端基本配置
Welcome to Git (version 1.9.4-preview20140611)Run 'git help git' to display the help index.Run 'git help ' to display help for specific commands.Tingk...
分类:其他好文   时间:2014-07-27 22:19:09    阅读次数:189
UVA 10608
并查集的水题,比赛时怎么都AC不了,后来发现是没有考虑先3 2 后1 2的情况,下次注意!#include#include#includeusing namespace std;int x[30010];int k[30010];int num[30010];int find(int y){ ...
分类:其他好文   时间:2014-07-27 22:18:59    阅读次数:228
poj 1505 Copying Books
http://poj.org/problem?id=1505Copying BooksTime Limit:3000MSMemory Limit:10000KTotal Submissions:7053Accepted:2200DescriptionBefore the invention of b...
分类:其他好文   时间:2014-07-27 22:18:39    阅读次数:366
rails下mysql出错问题mysql_api,blog/text
问题一:提示出错:cannot load such file -- mysql/mysql_api (LoadError)此时我们回来看gem install mysql 时提示At the time of building this gem, the necessary DLL files whe...
分类:数据库   时间:2014-07-27 22:18:29    阅读次数:289
android 初探
2014年7月27日 15:02:57首先是搭建环境:1. 把android官方给的那个ant下载下来,按照说明安装就行了,这里说的就是,ant:就是包含了已经配置好的eclipse + android sdk + sdk manager 不用你在额外下载这几个,然后再进行配置了2.java环境,下...
分类:移动开发   时间:2014-07-27 22:18:19    阅读次数:260
JsRender系列demo(4)-if else
Using {{if}} and {{else}} to render conditional sections.
分类:Web程序   时间:2014-07-27 22:18:09    阅读次数:267
Codeforces 451A Game With Sticks
DescriptionAfter winning gold and silver in IOI 2014, Akshat and Malvika want to have some fun. Now they are playing a game on a grid made ofnhorizont...
分类:其他好文   时间:2014-07-27 22:17:59    阅读次数:309
《浪潮之巅》读书笔记——第5章 Intel
第5章 奔腾的芯——Intel 公司历史 1968 戈登摩尔 罗伯特诺伊斯创建 1956 还和另外6个人 即八叛徒创办仙童半导体 开始是做低性能 低价格产品,因为IBM同时自带生产芯片 1981 IBM推出的PC也开始使用Intel芯片8086 1982 IBM-PC使用80286 1985 803...
分类:其他好文   时间:2014-07-27 22:17:49    阅读次数:256
HDU 3074 Multiply game(线段树)
单点更新,更新时先除去 原来的数,因为有去摸,可以用乘上逆元代替。//============================================================================// Name : A.cpp// Author : ...
分类:其他好文   时间:2014-07-27 22:17:39    阅读次数:217
1478条   上一页 1 ... 27 28 29 30 31 32 33 ... 87 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!