码迷,mamicode.com
首页 >  
搜索关键字:sig    ( 4633个结果
LeetCode 191 Number of 1 Bits
Problem: Write a function that takes an unsigned integer and returns the number of ’1' bits it has (also known as the Hamming weight). For example, th ...
分类:其他好文   时间:2016-11-05 09:23:35    阅读次数:175
HDU 3535 AreYouBusy (混合背包)
题意:给你n组物品和自己有的价值s,每组有l个物品和有一种类型: 0:此组中最少选择一个 1:此组中最多选择一个 2:此组随便选 每种物品有两个值:是需要价值ci,可获得乐趣gi 问在满足条件的情况下,可以得到的最大的乐趣是多少,如果不能满足条件就输出-1 题解:二维01背包 dp[i][j]:前i ...
分类:其他好文   时间:2016-11-04 23:34:11    阅读次数:263
noi 9271 奶牛散步
题目链接:http://noi.openjudge.cn/ch0206/9271/ 同noi 踩方格,但是题目有问题,%12345,我也是看了discuss才知道的。 #include <bits/stdc++.h> using namespace std; unsigned long long d ...
分类:其他好文   时间:2016-11-04 23:24:39    阅读次数:207
Python内置函数(39)——locals
英文文档: locals() Update and return a dictionary representing the current local symbol table. Free variables are returned by locals() when it is called i ...
分类:编程语言   时间:2016-11-04 23:21:00    阅读次数:248
inode结构体
inode分为内存中的inode和文件系统中的inode,为了避免混淆,我们称前者为VFS inode, 而后者以EXT2为代表,我们称为Ext2 inod。这里说明的是VFS inode。 重要成员: 1. struct cdev *i_cdev; 若是字符设备,为其对应的cdev结构体指针。 2 ...
分类:其他好文   时间:2016-11-04 16:54:08    阅读次数:218
epoll 反应堆
...
分类:其他好文   时间:2016-11-04 01:56:58    阅读次数:206
判别或预测方法汇总(判别分析、神经网络、支持向量机SVM等)
%% 【Input】:s_train(输入样本数据,行数为样本数,列为维数);s_group(训练样本类别);s_sample(待判别数据)%% 【Output】:Cla(预测类别) function Cla = fun_panbie(s_train,s_group,s_sample,index ) ...
分类:其他好文   时间:2016-11-04 01:55:12    阅读次数:307
记录神经网络中一些小知识点
记录神经网络中一些小知识点1 Caffe中的blob维度 Caffe中的blob具有4个维度,分别是num,channel,width和height; 其中我们在定义各个网络层时,常用到的一个参数n...
分类:其他好文   时间:2016-11-03 21:10:21    阅读次数:674
【2016多校】T2 forest (树形DP,数论)
题意:有一棵N个点的树,每个点上有点权 定义路径长度为所经过的所有点的点权之和,树的直径为一棵树中最大的路径长度 有N次询问,每次询问要求回答所有树的直径之积 每次询问后会删一条边,树的数量会+1 要求回答N次询问,答案 mod 10^9+7 n<=100000 思路:因为知道每次删哪条边所以可以离 ...
分类:其他好文   时间:2016-11-03 13:28:34    阅读次数:211
Design Tic-Tac-Toe 解答
Question Design a Tic-tac-toe game that is played between two players on a n x n grid. You may assume the following rules: Example: Follow up:Could yo ...
分类:其他好文   时间:2016-11-02 14:18:42    阅读次数:258
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!