300x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 킥스타트
- 프로그래밍
- 프로그래머스
- 브루트포스
- 코딩 테스트
- 백준
- 순열
- 운영체제
- linux
- 파이썬
- 딥러닝
- AI
- 그래프
- 네트워크
- DFS
- 코딩
- 알고리즘
- kick start
- 코딩테스트
- BFS
- google coding competition
- dp
- CSS
- 구글 킥스타트
- 동적프로그래밍
- OS
- PYTHON
- 동적 프로그래밍
- nlp
- 리눅스
Archives
- Today
- Total
오뚝이개발자
[Google Kick Start] 2021 구글 킥스타트 Round B Increasing Substring 풀이 본문
코딩 테스트/Google Kick Start
[Google Kick Start] 2021 구글 킥스타트 Round B Increasing Substring 풀이
땅어 2021. 11. 6. 20:30728x90
300x250
문제
https://codingcompetitions.withgoogle.com/kickstart/round/0000000000435a5b/000000000077a882
나의 풀이
DP를 사용하여 푸는 간단한 문제이다. 문자열의 길이 n만큼의 dp 배열을 만들어서 모두 1로 초기화 한다. 이 배열은 해당 인덱스까지의 가장 긴 increasing substring 길이이다. 인덱스 1부터 n-1까지를 탐색하면서 검사하면 되는데 이 때, dp[i]는 s[i]와 sp[i-1]을 비교해 s[i]가 더 큰 알파벳이면 dp[i]=dp[i-1]+1을 해주고 아닌 경우 그냥 넘어간다.
예시에서 주어진대로 s = "ABACDA"라면 처음 dp=[1, 1, 1, 1, 1, 1]이다. 그 뒤 인덱스 1번을 검사하면 B는 A보다 크니까 dp[1] = dp[0]+1이 된다. 이 과정을 끝까지 반복하면 dp = [1, 2, 1, 2, 3, 1]을 얻을 수 있다.
코드
# https://codingcompetitions.withgoogle.com/kickstart/round/0000000000435a5b/000000000077a882
T = int(input())
for t in range(T):
n = int(input())
s = input()
dp = [1] * n
for i in range(1, n):
if ord(s[i]) > ord(s[i-1]):
dp[i] = dp[i-1] + 1
dp_str = list(map(str, dp))
print(f"Case #{t+1}: " + " ".join(dp_str))
728x90
300x250
'코딩 테스트 > Google Kick Start' 카테고리의 다른 글
[Google Kick Start] 2021 구글 킥스타트 Round H Transform the string 풀이 (0) | 2021.11.20 |
---|---|
[Google Kick Start] 2021 구글 킥스타트 Round G Dogs and Cats 풀이 (0) | 2021.11.18 |
[Google Kick Start] 2021 구글 킥스타트 Round E Suffled Anagrams 풀이 (0) | 2021.11.14 |
[Google Kick Start] 2021 구글 킥스타트 Round D Arithmetic Square 풀이 (0) | 2021.11.14 |
[Google Kick Start] 2021 구글 킥스타트 Round F Trash Bins 풀이 (0) | 2021.10.08 |
Comments