일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- deque
- 1일1솔
- Python
- pypy3
- JPA
- 프로그래머스
- popleft
- 합 구하기
- c#
- 소수찾기
- appendleft
- 완전탐색
- 우선순위큐
- 그리디 알고리즘
- python3
- 연관관계
- BFS
- spring
- DP
- 브루투포스
- mvc
- 인프런
- unity
- 소수판별
- 파이썬
- C#강의
- LCM
- 누적합
- Java
- 백준
Archives
- Today
- Total
목록20365 (1)
jae_coding

문제 문제 링크 코드 import sys from collections import deque input = sys.stdin.readline n = int(input()) colors = deque(input().strip()) result_colors = list() primary_color = "" while colors: x = colors.popleft() if x != primary_color: result_colors.append(x) primary_color = x if result_colors.count('B') >= result_colors.count('R'): result = 1 + result_colors.count('R') else: result = 1 + result_colors..
알고리즘 문제/그리디 문제
2022. 7. 20. 13:49