先最大流跑一遍 在残存网络上把满流边容量+1 非满流边容量设为无穷大 在进行一次最大流即可 (这里的边都不包括建图时用于反悔的反向边) ...
分类:
其他好文 时间:
2017-10-01 23:44:32
阅读次数:
237
集合(set)方法 并集:union | 交集:intersection & 差集:difference - 对称差集: symmetric_difference ^ 实例如下: 函数注释 定义函数时可对函数的参数以及返回值的类型进行注释 注意: 1)函数注释仅仅提到提示作用,并不会对输入的参数或或 ...
分类:
编程语言 时间:
2017-10-01 23:00:15
阅读次数:
276
(原文:) The Difference Between AI, Machine Learning, and Deep Learning? (译文:) 人工智能 、 机器学习 和 深度学习的区别? 作者:cleaner链接:https://www.zhihu.com/question/5777002 ...
分类:
其他好文 时间:
2017-10-01 15:15:22
阅读次数:
128
一、set集合介绍 set集合,是一个无序的,且不重复的元素集合 定义方式使用"{}",也可以使用set(iterable)内置函数定义,但iterable参数只能是可迭代对象的对象 二、集合的方法 1、s.add()添加元素 3、s.copy()浅拷贝 4、s.difference(b) 返回两个 ...
分类:
编程语言 时间:
2017-09-28 00:32:02
阅读次数:
214
https://stats.stackexchange.com/questions/164876/tradeoff-batch-size-vs-number-of-iterations-to-train-a-neural-network It has been observed in practic ...
分类:
Web程序 时间:
2017-09-27 13:27:02
阅读次数:
166
题目链接:HDU6214 留一个链式前向星+Dinic模板(希望不要被某人发现,嘿嘿嘿)。 ...
分类:
其他好文 时间:
2017-09-26 19:43:33
阅读次数:
181
types of network LAN WAN -- figures /performances see the difference curcuit ->packet swithcing store-and-forward 2 alternative approaches to transmit ...
分类:
Web程序 时间:
2017-09-23 21:22:56
阅读次数:
243
#include <iostream>#include <string>#include <list> //we use the list container , because it is easy to sort and get the biggest number and smallest n ...
分类:
其他好文 时间:
2017-09-22 19:13:30
阅读次数:
122
#include <iostream>#include <string>using namespace std; void deleteDigite(int k, string str){ int len = str.length(); for(int i=0; i<k; i++) //there ...
分类:
其他好文 时间:
2017-09-21 16:39:32
阅读次数:
97
1 什么是forward proxy 一句话,client的proxy就是forward proxy。 2 什么是reverse proxy 一句话,server的proxy就是reverse proxy。 3 difference between them 3.1 forward和reverse ...
分类:
其他好文 时间:
2017-09-20 10:13:45
阅读次数:
150