Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Lv. 2
- Lv. 0
- 자바스크립트
- 소프티어
- 프로그래머스
- 동적계획법
- 너비 우선 탐색
- programmers
- 오블완
- Java
- Python
- bfs
- group by
- 백준
- softeer
- SQL 고득점 KIT
- 티스토리챌린지
- level 3
- DP
- Lv. 3
- 파이썬
- SQL
- dfs
- LEVEL 2
- Dynamic Programming
- Lv. 1
- join
- Baekjoon
- javascript
- 깊이 우선 탐색
Archives
- Today
- Total
목록징검다리 (1)
몸과 마음이 건전한 SW 개발자
Softeer Level 3 징검다리 Python
문제 링크 https://softeer.ai/practice/6293 Softeer - 현대자동차그룹 SW인재확보플랫폼 남북으로 흐르는 개울에 동서로 징검다리가 놓여져 있다. 이 징검다리의 돌은 들쑥날쑥하여 높이가 모두 다르다. 철수는 개울의 서쪽에서 동쪽으로 높이가 점점 높은 돌을 밟으면서 개울을 지 softeer.ai 정답 코드 import sys input = sys.stdin.readline N = int(input()) stones = list(map(int,input().split())) dp = [1 for _ in range(N)] for i in range(1,N): nowCnt = 0 for j in range(i): tmpCnt = dp[j] if stones[j] < stones[i..
알고리즘
2023. 12. 7. 14:32