Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- BFS: Shortest Reach in a Graph
- Find the nearest clone
- hackerrank
- Recursion: Davis' Staircase
- 머신러닝
- Max Array Sum
- 알고리즘
- 파이썬
- DFS: Connected Cell in a Grid
- 백준
- 격파르타 장점
- 코딩테스트
- Reverse Shuffle Merge
- 프로그래머스
- programmers
- python
- Roads and Libraries
- 격파르타 후기
- candies
- 구슬탈출2
- [sqld]자격증합격
- 피보나치 함수
- 매칭점수
- Special String Again
- 야근지수
- Common Child
- 해커랭크
- Interview Preparation Kit
- Algorithm
- 격파르타 합격후기
Archives
- Today
- Total
목록candies (1)
Archive
[Hackerrank] [Medium] Candies
https://www.hackerrank.com/challenges/candies/problem Candies | HackerRank Help Alice to save money by minimizing the total number of candies. www.hackerrank.com 풀이 2번 iteration을 사용. 오른쪽으로 iteration돌 때는 오름차순일 때 dp 값을 채워줌. 왼쪽으로 iteration돌 때는 내림차순일 때 dp값을 채워줌. def candies(n, arr): n = len(arr) # 최소값은 1로 문제에서 주어짐. dp = [1] * n for i in range(1, n): # 다음 원소가 더 크면 dp값을 증가해줌. if arr[i-1] < arr[i]: dp[..
공부/Algorithm
2020. 9. 1. 17:18