
二分搜索
文章平均质量分 60
ych_ding
这个作者很懒,什么都没留下…
展开
-
POJ 3273 月度最大花费
#include #include using namespace std; static const int MAXDAYS = 100000; static int money[MAXDAYS]; //#define DEBUG int main() { #ifdef DEBUG fstream cin("G:\\book\\algorithms\\acm\\Debug\\dat.t原创 2013-08-31 15:43:57 · 586 阅读 · 0 评论 -
leetcode find-minimum-in-rotated-sorted-array no duplicates
int find_min(vector &a, int start, int end) { if (a[start] <= a[end]) { return a[start]; } int mid = (start + end) / 2; if (a[mid] >= a[start])原创 2014-11-18 08:46:38 · 461 阅读 · 0 评论 -
leetcode find-minimum-in-rotated-sorted-array-ii
https://oj.leetcode.com/problems/find-minimum-in-rotated-sorted-array-ii/原创 2014-11-19 22:28:35 · 503 阅读 · 0 评论 -
POJ 3122 分饼
#include #include using namespace std; static double s[10000]; static int n, f; double search(double max) { double l, r, m; int i, count; l = 0.0; r = max; while (l = 10e-6) { m = (l + r原创 2013-08-26 21:45:25 · 754 阅读 · 0 评论