[leetcode] 1642. Furthest Building You Can Reach
Description
You are given an integer array heights representing the heights of buildings, some bricks, and some ladders.
You start your journey from building 0 and move to the next building by possibly using bricks or ladders.
While moving from building i to building i+1 (0-indexed),
If the current building’s height is greater than or equal to the next building’s height, you do not need a ladder or bricks.
If the current building’s height is less than the next building’s height, you can either use one ladder or (h[i+1] - h[i]) bricks.
Return the furthest building index (0-indexed) you can reach if you use the given ladders and bricks optimally.
Example 1:
Input: heights = [4,2,7,6,9,14,12], bricks = 5, ladders = 1
Output: 4
Explanation: Starting at building 0, you can follow these steps:
- Go to building 1 without using ladders nor bricks since 4 >= 2.
- Go to building 2 using 5 bricks. You must use either bricks or ladders because 2 < 7.
- Go to building 3 without using ladders nor bricks since 7 >= 6.
- Go to building 4 using your only ladder. You must use either bricks or ladders because 6 < 9.
It is impossible to go beyond building 4 because you do not have any more bricks or ladders.
Example 2:
Input: heights = [4,12,2,7,3,18,20,3,19], bricks = 10, ladders = 2
Output: 7
Example 3:
Input: heights = [14,3,19,3], bricks = 17, ladders = 0
Output: 3
Constraints:
- 1 <= heights.length <= 105
- 1 <= heights[i] <= 106
- 0 <= bricks <= 109
- 0 <= ladders <= heights.length
分析
題目的意思是:給你一個陣列,表示樓層的高,你又bricks塊磚和ladders個梯子,問能夠到達的最遠距離。這道題如果你知道用優先佇列的話,就好做了。剩下的就是根據
程式碼
class Solution:
def furthestBuilding(self, heights: List[int], bricks: int, ladders: int) -> int:
cnt=0
heap=[]
for i in range(1,len(heights)):
if(heights[i]>heights[i-1]):
cnt=heights[i]-heights[i-1]
heapq.heappush(heap,cnt)
if(len(heap)>ladders):
bricks-=heapq.heappop(heap)
if(bricks<0):
return i-1
return len(heights)-1
參考文獻
相關文章
- [LeetCode] 1953. Maximum Number of Weeks for Which You Can WorkLeetCode
- why you can be in netherland
- 【MySQL】ERROR 1093 You canMySqlError
- JavaScript’s “this”: how it works, where it can trip you upJavaScript
- You can‘t specify target table ‘Person‘ for update in FROM clause
- Composer 建立專案 You can also run `PHP --INI`PHP
- mysql中You can’t specify target table for update in FROM clMySql
- Microsoft's AI-powered app can help you learn ChineseROSAIAPP
- S2 - Lesson 57 - Can I help you, madam?
- I can't truly give chinese sex pills you a conclusive remedyREM
- 2008 5 19: I can't make exception for youException
- 完美解決stack Error: Can‘t find Python executable “python“, you can set the PYTHON env variable.ErrorPython
- use database 切換提示You can turn off this feature to get a quicker startupDatabaseUI
- Git衝突:commit your changes or stash them before you can merge.GitMIT
- ACEA:REACH汽車工業指南
- Can you create a second voting disk in a different ASM diskgroup when using External Redundancy in 1ASM
- Arduino BuildingUI
- Team BuildingUI
- [LeetCode] 3011. Find if Array Can Be SortedLeetCode
- 解決 Git 更新本地衝突:commit your changes or stash them before you can mergeGitMIT
- team building planUI
- Git衝突:commit your changes or stash them before you can merge. 解決辦法GitMIT
- You've got to find what you loveGo
- Mysql update in報錯 [Err] 1093 - You can't specify target table 'company_info' for update in FROM clauseMySql
- Git更新本地倉庫及衝突"Commit your changes or stash them before you can merge"解決GitMIT
- REACH報告多少錢要什麼資料
- Building a Dynamic Oracle ETL ProcedureUIOracle
- Building Custom ComponentsUI
- where are you going ? 反序為:going you are whereGo
- robbin的自白:You've got to find what you loveGo
- 阿里雲 Redis 報出You can't read against a non-read redis.解決方案阿里RedisAI
- Can'tgetKerberosrealmROS
- ftp "CanFTP
- 1469C Building a FenceUI
- Building a RESTful API in a Rails ApplicationUIRESTAPIAIAPP
- Notes for building gimp-printUI
- SGU 532. Building Foundation 暴力UI
- 排錯./configure: error: the HTTP XSLT module requires the libxml2/libxslt libraries. You can either doErrorHTTPUIXML