leetcode 123. 주식 매매 적기 III
5788 단어 동적 계획
class Solution {
public int maxProfit(int[] prices) {
if(prices.length==0){
return 0;
}
/*int[][] dp=new int[prices.length][2];
for (int i=0;i
int[] dp1=new int[prices.length];
int[] dp2=new int[prices.length];
for (int i=0;ifor (int j=0;j1<0?0:dp1[j-1]),
dp2[j]
));
}
}
return Math.max(dp2[prices.length-1],dp1[prices.length-1]);
}
}
public int maxProfit(int[] prices) {
if(prices.length==0){
return 0;
}
int[] ex=new int[prices.length];
for(int i=1;i1];
}
int ans=0;
for(int i=0;iint fs=0;
int fm=0;
for(int j=0;j<=i;++j){
fs=Math.max(ex[j],fs+ex[j]);
fm=Math.max(fm,fs);
}
int ss=0;
int sm=0;
for(int j=i+1;jreturn ans;
}
public int maxProfit(int[] prices) {
if(prices.length==0){
return 0;
}
int i1,i2,o1,o2;
i1=Integer.MIN_VALUE;
i2=Integer.MIN_VALUE;
o1=0;
o2=0;
for(int i=0;ireturn o2;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
124. 두 갈래 나무의 최대 경로와 leetcode비공 두 갈래 트리를 지정하고 최대 경로와 를 되돌려줍니다. 본고에서 경로는 나무의 임의의 노드에서 출발하여 임의의 노드에 도달하는 서열로 정의되었다.이 경로는 루트 노드를 거치지 않고 하나 이상의 노드를 포함합니다...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.