Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to solve the problem of diving board by LeetCode

2025-04-10 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/01 Report--

This article will explain in detail how to solve the diving board problem with LeetCode. The editor thinks it is very practical, so I share it for you as a reference. I hope you can get something after reading this article.

one

Topic description

Two sizes of boards are used to build diving boards, with sizes of longer and shorter respectively. A total of k blocks are used to calculate the lengths of all diving boards that can be obtained, and sort them from small to large. For example, shorter=1,longer=2,k=3, the final result is [3dy4, 5, 5, 6].

two

Answer to the question

Idea: a total of k boards are used in mathematical calculation, so if longer uses I blocks, then shorter uses Kmuri blocks. Based on this basic idea, this problem can be completed in linear time, and the more shorter blocks are used, the shorter the overall diving board length is. Therefore, in the calculation, the number of shorter blocks decreases gradually from k, which can avoid the sorting operation later. In addition to the above basic cases, there are two special cases to consider, one is that when KFO, the return is empty, and the other is that when shorter=longer, the returned result is shorter*k (longer*k). Class Solution: def divingBoard (self, shorter: int, longer: int, k: int)-> List [int]: s = [] if krypton0: return s for i in range (0 Longer*i+shorter* 1): s.append (longer*i+shorter* (- iTunk)) s = list (set (s)) s.sort () return s on "how LeetCode solves the diving board problem" ends here. Hope that the above content can be helpful to you, so that you can learn more knowledge, if you think the article is good, please share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report