http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3496 题目大意:A公司从S到T运货,每条路都有一个运货上限,而B公司则有p点费用点可以分配到个个路上,设分配到一条路上的费用点为x,该路走了y个货物,则需收费x*y,在以运货 ...
分类:
其他好文 时间:
2018-01-06 22:10:45
阅读次数:
153
一、预备知识 一个故事告诉你比特币的原理及运作机制 区块链是什么 二、比特币 比特币白皮书 英文版《 Bitcoin: A Peer-to-Peer Electronic Cash System》 中文版《比特币白皮书:一种点对点的电子现金系统》 Coursera的比特币和数字货币技术 公开课大致内 ...
分类:
其他好文 时间:
2018-01-04 23:31:01
阅读次数:
907
Welcome to the first assignment of "Improving Deep Neural Networks". Training your neural network requires specifying an initial value of the weights. ...
分类:
其他好文 时间:
2018-01-04 13:07:36
阅读次数:
214
考研帮app 网易公开课算法视频 Python的创始人在dropbox工作,改公司就像百度网盘 互联网和金融是两个好的领域 openStack 云计算 互联网找工作 拉勾 ...
分类:
其他好文 时间:
2018-01-01 11:32:11
阅读次数:
166
STINGY SAT is the following problem: given a set of clauses (each a disjunction of literals) and an interger k, find a satisfying assignment in which ...
分类:
编程语言 时间:
2017-12-31 21:08:01
阅读次数:
211
Assignment specification: https://www.coursera.org/learn/algorithms-part1/programming/Lhp5z/percolation Idea1: Virtual top and bottom sites Running ti ...
分类:
其他好文 时间:
2017-12-29 19:59:53
阅读次数:
187
最近在看公开课,一位老师讲了一个自动化的工具,backstopjs,可以自动的对比UI出的图与前端写好的图,不一致的地方会标出,挺好用的,但是写的过程中也会遇到一些问题,现在写出来,记录一下 首先,要先安装backstop, 安装中之后,在适当的位置新建文件夹,执行 初始化之后 点开backstop ...
分类:
Web程序 时间:
2017-12-25 13:27:41
阅读次数:
511
课程链接:http://open.163.com/special/opencourse/algorithms.html 第一课:算法分析基础 1.介绍插入排序与归并排序,计算并比较最坏运行时间 2.算法分析重点与渐近分析方法 以下为个人笔记,根据字幕整理 第一课 算法分析 总结 解决问题的方法和方式 ...
分类:
编程语言 时间:
2017-12-24 17:28:20
阅读次数:
266
一、赋值(assignment) 在Python中,用一个变量给另一个变量赋值,其实就是给当前内存中的对象增加一个“标签”而已。 如上例,通过使用内置函数 id() ,可以看出 a 和 b 指向内存中同一个对象。a is b会返回 True 。 二、浅拷贝(shallow copy) 注意:浅拷贝和 ...
分类:
编程语言 时间:
2017-12-20 03:38:22
阅读次数:
163
Optimization Welcome to the optimization's programming assignment of the hyper-parameters tuning specialization. There are many different optimization ...
分类:
Web程序 时间:
2017-12-19 12:36:36
阅读次数:
226