Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Challenges

Post History

66%
+2 −0
Challenges How many umbrellas to cover the beach?

Python 3.8, 117 bytes def f(l): r,s,t=0,0,0 while s<len(l):_,s,t,r=[t:=max(t,(s+i+h)*(h>i))for i,h in enumerate(l[s:])],t,0,r+1 return r Try it online! The idea is to find the le...

posted 6mo ago by justhalf‭  ·  edited 6mo ago by justhalf‭

Answer
#2: Post edited by user avatar justhalf‭ · 2023-11-23T06:26:48Z (6 months ago)
Update header
  • # [Python 3.8 (pre-release)], 117 bytes
  • <!-- language-all: lang-python -->
  • def f(l):
  • r,s,t=0,0,0
  • while s<len(l):_,s,t,r=[t:=max(t,(s+i+h)*(h>i))for i,h in enumerate(l[s:])],t,0,r+1
  • return r
  • [Try it online!][TIO-lp9oxfzp]
  • The idea is to find the left-most uncovered spot, find the umbrella that cover as many spots to the right as possible. Repeat until no more uncovered spot.
  • I'm sure this can be golfed further.
  • [Python 3.8 (pre-release)]: https://docs.python.org/3.8/
  • [TIO-lp9oxfzp]: https://tio.run/##bY3NCsIwEITvfYocE7uH/lm0WF@kFCmYkECblk2K@vQxqVWoyrDLMh@zMz2sHHV@mNC5KxdE0J5VEUEwYOsEvCJyk6rnxJx6rgO9BAZYN7aqh@5OLVATq1iyHZVnxZgYkSiQRGnC9Txw7CynfWOqlrU@mADGqW/gdkZN0E2otKWCNkfIIIXc7yJcLWPRh6Ww0YaFVLFOyG/p/uUtE1R@/c2Wxt@2f375dldlnron "Python 3.8 (pre-release) – Try It Online"
  • # [Python 3.8], 117 bytes
  • <!-- language-all: lang-python -->
  • def f(l):
  • r,s,t=0,0,0
  • while s<len(l):_,s,t,r=[t:=max(t,(s+i+h)*(h>i))for i,h in enumerate(l[s:])],t,0,r+1
  • return r
  • [Try it online!][TIO-lp9oxfzp]
  • The idea is to find the left-most uncovered spot, find the umbrella that cover as many spots to the right as possible. Repeat until no more uncovered spot.
  • I'm sure this can be golfed further.
  • [Python 3.8]: https://docs.python.org/3.8/
  • [TIO-lp9oxfzp]: https://tio.run/##bY3NCsIwEITvfYocE7uH/lm0WF@kFCmYkECblk2K@vQxqVWoyrDLMh@zMz2sHHV@mNC5KxdE0J5VEUEwYOsEvCJyk6rnxJx6rgO9BAZYN7aqh@5OLVATq1iyHZVnxZgYkSiQRGnC9Txw7CynfWOqlrU@mADGqW/gdkZN0E2otKWCNkfIIIXc7yJcLWPRh6Ww0YaFVLFOyG/p/uUtE1R@/c2Wxt@2f375dldlnron "Python 3.8 (pre-release) – Try It Online"
#1: Initial revision by user avatar justhalf‭ · 2023-11-22T11:39:17Z (6 months ago)
# [Python 3.8 (pre-release)], 117 bytes

<!-- language-all: lang-python -->

    def f(l):
     r,s,t=0,0,0
     while s<len(l):_,s,t,r=[t:=max(t,(s+i+h)*(h>i))for i,h in enumerate(l[s:])],t,0,r+1
     return r

[Try it online!][TIO-lp9oxfzp]

The idea is to find the left-most uncovered spot, find the umbrella that cover as many spots to the right as possible. Repeat until no more uncovered spot.

I'm sure this can be golfed further.

[Python 3.8 (pre-release)]: https://docs.python.org/3.8/
[TIO-lp9oxfzp]: https://tio.run/##bY3NCsIwEITvfYocE7uH/lm0WF@kFCmYkECblk2K@vQxqVWoyrDLMh@zMz2sHHV@mNC5KxdE0J5VEUEwYOsEvCJyk6rnxJx6rgO9BAZYN7aqh@5OLVATq1iyHZVnxZgYkSiQRGnC9Txw7CynfWOqlrU@mADGqW/gdkZN0E2otKWCNkfIIIXc7yJcLWPRh6Ww0YaFVLFOyG/p/uUtE1R@/c2Wxt@2f375dldlnron "Python 3.8 (pre-release) – Try It Online"