| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- 10분
- 3줄정리
- 개발자
- 미드시청
- FIT XR
- 쓰릴오브파이트
- 링피트
- 읽기
- 화상영어
- 괜찮음
- 매일
- 스탭퍼
- 30분
- 파비최
- 뭐든
- 월간
- realclass
- leetcode
- 프로젝트
- Daily Challenge
- 리얼 클래스
- 영어원서읽기
- Writing
- English
- 만화도
- Problem Solving
- 잡생각
- 영어공부
- 사이드
- 운동
Archives
- Today
- Total
파비의 매일매일 공부기록
Today's Challenge 본문
https://leetcode.com/problems/count-sorted-vowel-strings/
Count Sorted Vowel Strings - LeetCode
Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.
leetcode.com
오늘은 최적화도 좀 해봤다. 원래 27% 빠른 거에서 97%까지 끌어올림.
DP로 모든 case에 대해서 구해도 되긴 하는데.. n=3을 손으로 계산해보니 패턴이 보여서 그냥 수학식으로 해결했다.
class Solution:
def countVowelStrings(self, n: int) -> int:
res = [1, 1, 1, 1, 1]
for i in range(1, n):
r = sum(res)
temp = [r, r-res[0], r-res[0]-res[1], r-res[0]-res[1]-res[2], 1]
res = temp
return sum(res)반응형
'Problem Solving > LeetCode' 카테고리의 다른 글
| Today's Challenge (0) | 2022.05.13 |
|---|---|
| Today's Challenge (0) | 2022.05.12 |
| Today's Challenge (0) | 2022.05.10 |
| Today's Challenge (0) | 2022.05.09 |
| Today's Challenge (0) | 2022.05.08 |
Comments