Given n points on a 2D plane, find the maximum number of points that lie on the same straight line.
Example 1:
Input: [[1,1],[2,2],[3,3]] Output: 3 Explanation: ^ | | o | o | o +————-> 0 1 2 3 4 Example 2:
Input: [[1,1],[3,2],[5,3],[4,1],[2,3],[1,4]] Output: 4 Explanation: ^ | | o | o o | o | o o +——————-> 0 1 2 3 4 5 6 NOTE: input types have been changed on April 15, 2019. Please reset to default code definition to get new method signature.
The Employee table holds all employees. Every employee has an Id, and there is also a column for the department Id.
+—-+——-+——–+————–+ | Id | Name | Salary | DepartmentId | +—-+——-+——–+————–+ | 1 | Joe | 85000 | 1 | | 2 | Henry | 80000 | 2 | | 3 | Sam | 60000 | 2 | | 4 | Max | 90000 | 1 | | 5 | Janet | 69000 | 1 | | 6 | Randy | 85000 | 1 | | 7 | Will | 70000 | 1 | +—-+——-+——–+————–+ The Department table holds all departments of the company.
+—-+———-+ | Id | Name | +—-+———-+ | 1 | IT | | 2 | Sales | +—-+———-+ Write a SQL query to find employees who earn the top three salaries in each of the department. For the above tables, your SQL query should return the following rows (order of rows does not matter).
+————+———-+——–+ | Department | Employee | Salary | +————+———-+——–+ | IT | Max | 90000 | | IT | Randy | 85000 | | IT | Joe | 85000 | | IT | Will | 70000 | | Sales | Henry | 80000 | | Sales | Sam | 60000 | +————+———-+——–+ Explanation:
In IT department, Max earns the highest salary, both Randy and Joe earn the second highest salary, and Will earns the third highest salary. There are only two employees in the Sales department, Henry earns the highest salary while Sam earns the second highest salary.
这个里面最重要的是怎么能够选出满足条件top three salaries in each of the department的。这种前几个的问题就用选择之后count比较的方法就可以,其实就是说每个选中的人,和他同一部门并且比他工资高的工资(要去重)小于3个。
所以:
1 2 3 4 5 6
# Write your MySQL query statement below select t2.Name as Department, t1.Name as Employee, Salary from Employee t1 join Department t2 on t1.DepartmentId = t2.Id where (selectcount(distinct e.Salary) from Employee e where e.Salary > t1.Salary and e.DepartmentId = t1.DepartmentId) <3 orderby Department, Salary desc;
The demons had captured the princess (P) and imprisoned her in the bottom-right corner of a dungeon. The dungeon consists of M x N rooms laid out in a 2D grid. Our valiant knight (K) was initially positioned in the top-left room and must fight his way through the dungeon to rescue the princess.
The knight has an initial health point represented by a positive integer. If at any point his health point drops to 0 or below, he dies immediately.
Some of the rooms are guarded by demons, so the knight loses health (negative integers) upon entering these rooms; other rooms are either empty (0’s) or contain magic orbs that increase the knight’s health (positive integers).
In order to reach the princess as quickly as possible, the knight decides to move only rightward or downward in each step.
Write a function to determine the knight’s minimum initial health so that he is able to rescue the princess.