अधिकतम एकल-बिक्री लाभ


123

मान लीजिए कि हमें एक ही दिन में स्टॉक मूल्य का प्रतिनिधित्व करने वाले एन पूर्णांक की एक सरणी दी गई है। हम एक जोड़ी लगाना चाहते हैं (buyDay, sellDay) , के साथ buyDay ≤ sellDay , इस तरह के हैं कि अगर हम पर शेयर खरीदा buyDay और पर इसे बेचा sellDay , हम अपने लाभ को अधिकतम जाएगा।

स्पष्ट रूप से एल्गोरिथ्म में एक ओ (एन 2 ) समाधान है जो सभी संभव (बायड, सेलडाय) जोड़े की कोशिश कर रहा है और उन सभी में से सबसे अच्छा ले रहा है। हालांकि, क्या एक बेहतर एल्गोरिदम है, शायद एक जो ओ (एन) समय में चलता है ?


2
This is the maximum sum subsequence problem with a level of indirection.
MSN

2
@MSN: How so? He isn't look at sums at all, but rather at differences between elements.
PengOne

@PengOne- True, but that question was closed. I reworded the question to be easier to understand, so could we try to keep this one open?
templatetypedef

2
@PengOne, Like I said, it has one level of indirection. Specifically, you want to maximize the sum of gains/losses over a contiguous set of days. Therefore, convert the list into gains/losses and find the maximum subsequence sum.
MSN

1
@PDN : That will not work because min can occur before max. You can't sell stock (in this case), and buy it later .
Ajeet Ganga

जवाबों:


287

मुझे इस समस्या से प्यार है। यह एक क्लासिक साक्षात्कार प्रश्न है और इस पर निर्भर करता है कि आप इसके बारे में कैसे सोचते हैं, आप बेहतर और बेहतर समाधान प्राप्त करेंगे। ओ (एन 2) से बेहतर में ऐसा करना निश्चित रूप से संभव है) time, and I've listed three different ways that you can think about the problem here. Hopefully this answers your question!

सबसे पहले, विभाजन और जीत समाधान। आइए देखें कि क्या हम आधे में इनपुट को विभाजित करके इसे हल कर सकते हैं, प्रत्येक सबरे में समस्या को हल कर सकते हैं, फिर दोनों को एक साथ जोड़ सकते हैं। पता चलता है कि हम वास्तव में ऐसा कर सकते हैं, और इतनी कुशलता से कर सकते हैं! अंतर्दृष्टि निम्नलिखित है। यदि हमारे पास एक ही दिन है, तो सबसे अच्छा विकल्प उस दिन खरीदना है और फिर बिना किसी लाभ के उसी दिन वापस बेच देना है। अन्यथा, सरणी को दो हिस्सों में विभाजित करें। यदि हम सोचते हैं कि इष्टतम उत्तर क्या हो सकता है, तो यह तीन स्थानों में से एक में होना चाहिए:

  1. सही खरीद / बिक्री जोड़ी पूरी तरह से पहली छमाही के भीतर होती है।
  2. सही खरीद / बिक्री जोड़ी पूरी तरह से दूसरी छमाही के भीतर होती है।
  3. सही खरीद / बिक्री जोड़ी दोनों हिस्सों में होती है - हम पहली छमाही में खरीदते हैं, फिर दूसरी छमाही में बेचते हैं।

हम अपने एल्गोरिथ्म को पहले और दूसरे पड़ाव पर पुनरावर्ती रूप से लागू करके (1) और (2) के लिए मान प्राप्त कर सकते हैं। विकल्प (3) के लिए, सबसे अधिक लाभ कमाने का तरीका पहली छमाही में सबसे कम बिंदु पर खरीदना और दूसरी छमाही में सबसे बड़े बिंदु पर बेचना होगा। हम इनपुट पर एक सरल रैखिक स्कैन करके और दो मूल्यों को खोजने के द्वारा दो हिस्सों में न्यूनतम और अधिकतम मान पा सकते हैं। इसके बाद हमें निम्न पुनरावृत्ति के साथ एक एल्गोरिथ्म मिलता है:

T(1) <= O(1)
T(n) <= 2T(n / 2) + O(n)

पुनरावृत्ति को हल करने के लिए मास्टर प्रमेय का उपयोग करते हुए , हम पाते हैं कि यह O (n lg n) समय में चलता है और पुनरावर्ती कॉल के लिए O (lg n) स्थान का उपयोग करेगा। हमने भोले ओ (एन 2 ) समाधान को हरा दिया है !

लेकिन रुकें! हम इससे बहुत बेहतर कर सकते हैं। ध्यान दें कि हमारे पुनरावृत्ति में O (n) शब्द का एकमात्र कारण यह है कि हमें प्रत्येक आधे में न्यूनतम और अधिकतम मान ज्ञात करने के लिए पूरे इनपुट को स्कैन करना था। चूंकि हम पहले से ही प्रत्येक छमाही की खोज कर रहे हैं, शायद हम बेहतर कर सकते हैं कि रिकर्सन भी प्रत्येक आधे में संग्रहीत न्यूनतम और अधिकतम मान वापस कर दे! दूसरे शब्दों में, हमारा पुनरावर्तन तीन चीजों को वापस करता है:

  1. लाभ को अधिकतम करने के लिए खरीदने और बेचने का समय।
  2. रेंज में कुल मिलाकर न्यूनतम मूल्य।
  3. रेंज में कुल मिलाकर अधिकतम मूल्य।

इन अंतिम दो मूल्यों को एक सीधी पुनरावृत्ति का उपयोग करके पुनरावर्ती रूप से गणना की जा सकती है जिसे हम पुनरावर्ती के रूप में उसी समय चला सकते हैं जब गणना करने के लिए (1):

  1. किसी एकल-तत्व श्रेणी का अधिकतम और न्यूनतम मान केवल वह तत्व है।
  2. एकाधिक तत्व श्रेणी के अधिकतम और न्यूनतम मान आधे में इनपुट को विभाजित करके, प्रत्येक आधे के अधिकतम और न्यूनतम मान को ढूंढकर, फिर उनके संबंधित अधिकतम और मिनट को प्राप्त करके पाया जा सकता है।

यदि हम इस दृष्टिकोण का उपयोग करते हैं, तो हमारा पुनरावृत्ति संबंध अब है

T(1) <= O(1)
T(n) <= 2T(n / 2) + O(1)

यहाँ मास्टर प्रमेय का उपयोग करके हमें O (ng) स्थान के साथ O (n) का रनटाइम मिलता है, जो हमारे मूल समाधान से भी बेहतर है!

लेकिन एक मिनट रुको - हम इससे भी बेहतर कर सकते हैं! आइए गतिशील प्रोग्रामिंग का उपयोग करके इस समस्या को हल करने के बारे में सोचें। समस्या के बारे में इस प्रकार विचार करना होगा। मान लीजिए कि हम पहले k तत्वों को देखने के बाद समस्या का उत्तर जानते थे। क्या हम पहले (k + 1) तत्वों के लिए समस्या को हल करने के लिए अपने प्रारंभिक समाधान के साथ संयुक्त (k + 1) सेंट तत्व के अपने ज्ञान का उपयोग कर सकते हैं? यदि ऐसा है, तो हम पहले तत्व के लिए समस्या को हल करके एक महान एल्गोरिथ्म प्राप्त कर सकते हैं, फिर पहले दो, फिर पहले तीन, आदि जब तक हम इसे पहले n तत्वों के लिए गणना नहीं करेंगे।

आइए इस बारे में सोचें कि यह कैसे करना है। यदि हमारे पास सिर्फ एक तत्व है, तो हम पहले से ही जानते हैं कि यह सबसे अच्छी खरीद / बिक्री जोड़ी है। अब मान लें कि हम पहले k तत्वों के लिए सबसे अच्छा उत्तर जानते हैं और (k + 1) st तत्व को देखते हैं। तब एकमात्र तरीका है कि यह मूल्य पहले के तत्वों के लिए हमारे पास जो था उससे बेहतर एक समाधान बना सकता है यदि पहले के तत्वों में से सबसे छोटे तत्व और उस नए तत्व के बीच का अंतर सबसे बड़ा अंतर है जो हमने अब तक गणना की है। तो मान लीजिए कि जैसे हम तत्वों के पार जा रहे हैं, हम दो मूल्यों पर नज़र रखते हैं - न्यूनतम मूल्य जो हमने अब तक देखा है, और अधिकतम लाभ जो हम पहले तत्वों के साथ कर सकते हैं। प्रारंभ में, हमने अब तक जो न्यूनतम मूल्य देखा है, वह पहला तत्व है, और अधिकतम लाभ शून्य है। जब हम एक नया तत्व देखते हैं, हम पहले अपने इष्टतम लाभ की गणना करके यह अनुमान लगाते हैं कि अब तक की सबसे कम कीमत पर खरीदकर और वर्तमान मूल्य पर बेचकर हम कितना लाभ कमाएंगे। यदि यह अब तक की गणना की गई इष्टतम मूल्य से बेहतर है, तो हम इस नए लाभ के लिए इष्टतम समाधान को अपडेट करते हैं। इसके बाद, हम अब तक देखे गए न्यूनतम तत्व को वर्तमान के सबसे छोटे तत्व और नए तत्व के रूप में अपडेट करते हैं।

चूँकि प्रत्येक चरण में हम केवल O (1) कार्य करते हैं और हम प्रत्येक n तत्वों को एक बार में देख रहे हैं, इसलिए O (n) को पूरा होने में समय लगता है! इसके अलावा, यह केवल ओ (1) सहायक भंडारण का उपयोग करता है। यह उतना ही अच्छा है जितना हमने अब तक प्राप्त किया है!

एक उदाहरण के रूप में, आपके इनपुट पर, यहां बताया गया है कि यह एल्गोरिदम कैसे चल सकता है। सरणी के प्रत्येक मान के बीच की संख्या उस बिंदु पर एल्गोरिथ्म द्वारा रखे गए मूल्यों के अनुरूप है। आप वास्तव में इन सभी को संग्रहीत नहीं करेंगे (यह O (n) मेमोरी!) लेगा, लेकिन यह एल्गोरिदम को विकसित होते देखने के लिए सहायक है:

            5        10        4          6         7
min         5         5        4          4         4    
best      (5,5)     (5,10)   (5,10)     (5,10)    (5,10)

उत्तर: (5, 10)

            5        10        4          6        12
min         5         5        4          4         4    
best      (5,5)     (5,10)   (5,10)     (5,10)    (4,12)

उत्तर: (4, 12)

            1       2       3      4      5
min         1       1       1      1      1
best      (1,1)   (1,2)   (1,3)  (1,4)  (1,5)

उत्तर: (1, 5)

क्या हम अब बेहतर कर सकते हैं? दुर्भाग्य से, एक विषम अर्थ में नहीं। यदि हम O (n) समय से कम का उपयोग करते हैं, तो हम बड़े इनपुट पर सभी नंबरों को नहीं देख सकते हैं और इस तरह गारंटी नहीं दे सकते हैं कि हम इष्टतम उत्तर को याद नहीं करेंगे (हम तत्वों में इसे "छिपा" सकते हैं) पर नहीं देखा)। साथ ही, हम O (1) स्थान से कम का उपयोग नहीं कर सकते। बिग-ओ नोटेशन में छिपे स्थिर कारकों के लिए कुछ अनुकूलन हो सकते हैं, लेकिन अन्यथा हम किसी भी मौलिक बेहतर विकल्प की उम्मीद नहीं कर सकते हैं।

कुल मिलाकर, इसका मतलब है कि हमारे पास निम्नलिखित एल्गोरिदम हैं:

  • Naive: O (n 2 ) time, O (1) स्पेस।
  • विभाजित और जीतना: O (n lg n) समय, O (lg n) स्थान।
  • अनुकूलित विभाजित और जीत: O (n) समय, O (lg n) स्थान।
  • गतिशील प्रोग्रामिंग: O (n) समय, O (1) स्थान।

उम्मीद है की यह मदद करेगा!

संपादित करें : यदि आप रुचि रखते हैं, तो मैंने इन चार एल्गोरिदम के पायथन संस्करण को कोडित किया है ताकि आप उनके साथ खेल सकें और उनके सापेक्ष प्रदर्शन का न्याय कर सकें। यहाँ कोड है:

# Four different algorithms for solving the maximum single-sell profit problem,
# each of which have different time and space complexity.  This is one of my
# all-time favorite algorithms questions, since there are so many different
# answers that you can arrive at by thinking about the problem in slightly
# different ways.
#
# The maximum single-sell profit problem is defined as follows.  You are given
# an array of stock prices representing the value of some stock over time.
# Assuming that you are allowed to buy the stock exactly once and sell the
# stock exactly once, what is the maximum profit you can make?  For example,
# given the prices
#
#                        2, 7, 1, 8, 2, 8, 4, 5, 9, 0, 4, 5
#
# The maximum profit you can make is 8, by buying when the stock price is 1 and
# selling when the stock price is 9.  Note that while the greatest difference
# in the array is 9 (by subtracting 9 - 0), we cannot actually make a profit of
# 9 here because the stock price of 0 comes after the stock price of 9 (though
# if we wanted to lose a lot of money, buying high and selling low would be a
# great idea!)
#
# In the event that there's no profit to be made at all, we can always buy and
# sell on the same date.  For example, given these prices (which might
# represent a buggy-whip manufacturer:)
#
#                            9, 8, 7, 6, 5, 4, 3, 2, 1, 0
#
# The best profit we can make is 0 by buying and selling on the same day.
#
# Let's begin by writing the simplest and easiest algorithm we know of that
# can solve this problem - brute force.  We will just consider all O(n^2) pairs
# of values, and then pick the one with the highest net profit.  There are
# exactly n + (n - 1) + (n - 2) + ... + 1 = n(n + 1)/2 different pairs to pick
# from, so this algorithm will grow quadratically in the worst-case.  However,
# it uses only O(1) memory, which is a somewhat attractive feature.  Plus, if
# our first intuition for the problem gives a quadratic solution, we can be
# satisfied that if we don't come up with anything else, we can always have a
# polynomial-time solution.

def BruteForceSingleSellProfit(arr):
    # Store the best possible profit we can make; initially this is 0.
    bestProfit = 0;

    # Iterate across all pairs and find the best out of all of them.  As a
    # minor optimization, we don't consider any pair consisting of a single
    # element twice, since we already know that we get profit 0 from this.
    for i in range(0, len(arr)):
        for j in range (i + 1, len(arr)):
            bestProfit = max(bestProfit, arr[j] - arr[i])

    return bestProfit

# This solution is extremely inelegant, and it seems like there just *has* to
# be a better solution.  In fact, there are many better solutions, and we'll
# see three of them.
#
# The first insight comes if we try to solve this problem by using a divide-
# and-conquer strategy.  Let's consider what happens if we split the array into
# two (roughly equal) halves.  If we do so, then there are three possible
# options about where the best buy and sell times are:
#
# 1. We should buy and sell purely in the left half of the array.
# 2. We should buy and sell purely in the right half of the array.
# 3. We should buy in the left half of the array and sell in the right half of
#    the array.
#
# (Note that we don't need to consider selling in the left half of the array
# and buying in the right half of the array, since the buy time must always
# come before the sell time)
#
# If we want to solve this problem recursively, then we can get values for (1)
# and (2) by recursively invoking the algorithm on the left and right
# subarrays.  But what about (3)?  Well, if we want to maximize our profit, we
# should be buying at the lowest possible cost in the left half of the array
# and selling at the highest possible cost in the right half of the array.
# This gives a very elegant algorithm for solving this problem:
#
#    If the array has size 0 or size 1, the maximum profit is 0.
#    Otherwise:
#       Split the array in half.
#       Compute the maximum single-sell profit in the left array, call it L.
#       Compute the maximum single-sell profit in the right array, call it R.
#       Find the minimum of the first half of the array, call it Min
#       Find the maximum of the second half of the array, call it Max
#       Return the maximum of L, R, and Max - Min.
#
# Let's consider the time and space complexity of this algorithm.  Our base
# case takes O(1) time, and in our recursive step we make two recursive calls,
# one on each half of the array, and then does O(n) work to scan the array
# elements to find the minimum and maximum values.  This gives the recurrence
#
#    T(1)     = O(1)
#    T(n / 2) = 2T(n / 2) + O(n)
#
# Using the Master Theorem, this recurrence solves to O(n log n), which is
# asymptotically faster than our original approach!  However, we do pay a
# (slight) cost in memory usage.  Because we need to maintain space for all of
# the stack frames we use.  Since on each recursive call we cut the array size
# in half, the maximum number of recursive calls we can make is O(log n), so
# this algorithm uses O(n log n) time and O(log n) memory.

def DivideAndConquerSingleSellProfit(arr):
    # Base case: If the array has zero or one elements in it, the maximum
    # profit is 0.
    if len(arr) <= 1:
        return 0;

    # Cut the array into two roughly equal pieces.
    left  = arr[ : len(arr) / 2]
    right = arr[len(arr) / 2 : ]

    # Find the values for buying and selling purely in the left or purely in
    # the right.
    leftBest  = DivideAndConquerSingleSellProfit(left)
    rightBest = DivideAndConquerSingleSellProfit(right)

    # Compute the best profit for buying in the left and selling in the right.
    crossBest = max(right) - min(left)

    # Return the best of the three
    return max(leftBest, rightBest, crossBest)

# While the above algorithm for computing the maximum single-sell profit is
# better timewise than what we started with (O(n log n) versus O(n^2)), we can
# still improve the time performance.  In particular, recall our recurrence
# relation:
#
#    T(1) = O(1)
#    T(n) = 2T(n / 2) + O(n)
#
# Here, the O(n) term in the T(n) case comes from the work being done to find
# the maximum and minimum values in the right and left halves of the array,
# respectively.  If we could find these values faster than what we're doing
# right now, we could potentially decrease the function's runtime.
#
# The key observation here is that we can compute the minimum and maximum
# values of an array using a divide-and-conquer approach.  Specifically:
#
#    If the array has just one element, it is the minimum and maximum value.
#    Otherwise:
#       Split the array in half.
#       Find the minimum and maximum values from the left and right halves.
#       Return the minimum and maximum of these two values.
#
# Notice that our base case does only O(1) work, and our recursive case manages
# to do only O(1) work in addition to the recursive calls.  This gives us the
# recurrence relation
#
#    T(1) = O(1)
#    T(n) = 2T(n / 2) + O(1)
#
# Using the Master Theorem, this solves to O(n).
#
# How can we make use of this result?  Well, in our current divide-and-conquer
# solution, we split the array in half anyway to find the maximum profit we
# could make in the left and right subarrays.  Could we have those recursive
# calls also hand back the maximum and minimum values of the respective arrays?
# If so, we could rewrite our solution as follows:
#
#    If the array has size 1, the maximum profit is zero and the maximum and
#       minimum values are the single array element.
#    Otherwise:
#       Split the array in half.
#       Compute the maximum single-sell profit in the left array, call it L.
#       Compute the maximum single-sell profit in the right array, call it R.
#       Let Min be the minimum value in the left array, which we got from our
#           first recursive call.
#       Let Max be the maximum value in the right array, which we got from our
#           second recursive call.
#       Return the maximum of L, R, and Max - Min for the maximum single-sell
#           profit, and the appropriate maximum and minimum values found from
#           the recursive calls.
#
# The correctness proof for this algorithm works just as it did before, but now
# we never actually do a scan of the array at each step.  In fact, we do only
# O(1) work at each level.  This gives a new recurrence
#
#     T(1) = O(1)
#     T(n) = 2T(n / 2) + O(1)
#
# Which solves to O(n).  We're now using O(n) time and O(log n) memory, which
# is asymptotically faster than before!
#
# The code for this is given below:

def OptimizedDivideAndConquerSingleSellProfit(arr):
    # If the array is empty, the maximum profit is zero.
    if len(arr) == 0:
        return 0

    # This recursive helper function implements the above recurrence.  It
    # returns a triple of (max profit, min array value, max array value).  For
    # efficiency reasons, we always reuse the array and specify the bounds as
    # [lhs, rhs]
    def Recursion(arr, lhs, rhs):
        # If the array has just one element, we return that the profit is zero
        # but the minimum and maximum values are just that array value.
        if lhs == rhs:
            return (0, arr[lhs], arr[rhs])

        # Recursively compute the values for the first and latter half of the
        # array.  To do this, we need to split the array in half.  The line
        # below accomplishes this in a way that, if ported to other languages,
        # cannot result in an integer overflow.
        mid = lhs + (rhs - lhs) / 2

        # Perform the recursion.
        ( leftProfit,  leftMin,  leftMax) = Recursion(arr, lhs, mid)
        (rightProfit, rightMin, rightMax) = Recursion(arr, mid + 1, rhs)

        # Our result is the maximum possible profit, the minimum of the two
        # minima we've found (since the minimum of these two values gives the
        # minimum of the overall array), and the maximum of the two maxima.
        maxProfit = max(leftProfit, rightProfit, rightMax - leftMin)
        return (maxProfit, min(leftMin, rightMin), max(leftMax, rightMax))

    # Using our recursive helper function, compute the resulting value.
    profit, _, _ = Recursion(arr, 0, len(arr) - 1)
    return profit

# At this point we've traded our O(n^2)-time, O(1)-space solution for an O(n)-
# time, O(log n) space solution.  But can we do better than this?
#
# To find a better algorithm, we'll need to switch our line of reasoning.
# Rather than using divide-and-conquer, let's see what happens if we use
# dynamic programming.  In particular, let's think about the following problem.
# If we knew the maximum single-sell profit that we could get in just the first
# k array elements, could we use this information to determine what the
# maximum single-sell profit would be in the first k + 1 array elements?  If we
# could do this, we could use the following algorithm:
#
#   Find the maximum single-sell profit to be made in the first 1 elements.
#   For i = 2 to n:
#      Compute the maximum single-sell profit using the first i elements.
#
# How might we do this?  One intuition is as follows.  Suppose that we know the
# maximum single-sell profit of the first k elements.  If we look at k + 1
# elements, then either the maximum profit we could make by buying and selling
# within the first k elements (in which case nothing changes), or we're
# supposed to sell at the (k + 1)st price.  If we wanted to sell at this price
# for a maximum profit, then we would want to do so by buying at the lowest of
# the first k + 1 prices, then selling at the (k + 1)st price.
#
# To accomplish this, suppose that we keep track of the minimum value in the
# first k elements, along with the maximum profit we could make in the first
# k elements.  Upon seeing the (k + 1)st element, we update what the current
# minimum value is, then update what the maximum profit we can make is by
# seeing whether the difference between the (k + 1)st element and the new
# minimum value is.  Note that it doesn't matter what order we do this in; if
# the (k + 1)st element is the smallest element so far, there's no possible way
# that we could increase our profit by selling at that point.
#
# To finish up this algorithm, we should note that given just the first price,
# the maximum possible profit is 0.
#
# This gives the following simple and elegant algorithm for the maximum single-
# sell profit problem:
#
#   Let profit = 0.
#   Let min = arr[0]
#   For k = 1 to length(arr):
#       If arr[k] < min, set min = arr[k]
#       If profit < arr[k] - min, set profit = arr[k] - min
#
# This is short, sweet, and uses only O(n) time and O(1) memory.  The beauty of
# this solution is that we are quite naturally led there by thinking about how
# to update our answer to the problem in response to seeing some new element.
# In fact, we could consider implementing this algorithm as a streaming
# algorithm, where at each point in time we maintain the maximum possible
# profit and then update our answer every time new data becomes available.
#
# The final version of this algorithm is shown here:

def DynamicProgrammingSingleSellProfit(arr):
    # If the array is empty, we cannot make a profit.
    if len(arr) == 0:
        return 0

    # Otherwise, keep track of the best possible profit and the lowest value
    # seen so far.
    profit = 0
    cheapest = arr[0]

    # Iterate across the array, updating our answer as we go according to the
    # above pseudocode.
    for i in range(1, len(arr)):
        # Update the minimum value to be the lower of the existing minimum and
        # the new minimum.
        cheapest = min(cheapest, arr[i])

        # Update the maximum profit to be the larger of the old profit and the
        # profit made by buying at the lowest value and selling at the current
        # price.
        profit = max(profit, arr[i] - cheapest)

    return profit

# To summarize our algorithms, we have seen
#
# Naive:                        O(n ^ 2)   time, O(1)     space
# Divide-and-conquer:           O(n log n) time, O(log n) space
# Optimized divide-and-conquer: O(n)       time, O(log n) space
# Dynamic programming:          O(n)       time, O(1)     space

1
@ FrankQ.- पुनरावर्ती कॉल के लिए स्थान की आवश्यकता होती है, लेकिन आमतौर पर उन कॉल को एक के बाद एक किया जाता है। इसका मतलब है कि संकलक कॉल के बीच मेमोरी का पुन: उपयोग कर सकता है; एक बार एक कॉल रिटर्न, अगली कॉल अपने स्थान का पुन: उपयोग कर सकती है। नतीजतन, आपको केवल एक समय में एक फ़ंक्शन कॉल को रखने के लिए मेमोरी की आवश्यकता होती है, इसलिए मेमोरी का उपयोग कॉल स्टैक की अधिकतम गहराई के लिए आनुपातिक है। चूंकि रिकर्सन O (लॉग एन) स्तरों पर समाप्त हो जाता है, केवल O (लॉग एन) मेमोरी का उपयोग करने की आवश्यकता होती है। कि चीजों को स्पष्ट करता है?
templatetypedef

क्या कोई इनको रुबी में पोर्ट कर सकता है? कुछ पुनरावृत्ति उसी तरह से काम नहीं करती है जैसे कि पायथन में। इसके अलावा ये समाधान केवल अधिकतम लाभ लौटाते हैं; वे उन सरणी बिंदुओं को वापस नहीं करते हैं जिनसे लाभ हुआ था (जिसका उपयोग अतीत में लाभ में वृद्धि के प्रतिशत को रिपोर्ट करने के लिए किया जा सकता है)
rcd

ओ (एन) समय समाधान की व्याख्या करने के लिए गतिशील प्रोग्रामिंग की अवधारणा की वास्तव में आवश्यकता नहीं है, लेकिन यह बहुत अच्छा है कि आप इन सभी प्रकार के एल्गोरिदम में बाँध लें।
Rn222

आप सभी उप O (n ^ 2) एल्गोरिथ्म में किसी भी जोड़े को लाभ द्वारा क्रमबद्ध सभी जोड़े कैसे बना सकते हैं?
फेरकिरी

@templatetypedef अगर हम M $ के बजट के साथ शुरू करने के लिए डायनेमिक प्रोग्रामिंग दृष्टिकोण को कैसे बदलेंगे, तो एकल स्टॉक के बजाय हमारे पास m स्टॉक थे जिनकी कीमत n दिनों से अधिक थी? यानी हमारे पास खरीदी गई स्टॉक इकाइयों की संख्या और स्टॉक स्टॉक से लेकर एन स्टॉक तक उपलब्ध डेटा (जैसे पूर्व में, हमारे पास केवल Google के लिए था, अब हमारे पास 5 अन्य कंपनियों के लिए भी है)
रौनक अग्रवाल

32

यह अप्रत्यक्ष की थोड़ी मात्रा के साथ अधिकतम योग की समस्या है। अधिकतम राशि के बाद की समस्या को पूर्णांकों की एक सूची दी गई है जो सकारात्मक या नकारात्मक हो सकती है, उस सूची के सबसे बड़े योग का सबसे बड़ा योग ज्ञात कीजिए।

आप लगातार इस समस्या को लगातार दिनों के बीच लाभ या हानि उठाकर इस समस्या में बदल सकते हैं। तो आप स्टॉक की कीमतों की एक सूची को बदल देंगे, जैसे [5, 6, 7, 4, 2]कि लाभ / हानि की सूची में, उदाहरण के लिए [1, 1, -3, -2]। बाद में योग की समस्या को हल करना बहुत आसान है: एक सरणी में तत्वों के सबसे बड़े योग के साथ बाद का पता लगाएं


1
मुझे नहीं लगता कि यह इस तरह से काफी कारगर साबित होता है, क्योंकि यदि आप किसी शुरुआती दिन स्टॉक खरीदते हैं तो आप पिछले दिन के डेल्टा के लाभों को अर्जित नहीं करते हैं। या यह इस दृष्टिकोण में एक समस्या नहीं है?
templatetypedef

1
@templatetypedef, इसीलिए आप सबसे बड़ी राशि और वर्तमान अनुक्रम राशि को ट्रैक करते हैं। जब वर्तमान अनुक्रम योग शून्य से नीचे चला जाता है, तो आप जानते हैं कि आपने उस क्रम से कोई पैसा नहीं कमाया है और आप फिर से शुरू कर सकते हैं। सबसे बड़ी राशि पर नज़र रखने से, आपको स्वचालित रूप से सबसे अच्छी खरीद / बिक्री की तारीख मिल जाएगी।
एमएसएन

6
@templatetypedef, संयोग से, आप अपने जवाब में यही काम करते हैं।
एमएसएन

16

मुझे यकीन नहीं है कि यह एक गतिशील प्रोग्रामिंग प्रश्न क्यों माना जाता है। मैंने इस प्रश्न को पाठ्यपुस्तकों और एल्गोरिथ्म गाइड में O (n लॉग एन) रनटाइम और O (लॉग एन) का उपयोग करके अंतरिक्ष के लिए देखा है (उदाहरण के लिए इंटरव्यू के तत्व)। ऐसा लगता है कि लोगों की तुलना में यह बहुत आसान समस्या है।

यह अधिकतम लाभ, न्यूनतम खरीद मूल्य, और परिणामस्वरूप, इष्टतम खरीद / बिक्री मूल्य पर नज़र रखकर काम करता है। जैसा कि यह सरणी में प्रत्येक तत्व के माध्यम से जाता है, यह देखने के लिए जांचता है कि दिया गया तत्व न्यूनतम खरीद मूल्य से छोटा है या नहीं। यदि यह है, तो न्यूनतम खरीद मूल्य सूचकांक, ( min), उस तत्व के सूचकांक के रूप में अद्यतन किया जाता है। इसके अतिरिक्त, प्रत्येक तत्व के लिए, becomeABillionaireएल्गोरिथ्म जांचता है कि क्या arr[i] - arr[min](वर्तमान तत्व और न्यूनतम खरीद मूल्य के बीच का अंतर) वर्तमान लाभ से अधिक है। यदि यह है, तो लाभ को उस अंतर पर अद्यतन किया जाता है और खरीदने के लिए सेट किया जाता है arr[min]और बेचने के लिए सेट किया जाता है arr[i]

एक ही पास में चलता है।

static void becomeABillionaire(int arr[]) {
    int i = 0, buy = 0, sell = 0, min = 0, profit = 0;

    for (i = 0; i < arr.length; i++) {
        if (arr[i] < arr[min])
            min = i;
        else if (arr[i] - arr[min] > profit) {
            buy = min; 
            sell = i;
            profit = arr[i] - arr[min];
        }

    }

    System.out.println("We will buy at : " + arr[buy] + " sell at " + arr[sell] + 
            " and become billionaires worth " + profit );

}

सह-लेखक: https://stackoverflow.com/users/599402/ephraim


2

समस्या अधिकतम उप-अनुक्रम के समान है
मैंने इसे गतिशील प्रोग्रामिंग का उपयोग करके हल किया। वर्तमान और पिछले का ट्रैक रखें (लाभ, खरीद और बिक्री की तारीख) यदि वर्तमान पिछले से अधिक है तो वर्तमान को पूर्व से बदल दें।

    int prices[] = { 38, 37, 35, 31, 20, 24, 35, 21, 24, 21, 23, 20, 23, 25, 27 };

    int buyDate = 0, tempbuyDate = 0;
    int sellDate = 0, tempsellDate = 0; 

    int profit = 0, tempProfit =0;
    int i ,x = prices.length;
    int previousDayPrice = prices[0], currentDayprice=0;

    for(i=1 ; i<x; i++ ) {

        currentDayprice = prices[i];

        if(currentDayprice > previousDayPrice ) {  // price went up

            tempProfit = tempProfit + currentDayprice - previousDayPrice;
            tempsellDate = i;
        }
        else { // price went down 

            if(tempProfit>profit) { // check if the current Profit is higher than previous profit....

                profit = tempProfit;
                sellDate = tempsellDate;
                buyDate = tempbuyDate;
            } 
                                     // re-intialized buy&sell date, profit....
                tempsellDate = i;
                tempbuyDate = i;
                tempProfit =0;
        }
        previousDayPrice = currentDayprice;
    }

    // if the profit is highest till the last date....
    if(tempProfit>profit) {
        System.out.println("buydate " + tempbuyDate + " selldate " + tempsellDate + " profit " + tempProfit );
    }
    else {
        System.out.println("buydate " + buyDate + " selldate " + sellDate + " profit " + profit );
    }   

2

यहाँ मेरा जावा समाधान है:

public static void main(String[] args) {
    int A[] = {5,10,4,6,12};

    int min = A[0]; // Lets assume first element is minimum
    int maxProfit = 0; // 0 profit, if we buy & sell on same day.
    int profit = 0;
    int minIndex = 0; // Index of buy date
    int maxIndex = 0; // Index of sell date

    //Run the loop from next element
    for (int i = 1; i < A.length; i++) {
        //Keep track of minimum buy price & index
        if (A[i] < min) {
            min = A[i];
            minIndex = i;
        }
        profit = A[i] - min;
        //If new profit is more than previous profit, keep it and update the max index
        if (profit > maxProfit) {
            maxProfit = profit;
            maxIndex = i;
        }
    }
    System.out.println("maxProfit is "+maxProfit);
    System.out.println("minIndex is "+minIndex);
    System.out.println("maxIndex is "+maxIndex);     
}

@ नीतीराज, हाँ यह समाधान सही है, लेकिन मैं आपसे अनुरोध करूँगा कि कृपया templatetypedef द्वारा उपलब्ध कराए गए उत्तर को पढ़ें, क्योंकि templatetypedef द्वारा दिए गए उत्तर में, रोहित द्वारा पोस्ट किए गए एक सहित सभी संभावित समाधानों का उल्लेख किया गया है। रोहित का समाधान वास्तव में ओ (एन) के साथ अंतिम समाधान का कार्यान्वयन है, जो कि टेम्पलपेटेटिपेड द्वारा दिए गए उत्तर में वर्णित गतिशील प्रोग्रामिंग का उपयोग करता है।
nits.kk

1
मान लीजिए कि आपकी सरणी int A [] = {5, 4, 6, 7, 6, 3, 2, 5} है; फिर अपने तर्क के अनुसार आप इंडेक्स 6 में खरीदेंगे और फिर इसे इंडेक्स 3 में बेचेंगे। यह गलत है। आप अतीत में नहीं बेच सकते। बेचने के सूचकांक को खरीदने के सूचकांक से अधिक होना चाहिए।
डेवलपर

1
उपरोक्त समाधान "लगभग" सही है। लेकिन यह "खरीद" मूल्य के सूचकांक के बजाय पूर्ण न्यूनतम सूचकांक को प्रिंट करता है। सही करने के लिए, आपको एक और चर की आवश्यकता है, कहो minBuyIndex जिसे आप केवल "if (लाभ> maxProfit)" ब्लॉक के अंदर अपडेट करते हैं और इसे प्रिंट करते हैं।
16

1

मैं एक सरल समाधान के साथ आया हूं - कोड स्व-स्पष्टीकरण का अधिक है। यह उन गतिशील प्रोग्रामिंग प्रश्न में से एक है।

कोड त्रुटि जाँच और किनारे मामलों की देखभाल नहीं करता है। समस्या को हल करने के लिए बुनियादी तर्क का विचार देने के लिए इसका सिर्फ एक नमूना है।

namespace MaxProfitForSharePrice
{
    class MaxProfitForSharePrice
    {
        private static int findMax(int a, int b)
        {
            return a > b ? a : b;
        }

        private static void GetMaxProfit(int[] sharePrices)
        {
            int minSharePrice = sharePrices[0], maxSharePrice = 0, MaxProft = 0;
            int shareBuyValue = sharePrices[0], shareSellValue = sharePrices[0];

            for (int i = 0; i < sharePrices.Length; i++)
            {
                if (sharePrices[i] < minSharePrice )
                {
                    minSharePrice = sharePrices[i];
                    // if we update the min value of share, we need to reset the Max value as 
                    // we can only do this transaction in-sequence. We need to buy first and then only we can sell.
                    maxSharePrice = 0; 
                }
                else 
                {
                    maxSharePrice = sharePrices[i];
                }

                // We are checking if max and min share value of stock are going to
                // give us better profit compare to the previously stored one, then store those share values.
                if (MaxProft < (maxSharePrice - minSharePrice))
                {
                    shareBuyValue = minSharePrice;
                    shareSellValue = maxSharePrice;
                }

                MaxProft = findMax(MaxProft, maxSharePrice - minSharePrice);
            }

            Console.WriteLine("Buy stock at ${0} and sell at ${1}, maximum profit can be earned ${2}.", shareBuyValue, shareSellValue, MaxProft);
        }

        static void Main(string[] args)
        {
           int[] sampleArray = new int[] { 1, 3, 4, 1, 1, 2, 11 };
           GetMaxProfit(sampleArray);
            Console.ReadLine();
        }
    }
}

1
public static double maxProfit(double [] stockPrices)
    {
        double initIndex = 0, finalIndex = 0;

        double tempProfit = list[1] - list[0];
        double maxSum = tempProfit;
        double maxEndPoint = tempProfit;


        for(int i = 1 ;i<list.length;i++)
        {
            tempProfit = list[ i ] - list[i - 1];;

            if(maxEndPoint < 0)
            {
                maxEndPoint = tempProfit;
                initIndex = i;
            }
            else
            {
                maxEndPoint += tempProfit;
            }

            if(maxSum <= maxEndPoint)
            {
                maxSum = maxEndPoint ;
                finalIndex = i;
            }
        }
        System.out.println(initIndex + " " + finalIndex);
        return maxSum;

    }

यहाँ मेरा समाधान है। अधिकतम उप-अनुक्रम एल्गोरिथ्म को संशोधित करता है। समस्या को O (n) में हल करता है। मुझे लगता है कि यह तेजी से नहीं किया जा सकता है।


1

यह एक दिलचस्प समस्या है, क्योंकि यह कठिन लगता है, लेकिन सावधानी से सोचा गया कि यह एक सुरुचिपूर्ण, विखंडित समाधान है।

जैसा कि उल्लेख किया गया है, इसे O (N ^ 2) समय में ब्रूट-बल से हल किया जा सकता है। सरणी (या सूची) में प्रत्येक प्रविष्टि के लिए, न्यूनतम या हानि प्राप्त करने के लिए समस्या के आधार पर न्यूनतम या अधिकतम प्राप्त करने के लिए सभी पिछली प्रविष्टियों पर पुनरावृति करें।

ओ (एन) में समाधान के बारे में सोचने का तरीका यहां बताया गया है: प्रत्येक प्रविष्टि एक नए संभावित अधिकतम (या मिनट) का प्रतिनिधित्व करती है। फिर, हमें केवल इतना करना होगा कि पूर्व मंत्री (या अधिकतम) को बचाएं, और वर्तमान और पूर्व मंत्री (या अधिकतम) के साथ अंतर की तुलना करें। बहुत आसान।

यहाँ एक JUnit परीक्षण के रूप में जावा में कोड है:

import org.junit.Test;

public class MaxDiffOverSeriesProblem {

    @Test
    public void test1() {
        int[] testArr = new int[]{100, 80, 70, 65, 95, 120, 150, 75, 95, 100, 110, 120, 90, 80, 85, 90};

        System.out.println("maxLoss: " + calculateMaxLossOverSeries(testArr) + ", maxGain: " + calculateMaxGainOverSeries(testArr));
    }

    private int calculateMaxLossOverSeries(int[] arr) {
        int maxLoss = 0;

        int idxMax = 0;
        for (int i = 0; i < arr.length; i++) {
            if (arr[i] > arr[idxMax]) {
                idxMax = i;
            }

            if (arr[idxMax] - arr[i] > maxLoss) {
                maxLoss = arr[idxMax] - arr[i];
            }           
        }

        return maxLoss;
    }

    private int calculateMaxGainOverSeries(int[] arr) {
        int maxGain = 0;

        int idxMin = 0;
        for (int i = 0; i < arr.length; i++) {
            if (arr[i] < arr[idxMin]) {
                idxMin = i;
            }

            if (arr[i] - arr[idxMin] > maxGain) {
                maxGain = arr[i] - arr[idxMin];
            }           
        }

        return maxGain;
    }

}

सबसे बड़ी हानि की गणना करने के मामले में, हम वर्तमान प्रविष्टि में सूची में अधिकतम मूल्य (खरीद मूल्य) का ध्यान रखते हैं। हम फिर अधिकतम और वर्तमान प्रविष्टि के बीच अंतर की गणना करते हैं। यदि अधिकतम - वर्तमान> मैक्सलॉस, तो हम इस अंतर को नए मैक्सलॉस के रूप में रखते हैं। चूंकि अधिकतम का सूचकांक वर्तमान के सूचकांक से कम होने की गारंटी है, इसलिए हम गारंटी देते हैं कि 'खरीद' तारीख 'बेचने' की तारीख से कम है।

सबसे बड़े लाभ की गणना के मामले में, सब कुछ उलट है। हम वर्तमान प्रविष्टि तक सूची में मिनट का ट्रैक रखते हैं। हम न्यूनतम और वर्तमान प्रविष्टि (घटाव में क्रम को उलटते हुए) के बीच के अंतर की गणना करते हैं। यदि वर्तमान - min> maxGain है, तो हम इसे नए maxGain के रूप में रखते हैं। फिर, 'खरीदें' (न्यूनतम) का सूचकांक वर्तमान ('बेचने') के सूचकांक से पहले आता है।

हमें केवल maxGain (या maxLoss), और न्यूनतम या अधिकतम के सूचकांक पर नज़र रखने की आवश्यकता है, लेकिन दोनों को नहीं, और हमें यह प्रमाणित करने के लिए सूचकांकों की तुलना करने की आवश्यकता नहीं है कि 'खरीदना' 'बेचने' से कम है, क्योंकि हम इसे स्वाभाविक रूप से प्राप्त करें।


1

अधिकतम एकल-विक्रय लाभ, O (n) समाधान

function stocks_n(price_list){
    var maxDif=0, min=price_list[0]

    for (var i in price_list){
        p = price_list[i];
        if (p<min)
            min=p
        else if (p-min>maxDif)
                maxDif=p-min;
   }

    return maxDif
}

यहाँ एक परियोजना है जो ओ (एन) बनाम ओ (एन ^ 2) पर समय जटिलता परीक्षण करती है, 100k ints पर यादृच्छिक डेटा सेट पर पहुंचती है। O (n ^ 2) में 2 सेकंड लगते हैं, जबकि O (n) 0.01 सेकंड लगते हैं

https://github.com/gulakov/complexity.js

function stocks_n2(ps){
    for (maxDif=0,i=_i=0;p=ps[i++];i=_i++)
        for (;p2=ps[i++];)
            if (p2-p>maxDif)
                maxDif=p2-p
    return maxDif
}

यह धीमा है, ओ (एन ^ 2) दृष्टिकोण है कि प्रत्येक दिन के लिए बाकी दिनों के माध्यम से छोरों, डबल लूप।


1

शीर्ष मतदान जवाब उन मामलों की अनुमति नहीं देता है जिनमें अधिकतम लाभ नकारात्मक है और ऐसे मामलों के लिए अनुमति देने के लिए संशोधित किया जाना चाहिए। लूप की सीमा (len (a) - 1) तक सीमित करके और प्रॉफिट को एक द्वारा इंडेक्स शिफ्ट करने से निर्धारित किया जाता है।

def singSellProfit(a):
profit = -max(a)
low = a[0]

for i in range(len(a) - 1):
    low = min(low, a[i])
    profit = max(profit, a[i + 1] - low)
return profit

सरणी के लिए पिछले के साथ फ़ंक्शन के इस संस्करण की तुलना करें:

s = [19,11,10,8,5,2]

singSellProfit(s)
-1

DynamicProgrammingSingleSellProfit(s)
0

0
static void findmaxprofit(int[] stockvalues){
    int buy=0,sell=0,buyingpoint=0,sellingpoint=0,profit=0,currentprofit=0;
    int finalbuy=0,finalsell=0;
    if(stockvalues.length!=0){
        buy=stockvalues[0];
    }           
    for(int i=1;i<stockvalues.length;i++){  
        if(stockvalues[i]<buy&&i!=stockvalues.length-1){                
            buy=stockvalues[i];
            buyingpoint=i;
        }               
        else if(stockvalues[i]>buy){                
            sell=stockvalues[i];
            sellingpoint=i;
        }
        currentprofit=sell-buy;         
        if(profit<currentprofit&&sellingpoint>buyingpoint){             
            finalbuy=buy;
            finalsell=sell;
            profit=currentprofit;
        }

    }
    if(profit>0)
    System.out.println("Buy shares at "+finalbuy+" INR and Sell Shares "+finalsell+" INR and Profit of "+profit+" INR");
    else
        System.out.println("Don't do Share transacations today");
}

0

अधिकतम लाभ का निर्धारण करने की संभावना सरणी में प्रत्येक सूचकांक में बाईं ओर न्यूनतम और दाईं ओर अधिकतम तत्वों का ट्रैक रखने के लिए हो सकती है। जब आप स्टॉक की कीमतों के माध्यम से पुनरावृत्ति कर रहे होते हैं, तो किसी भी दिन के लिए आपको उस दिन तक की सबसे कम कीमत पता चल जाएगी, और आप उस दिन के बाद (और सहित) अधिकतम मूल्य भी जान पाएंगे।

उदाहरण के लिए, एक निर्दिष्ट कर सकते हैं min_arrऔर max_arrयह देखते हुए सरणी होने के साथ arr। सूचकांक iमें min_arrमें कम से कम तत्व होगा arrसभी सूचकांकों के लिए <= i(के लिए छोड़ दिया और मैं भी शामिल है)। सूचकांक iमें max_arrमें अधिकतम तत्व होगाarr सभी सूचकांकों के लिए>= i (सही की और मैं भी शामिल है)। उसके बाद, आप max_arr'और min_arr' में संबंधित तत्वों के बीच अधिकतम अंतर पा सकते हैं :

def max_profit(arr)
   min_arr = []
   min_el = arr.first
   arr.each do |el|
       if el < min_el
           min_el = el
           min_arr << min_el
       else
           min_arr << min_el
       end
   end

   max_arr = []
   max_el = arr.last
   arr.reverse.each do |el|
       if el > max_el
           max_el = el
           max_arr.unshift(max_el)
       else
           max_arr.unshift(max_el)
       end

   end

   max_difference = max_arr.first - min_arr.first
   1.upto(arr.length-1) do |i|
        max_difference = max_arr[i] - min_arr[i] if max_difference < max_arr[i] - min_arr[i]  
   end

   return max_difference 
end

यह O (n) समय में चलना चाहिए, लेकिन मेरा मानना ​​है कि यह बहुत अधिक स्थान का उपयोग करता है।


0

यह सरणी में दो तत्वों के बीच अधिकतम अंतर है और यह मेरा समाधान है:

O (N) समय जटिलता O (1) अंतरिक्ष जटिलता

    int[] arr   =   {5, 4, 6 ,7 ,6 ,3 ,2, 5};

    int start   =   0;
    int end     =   0;
    int max     =   0;
    for(int i=1; i<arr.length; i++){
        int currMax =   arr[i] - arr[i-1];
        if(currMax>0){
            if((arr[i] -arr[start])>=currMax && ((arr[i] -arr[start])>=(arr[end] -arr[start]))){

                 end    =   i;
            }
            else if(currMax>(arr[i] -arr[start]) && currMax >(arr[end] - arr[start])){
                start   =   i-1;
                end =   i;
            }
        }
    }
    max =   arr[end] - arr[start];
    System.out.println("max: "+max+" start: "+start+" end: "+end);

0

एक एफबी समाधान इंजीनियर पद के लिए लाइव कोडिंग परीक्षा में इसे असफल करने के बाद मुझे इसे शांत शांत वातावरण में हल करना था, इसलिए यहां मेरे 2 सेंट हैं:

var max_profit = 0;
var stockPrices = [23,40,21,67,1,50,22,38,2,62];

var currentBestBuy = 0; 
var currentBestSell = 0;
var min = 0;

for(var i = 0;i < (stockPrices.length - 1) ; i++){
    if(( stockPrices[i + 1] - stockPrices[currentBestBuy] > max_profit) ){
        max_profit = stockPrices[i + 1] - stockPrices[currentBestBuy];
        currentBestSell = i + 1;  
    }
    if(stockPrices[i] < stockPrices[currentBestBuy]){
            min = i;
        }
    if( max_profit < stockPrices[i + 1] - stockPrices[min] ){
        max_profit = stockPrices[i + 1] - stockPrices[min];
        currentBestSell = i + 1;
        currentBestBuy = min;
    }
}

console.log(currentBestBuy);
console.log(currentBestSell);
console.log(max_profit);

कोड केवल उत्तर हतोत्साहित करते हैं।
प्रीतम बनर्जी

0

वास्तव में प्रश्न का उत्तर देने वाला एकमात्र उत्तर @akash_magoon (और इतने सरल तरीके से!) में से एक है, लेकिन यह प्रश्न में निर्दिष्ट सटीक ऑब्जेक्ट को वापस नहीं करता है। मैंने थोड़ा रिफलेक्ट किया और PHP में मेरा जवाब वही दिया, जो पूछा जाता है:

function maximizeProfit(array $dailyPrices)
{
    $buyDay = $sellDay = $cheaperDay = $profit = 0;

    for ($today = 0; $today < count($dailyPrices); $today++) {
        if ($dailyPrices[$today] < $dailyPrices[$cheaperDay]) {
            $cheaperDay = $today;
        } elseif ($dailyPrices[$today] - $dailyPrices[$cheaperDay] > $profit) {
            $buyDay  = $cheaperDay;
            $sellDay = $today;
            $profit   = $dailyPrices[$today] - $dailyPrices[$cheaperDay];
        }
    }
    return [$buyDay, $sellDay];
}

0

एक साफ समाधान:

+ (int)maxProfit:(NSArray *)prices {
    int maxProfit = 0;

    int bestBuy = 0;
    int bestSell = 0;
    int currentBestBuy = 0;

    for (int i= 1; i < prices.count; i++) {
        int todayPrice = [prices[i] intValue];
        int bestBuyPrice = [prices[currentBestBuy] intValue];
        if (todayPrice < bestBuyPrice) {
            currentBestBuy = i;
            bestBuyPrice = todayPrice;
        }

        if (maxProfit < (todayPrice - bestBuyPrice)) {
            bestSell = i;
            bestBuy = currentBestBuy;
            maxProfit = (todayPrice - bestBuyPrice);
        }
    }

    NSLog(@"Buy Day : %d", bestBuy);
    NSLog(@"Sell Day : %d", bestSell);

    return maxProfit;
}

0
def get_max_profit(stock):
    p=stock[0]
    max_profit=0
    maxp=p
    minp=p
    for i in range(1,len(stock)):
        p=min(p,stock[i])
        profit=stock[i]-p
        if profit>max_profit:
            maxp=stock[i]
            minp=p
            max_profit=profit
    return minp,maxp,max_profit



stock_prices = [310,315,275,295,260,270,290,230,255,250]
print(get_max_profit(stock_prices))

Python3 में यह कार्यक्रम खरीद मूल्य और बिक्री मूल्य को लौटा सकता है जो कि O (n) और O (1) के अंतरिक्ष जटिलता की गणना के साथ लाभ को अधिकतम करेगा ।


0

यहाँ मेरा समाधान है

public static int maxProfit(List<Integer> in) {
    int min = in.get(0), max = 0;
    for(int i=0; i<in.size()-1;i++){

        min=Math.min(min, in.get(i));

        max = Math.max(in.get(i) - min, max);
     }

     return max;
 }
}

-1

न्यूनतम और अधिकतम तत्वों पर नज़र रखने वाले सभी उत्तरों के लिए, वह समाधान वास्तव में O (n ^ 2) समाधान है। ऐसा इसलिए है क्योंकि अंत में यह जांचना होगा कि न्यूनतम के बाद अधिकतम हुआ या नहीं। यदि ऐसा नहीं होता, तो उस स्थिति के पूरा होने तक और पुनरावृत्तियों की आवश्यकता होती है, और यह O (n ^ 2) का सबसे खराब स्थिति छोड़ देता है। और अगर आप अतिरिक्त पुनरावृत्तियों को छोड़ना चाहते हैं तो बहुत अधिक स्थान की आवश्यकता है। किसी भी तरह से, गतिशील प्रोग्रामिंग समाधान की तुलना में कोई नहीं-नहीं

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.