首先是凸包的定义,假设平面内有一些点,这些点中的一部分组成一个多边形,将其他的点都包含起来,当这个多边形是凸多边形的时候,我们就把他当成是一个凸包。
解决凸包问题有很多种算法,比较常见的有O(n^3)的暴力穷举算法以及O(nlogn)d的分治算法,这里讲的是一个时间复杂度为O(nlogn)的Graham扫描法。
使用uWSGI和nginx来搭建Django应用
近期用python的Django写了一个小程序,想部署到服务器上面。网上搜了一下,发现所有使用nginx的解决方案基本上都是来源于这篇文章。所以就把这篇文章翻译了一下,加深自己的理解。
POJ 3253 Fence Repair 题解
Fence Repair
题目描述
Farmer John wants to repair a small length of the fence around the pasture. He measures the fence and finds that he needs N (1 ≤ N ≤ 20,000) planks of wood, each having some integer length Li (1 ≤ Li ≤ 50,000) units. He then purchases a single long board just long enough to saw into the N planks (i.e., whose length is the sum of the lengths Li). FJ is ignoring the “kerf”, the extra length lost to sawdust when a sawcut is made; you should ignore it, too.FJ sadly realizes that he doesn’t own a saw with which to cut the wood, so he mosies over to Farmer Don’s Farm with this long board and politely asks if he may borrow a saw.Farmer Don, a closet capitalist, doesn’t lend FJ a saw but instead offers to charge Farmer John for each of the N-1 cuts in the plank. The charge to cut a piece of wood is exactly equal to its length. Cutting a plank of length 21 costs 21 cents.Farmer Don then lets Farmer John decide the order and locations to cut the plank. Help Farmer John determine the minimum amount of money he can spend to create the N planks. FJ knows that he can cut the board in various different orders which will result in different charges since the resulting intermediate planks are of different lengths.