最新 最热

Leetcode 69 Sqrt(x)

Implement int sqrt(int x). Compute and return the square root of x. 求x的平方根。 二分没什么好说的,注意INT_MAX溢出的情况!class Solution {public: int mySqrt(int x) { ......

2018-01-12
1

Leetcode 198 House Robber

You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed, the only constraint stopping you from ro...

2018-01-12
1

Leetcode 226. Invert Binary Tree

Invert a binary tree. 4 / 2 7 / / 1 3 6 9to 4 / 7 2 / / 9 6 3 1Trivia:This problem was inspired by...

2018-01-12
1

LeetCode:149_Max Points on a line | 寻找一条直线上最多点的数量 | Hard

题目:Max Points on a lineGiven n points on a 2D plane, find the maximum number of points that lie on the same straight line.这道题需要稍微转变一下思路,用斜率来实现,试想找在同一条直线上的点,怎么......

2018-01-11
1

HDU-6006-Engineer Assignment

该文介绍了如何通过状态压缩动态规划方法计算最多可以完成的任务数量。对于每个任务,可以使用状态压缩来计算最少需要哪些工程师来完成。具体来说,对于每个任务,可以使用其依赖关系来计算其需要的工程师数量,然后使用状态...

2018-01-09
1

一位 TalkingData 员工学习人大统计学课程的笔记及感想

本文讲述了一场关于统计学课程的讨论,作者从课程回顾、作业提交、薛老师讲解、同学提问和课后交流等方面展示了学习经历和收获。同时,通过一道题目的解答,展示了统计学习题的解答过程,最后总结了统计学习的重要性。...

2018-01-08
1

LWC 53:695. Max Area of Island

LWC 53:695. Max Area of Island传送门:695. Max Area of IslandProblem: Given a non-empty 2D array grid

2018-01-02
1

挑战程序竞赛系列(92):3.6凸包(3)

该文是关于解决一个几何问题,该问题的目标是确定一个凸多边形的最大内角。该文使用了一种称为“动态规划”的技术,该技术涉及使用子问题来解决问题。该文还介绍了一种称为“凸包”的数据结构,该数据结构用于表示凸多边形...

max
2018-01-02
0

LWC 55:714. Best Time to Buy and Sell Stock with Transaction Fee

该文讲述了如何使用动态规划求解最大利润问题,给定股票价格数组和交易费用,在一系列买入、卖出操作中选取最优策略,以最大利润为目标。具体介绍了状态转移方程和算法实现。"...

2018-01-02
1