C++LeetCode(122.주식 을 사 는 가장 좋 은 시간의 2)실현

[LeetCode]122.Best Time to Buy and Sell Stock II 주식 사기 가장 좋 은 시간 2
Say you have an array for which the ith element is the price of a given stock on day i.
Design an algorithm to find the maximum profit. You may complete as many transactions as you like (ie, buy one and sell one share of the stock multiple times). However, you may not engage in multiple transactions at the same time (ie, you must sell the stock before you buy again).
이것 은 이전의 저것 과 매우 유사 하지만,모두 비교적 쉽게 풀 수 있다.이 문 제 는 무한 매입 과 판매 가 가능 하기 때문이다.우 리 는 모두 주식 투 기 를 해서 돈 을 벌 려 면 당연히 저가 로 매입 하고 고가 로 내 놓 는 것 이라는 것 을 알 고 있다.그러면 우 리 는 다음 날 부터 현재 가격 이 이전 가격 보다 높 으 면 차액 을 이윤 에 넣 어야 한다.왜냐하면 우 리 는 어제 매입 할 수 있 고 오늘 팔 수 있 기 때문이다.만약 내일 가격 이 더 높 으 면 오늘 매입 하고 내일 다시 내 놓 을 수 있 기 때문이다.이런 식 으로 미 루 면 전체 배열 을 옮 겨 다 니 면 최대 이윤 을 구 할 수 있다.코드 는 다음 과 같 습 니 다:
C++해법:

class Solution {
public:
    int maxProfit(vector<int>& prices) {
        int res = 0, n = prices.size();
        for (int i = 0; i < n - 1; ++i) {
            if (prices[i] < prices[i + 1]) {
                res += prices[i + 1] - prices[i];
            }
        }
        return res;
    }
};
자바 해법:

public class Solution {
    public int maxProfit(int[] prices) {
        int res = 0;
        for (int i = 0; i < prices.length - 1; ++i) {
            if (prices[i] < prices[i + 1]) {
                res += prices[i + 1] - prices[i];
            }
        }
        return res;
    }
}
유사 한 제목:
Best Time to Buy and Sell 주식 매매 베 스 트 타임
Best Time to Buy and Sell Stock with Cooldown
Best Time to Buy and Sell Stock IV
Best Time to Buy and Sell Stock III
C++가 LeetCode(122.주식 을 사 는 가장 좋 은 시간 2)를 실현 하 는 것 에 관 한 이 글 은 여기까지 소개 되 었 습 니 다.더 많은 관련 C++가 주식 을 사 는 가장 좋 은 시간 2 내용 은 우리 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 조회 하 시기 바 랍 니 다.앞으로 우 리 를 많이 지 켜 주세요!

좋은 웹페이지 즐겨찾기