2300. Successful Pairs of Spells and Potions - Medium
前往題目
想法
- 暴力解很直觀
- 可以先排序,這樣就可以用
Binary Search
找那個最弱的藥水
思路
- 排序藥水,從大到小
- 一個咒語一個咒語循環
- 每個咒語都用二元搜尋去找第一個
success
的藥水,找到就可以知道總共有幾個藥水可以成功 - 每個咒語都檢查過就可以得到答案
Code
2300. Successful Pairs of Spells and Potions - Medium
https://f88083.github.io/2024/09/25/2300-Successful-Pairs-of-Spells-and-Potions-Medium/