-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโll occasionally send you account related emails.
Already on GitHub? Sign in to your account
5-ljedd2 #139
5-ljedd2 #139
Conversation
import java.lang.Math;
class Solution {
public int solution(int[][] triangle) {
for(int i = 1; i < triangle.length; i++) {
for(int j = 0; j <= i; j++) {
int left = j > 0 ? triangle[i - 1][j - 1] : 0;
int right = j < i ? triangle[i - 1][j] : 0;
triangle[i][j] += Math.max(left, right);
}
}
int answer = 0;
for(int i = 0; i < triangle.length; i++) {
answer = Math.max(answer, triangle[triangle.length - 1][i]);
}
return answer;
}
} ์ ๋ ๋น์ทํ๊ฒ ํ์ดํ์ต๋๋ค!! ์ผ์ชฝ ์์ ์ค๋ฅธ์ชฝ ์ ๊ฐ์ left, right ๋ณ์๋ก ๋นผ๊ณ ์์ชฝ ๋ index์ด๋ฉด ์๋ ๋ฐฉํฅ์๋ 0์ ์ง์ด๋ฃ์ด์ ํฐ ๊ฐ์ ์ฐพ๋๋ก ํ์ต๋๋ค ์ด๋ฒ ์ฐจ์๋ ์๊ณ ํ์ จ์ด์! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
์ ๋ ์ผ๊ฐํ ๊ตฌ์กฐ๋ฅผ ๊ทธ๋๋ก ํ์ฉํ๋ ๋ฐฉ์์ผ๋ก ๋ฌธ์ ๋ฅผ ํ์ด๋๊ฐ์ต๋๋ค.
์ ์ฝ๋์ ๊ฑฐ์ ์ ์ฌํ๋ค์ :)
def solution(triangle):
# ์ฒซ ๋ฒ์งธ ํ์ ๊ฑด๋๋ฐ๊ณ ์ผ๊ฐํ์ ๊ฐ ํ์ ์ํํจ
for i in range(1, len(triangle)):
for j in range(i + 1):
# ์ฒซ ๋ฒ์งธ ์ด์ธ ๊ฒฝ์ฐ
if j == 0:
triangle[i][j] += triangle[i-1][j]
# ๋ง์ง๋ง ์ด์ธ ๊ฒฝ์ฐ
elif j == i:
triangle[i][j] += triangle[i-1][j-1]
# ๊ทธ ์ธ์ ๊ฒฝ์ฐ
else:
triangle[i][j] += max(triangle[i-1][j-1], triangle[i-1][j])
# ๋ง์ง๋ง ํ์์ ์ต๋ ๊ฐ์ ๋ฐํํจ
return max(triangle[-1])
์ ์๋์ ์๋์ฝ๋ ๋๋ถ์ ๋ฌธ์ ์ ๊ทผ๋ฐฉ๋ฒ์ ๋ ํ์คํ๊ฒ ์ดํดํ ๊ฒ ๊ฐ์ต๋๋ค!
์ด๋ฒ PR๋ ์๊ณ ํ์
จ์ด์!๐ถ๐
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
์์ ์ ๋ฐฑ์ค์์ ํ์ด๋ณธ ๊ฒฝํ์ด ์์ด์ ์ด์ฉ๋ค ํ์ด๋ฅผ ์ธ์ฐ๊ณ (?) ์๋ ๋ฌธ์ ๋ค์ ใ
..
DP๊ฐ ๋ ์ฌ๋ฆฌ๊ธฐ๋ ํ๋ค์ง๋ง ๋ง์ ๋ฌธ์ ํ์ด๋ ์ฐธ ์ฌํํ ๊ฒ ๊ฐ์์..ใ
ใ
์ด๋ฒ PR๋ ๊ณ ์ ๋ง์ผ์
จ์ต๋๋ค!!
def solution(triangle):
for i in range(1, len(triangle)):
for j in range(len(triangle[i])):
if j == 0:
triangle[i][j] = triangle[i-1][j] + triangle[i][j]
elif j == len(triangle[i]) - 1:
triangle[i][j] = triangle[i-1][j-1] + triangle[i][j]
else:
triangle[i][j] = max(triangle[i-1][j-1],triangle[i-1][j]) + triangle[i][j]
return max(triangle[len(triangle) - 1])
๐ ๋ฌธ์ ๋งํฌ
ํ๋ก๊ทธ๋๋จธ์ค ์ฝ๋ฉํ ์คํธ ๊ณ ๋์ Kit - ๋ค์ด๋๋ฏนํ๋ก๊ทธ๋๋ฐ | ์ ์ ์ผ๊ฐํ
๋ฌธ์ ์ค๋ช
์ ํ์ฌํญ
โ๏ธ ์์๋ ์๊ฐ
๊ณ ๋ฏผ 1์๊ฐ + ํด์ค ์ฐธ๊ณ
โจ ์๋ ์ฝ๋
1. ๋ฌธ์ ์ ๊ทผ ๋ฐ ํ์ด
์ฒ์์๋ ๋ค์๊ณผ ๊ฐ์ด ์ผ๊ฐํ์ ๋น ๊ณต๊ฐ์ 0์ผ๋ก ์ฑ์ด ํ๋ ฌ๋ก ๋ง๋ค์ด ๋ฌธ์ ๋ฅผ ํด๊ฒฐํ๋ ค ํ์ง๋ง ์ผ๊ฐํ ๊ตฌ์กฐ๋ฅผ ๊ทธ๋๋ก ํ์ฉํ๋ ๋ฐฉ์์ด ์๋ค๋ ๊ฒ์ ์๊ฒ ๋์์ต๋๋ค !
์ด๋ ๊ฒ ๋น๊ตํ๋ ๊ณผ์ ์ ์กฐ๊ฑด๋ฌธ์ผ๋ก ๋๊ณ ๊ฐ์ ์ ์ฅํด๋๊ฐ๋๋ค.
2. ์ต์ข ์ฝ๋
๐ ์๋กญ๊ฒ ์๊ฒ๋ ๋ด์ฉ