“如果你不能用一个过程来描述你正在做的事情,你就不可能真正明白你在做什么。”——W.爱德华。戴明(生产管理专家,统计过程控制先驱)一个运行良好的系统是具有适应力,自组织和层次性的特征,它能够在外界的有限冲击下自我调整和修正,精妙而和谐的运行,这就是系统之美。首先要明确定义系统的功能目标,然后确定系统 ...
分类:
其他好文 时间:
2019-02-08 11:50:51
阅读次数:
196
首先介绍下百度人脸识别模块(baiduFaceRec): baiduFaceRec模块封装了百度AI人脸识别功能,使用此模块可实现百度人脸检测(包括age,beauty,expression,faceshape,gender,glasses,landmark,race,quality,facetyp ...
分类:
其他好文 时间:
2019-01-31 18:17:38
阅读次数:
274
题目:http://poj.org/problem?id=2187 学习材料:https://blog.csdn.net/wang_heng199/article/details/74477738 https://www.jianshu.com/p/74c25c0772d6 可以再倒着枚举一遍那样求 ...
分类:
其他好文 时间:
2018-12-19 18:39:48
阅读次数:
143
Problem Thanh wants to paint a wonderful mural on a wall that is N sections long. Each section of the wall has a beauty score, which indicates how bea ...
分类:
其他好文 时间:
2018-12-01 23:42:37
阅读次数:
142
"嘟嘟嘟" 旋转卡壳模板题。 首先求出凸包。 然后$O(n ^ 2)$的算法很好想,但那就不叫旋转卡壳了。 考虑优化:直观的想是在枚举点的时候,对于第二层循环用二分或者三分优化,但实际上两点距离是不满足单调性的,见下图: 对于$A$点,$AB AE include include include i ...
分类:
其他好文 时间:
2018-11-21 16:18:09
阅读次数:
241
import redef test(teststr, *args): #strformatter = "%s" myargs = args[0] if len(args) > 1: for i in args[1:]: myargs += '|' + str(i) #strformatter += ...
分类:
其他好文 时间:
2018-11-10 10:51:14
阅读次数:
281
import requests, refrom requests.exceptions import RequestExceptiondef get_one_page(url, agent): try: response = requests.get(url, headers=agent) if r ...
分类:
其他好文 时间:
2018-10-25 14:09:42
阅读次数:
383
题面 传送门:https://www.luogu.org/problemnew/show/P1122 Solution 这是一道简单的树形DP题。 首先,我们可以转换一下题面,可以发现,题目要求我们求出一颗树上的最大联通子图。 因为我们是在树上取的,实际上就是取一颗子树。 这个就是最基础的树形DP模 ...
分类:
其他好文 时间:
2018-07-30 23:35:43
阅读次数:
477
http://poj.org/problem?id=2187 题意 给n个坐标,求最远点对的距离平方值。 分析 模板题,旋转卡壳求求两点间距离平方的最大值。 ...
分类:
其他好文 时间:
2018-07-22 15:07:56
阅读次数:
124
In Pavlopolis University where Noora studies it was decided to hold beauty contest "Miss Pavlopolis University". Let's describe the process of choosin ...
分类:
其他好文 时间:
2018-06-23 11:36:15
阅读次数:
181