Time Needed to Buy Tickets - Leetcode 2073 - Python

แชร์
ฝัง
  • เผยแพร่เมื่อ 11 ธ.ค. 2024

ความคิดเห็น • 27

  • @yang5843
    @yang5843 8 หลายเดือนก่อน +13

    The problem had a solution that was more optimal than the simulation so I knew you were going to make a video.
    Here's the java solution
    class Solution {
    public int timeRequiredToBuy(int[] tickets, int k) {
    int rc = 0;
    for (int i=0;i

  • @Logeshwar-s7m
    @Logeshwar-s7m 8 หลายเดือนก่อน +5

    please make a playlist for leetcode database problems

  • @yuriaragao1910
    @yuriaragao1910 8 หลายเดือนก่อน +4

    Pretty neat solution! I solved it with a different logic, maybe yours is more straightforward, but I will share here anyways:
    The idea is to start res as the length of the queue multiplied by the number of tickets the kth person wants to buy (this is the upper bound of the result), then we traverse the tickets array decreasing res checking two conditions:
    1. If tickets[i] is smaller than tickets[k] then decrease res by their difference (we counted tickets[i] too many times)
    2. if i > k and tickets[i] >= tickets[k] decrease the result by 1, since the ith person is behind the kth person in the queue
    Here is the solution in Python:
    class Solution:
    def timeRequiredToBuy(self, tickets: List[int], k: int) -> int:
    res = len(tickets) * tickets[k]
    for i in range(len(tickets)):
    if tickets[i] < tickets[k]:
    res += tickets[i] - tickets[k]
    elif i > k:
    res -= 1
    return res

  • @rauffares3558
    @rauffares3558 8 หลายเดือนก่อน +3

    Great Explanation

  • @AbhijeetMuneshwar
    @AbhijeetMuneshwar 8 หลายเดือนก่อน +2

    Thanks for this easy explaination 🙏🏼

  • @MP-ny3ep
    @MP-ny3ep 8 หลายเดือนก่อน +1

    Great explanation as always. Thank you

  • @deepakkanshetti1413
    @deepakkanshetti1413 2 หลายเดือนก่อน

    Really neat solution 👍

  • @DebopriyoBasu
    @DebopriyoBasu 8 หลายเดือนก่อน +2

    Great explanation!
    Here is my JavaScript solution using the same logic:
    const timeRequiredToBuy = (tickets, k) => {
    let time = 0;
    const len = tickets.length;
    for (let i = 0; i < len; i++) {
    if (i

    • @CrabGuyy
      @CrabGuyy 8 หลายเดือนก่อน

      amazing, in javascript you could also do it in a more functional way with the "reduce" function of arrays, if you didn't know i would suggest you look into it since its pretty useful for this case

  • @dilmurodabdusamadov5572
    @dilmurodabdusamadov5572 8 หลายเดือนก่อน +1

    I tried to come up with mathy approach but it didn't fit well :)
    class Solution:
    def timeRequiredToBuy(self, tickets: List[int], k: int) -> int:
    more, less = 0, 0
    for i in range(len(tickets)):
    if tickets[i] < tickets[k]:
    less += tickets[i]
    else:
    more += 1
    return tickets[k] * more + less
    Thank you for the explanation tho!

  • @indianundergraddiaries
    @indianundergraddiaries 8 หลายเดือนก่อน +2

    Here's my Python code, I feel this maybe more intuitive and straight forward
    class Solution:
    def timeRequiredToBuy(self, tickets: List[int], k: int) -> int:
    count = 0
    while True:
    for i in range(len(tickets)):
    if tickets[k] == 0:
    return count
    elif tickets[i] == 0:
    continue
    tickets[i] -= 1
    count += 1

  • @adrianharo6586
    @adrianharo6586 8 หลายเดือนก่อน

    I just did this on Java. Using a while and nested for loop

  • @comatosesperrow
    @comatosesperrow 8 หลายเดือนก่อน

    I feel like there's a O(1) math solution somewhere here. Any ideas?

  • @MaazMalik-c9o
    @MaazMalik-c9o 8 หลายเดือนก่อน +2

    Here is my solution in java : class Solution {
    public int timeRequiredToBuy(int[] tickets, int k) {
    int l=tickets.length;
    int val=tickets[k];
    int time=0;
    for(int i=0;i

  • @deathbombs
    @deathbombs 8 หลายเดือนก่อน

    I solved 450 qs, couldn't optimize past simulation. Have tips or im just dumb?

    • @yang5843
      @yang5843 8 หลายเดือนก่อน

      Reflect on the problem, every person in front of k has to be able to buy student[k] tickets, and every person after k must be able to buy student[k] - 1 tickets.

  • @dragon_id_
    @dragon_id_ 8 หลายเดือนก่อน +1

    did every1 use "nums" instead of tickets at first !!

  • @s8x.
    @s8x. 8 หลายเดือนก่อน +1

    how did u learn everything

    • @spsc07
      @spsc07 8 หลายเดือนก่อน

      someone already said life lessons and hashmap

    • @s8x.
      @s8x. 8 หลายเดือนก่อน

      @@spsc07 neet

  • @ayushw
    @ayushw 8 หลายเดือนก่อน

    JS One-liner:
    var timeRequiredToBuy = function(tickets, k) {
    return tickets.reduce((acc, cur, i) => acc + Math.min(cur, tickets[k] - (i > k)), 0);
    };