250x250
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 |
Tags
- dfs
- 코딩테스트
- englishbook
- 원서읽자
- 코테
- 원서읽기
- PyQt
- 원서
- readingbook
- 백준
- 직무면접
- 삼성
- D4
- STUDYENGLISH
- MySQL
- swexpertacademy
- 알고리즘 문제
- BFS
- sw expert
- nightroutine
- 완전탐색
- 쉬운 알고리즘 문제
- SQL
- 코테 준비
- English
- 코테 대비
- sw expert academy
- 알고리즘
- the midnight library
- 프로그래머스
Archives
- Today
- Total
목록알파벳 비교 (1)
시나브로
[ 프로그래머스 ] 스킬트리
1. skill에 있는 알파벳을 배열에 체크한다. 체크할 때 순서로 표시한다. 2. 각 스킬트리를 보면서 skill에 있는 알파벳이 나오면 순서를 체크하면서 한다. #include #include using namespace std; int solution(string skill, vector skill_trees) { int alpha[30] = { 0 }; for (int i = 0; i < skill.length(); i++) { alpha[skill[i] - 'A']=i+1; } int count = 0; for (int i = 0; i < skill_trees.size(); i++) { int memory = 0; int fail = 0; for (int k = 0; k < skill_trees..
알고리즘/프로그래머스
2020. 4. 4. 17:14