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
- MAP
- 다익스트라
- set
- 참고 문헌 : MACHINE LEARNING 기계학습 _ 오일석
- 코테
- 플로이드와샬
- 코딩테스트연습
- vector
- 코테준비
- 시스템콜
- String
- unordered_map
- 다이나믹프로그래밍
- C++
- sql고득점kit
- 최대공약수
- 리시프
- 문자열
- Dijkstra
- 프로그래머스
- MySQL
- 정렬
- 우선순위큐
- 스택
- 동적계획법
- substr
- 백준
- dfs
- 알고리즘
- DP
Archives
- Today
- Total
목록String (2)
YeJin's Footsteps

1. 문제 링크 https://programmers.co.kr/learn/courses/30/lessons/92334 코딩테스트 연습 - 신고 결과 받기 문제 설명 신입사원 무지는 게시판 불량 이용자를 신고하고 처리 결과를 메일로 발송하는 시스템을 개발하려 합니다. 무지가 개발하려는 시스템은 다음과 같습니다. 각 유저는 한 번에 한 명의 programmers.co.kr 2. 문제 풀이 3. 풀이 코드 #include #include #include #include #include using namespace std; map rCnt; map rList; vector solution(vector id_list, vector report, int k) { vector answer; for(string s: ..
Computer Science & Engineering/알고리즘
2022. 2. 1. 22:02

문제 링크 https://programmers.co.kr/learn/courses/30/lessons/60057 코딩테스트 연습 - 문자열 압축 데이터 처리 전문가가 되고 싶은 "어피치"는 문자열을 압축하는 방법에 대해 공부를 하고 있습니다. 최근에 대량의 데이터 처리를 위한 간단한 비손실 압축 방법에 대해 공부를 하고 있는데, 문 programmers.co.kr 문제 풀이 코드 #include #include #include #include using namespace std; int solution(string s) { int len=s.size(); int answer = len; for(int i=1; i
Computer Science & Engineering/알고리즘
2021. 7. 30. 23:34