[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
- In the meantime you can read the IGN analysis of Madden 22
- FILESTREAM feature can't be enabled if you use cluster shared volumes
- Composer 建立專案 You can also run `PHP --INI`PHP
- S2 - Lesson 57 - Can I help you, madam?
- You can‘t specify target table ‘Person‘ for update in FROM clause
- mysql中You can’t specify target table for update in FROM clMySql
- 完美解決stack Error: Can‘t find Python executable “python“, you can set the PYTHON env variable.ErrorPython
- [LeetCode] 3011. Find if Array Can Be SortedLeetCode
- HDU 4027 Can you answer these queries? (線段樹 區間開方)
- use database 切換提示You can turn off this feature to get a quicker startupDatabaseUI
- Arduino BuildingUI
- 解決 Git 更新本地衝突:commit your changes or stash them before you can mergeGitMIT
- 排錯./configure: error: the HTTP XSLT module requires the libxml2/libxslt libraries. You can either doErrorHTTPUIXML
- 阿里雲 Redis 報出You can't read against a non-read redis.解決方案阿里RedisAI
- Git更新本地倉庫及衝突"Commit your changes or stash them before you can merge"解決GitMIT
- Building an Automatically Scaling Web ApplicationUIWebAPP
- 1469C Building a FenceUI
- Are you sure you understand the responsive layout?
- ACEA:REACH汽車工業指南
- Building OpenNI using a cross-compilerUIROSCompile
- CF1316E Team BuildingUI
- Reach a Number 到達終點數字
- A lightweight, ultra-fast tool for building observability pipelinesASTUI
- CAN協議協議
- CAN_NM
- NVIDIA Xavier CAN
- 為什麼你應該嘗試@reach/router
- REACH報告多少錢要什麼資料
- 飛利浦案例研究: Building Connectivity with Kotlin MultiplatformUIKotlinPlatform
- Best Wishes「兔」You!
- CAN過濾器過濾器
- [翻譯]Building WhatsApp Ui with Flutter Part 2 : The Chat ListUIAPPFlutter
- You don't know CSSCSS
- Module 1 Getting to know you
- CF1554E You
- What You See Is What You Get 所見即所得 20240525~0526 心得記錄