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
- 원서읽자
- the midnight library
- 삼성
- englishbook
- 쉬운 알고리즘 문제
- 코딩테스트
- English
- 코테 준비
- 코테
- sw expert academy
- D4
- sw expert
- SQL
- swexpertacademy
- dfs
- nightroutine
- 알고리즘 문제
- 원서
- 직무면접
- MySQL
- PyQt
- BFS
- readingbook
- 알고리즘
- STUDYENGLISH
- 프로그래머스
- 코테 대비
- 완전탐색
- 백준
- 원서읽기
Archives
- Today
- Total
목록이진트리 (1)
시나브로
[D3] 7985. Rooted Binary Tree 재구성
#include int tree[3000]; int each_depth[12][1025]; int each_depth_index[12]; int max_depth = 0; int squeared_2[11] = { 0 }; void seach_depth(int start, int end, int depth) { if (depth > max_depth) return; int box = (end-start) / 2; each_depth[depth][each_depth_index[depth]++] = tree[start + box]; seach_depth(start, start + box - 1, depth + 1); seach_depth(start + box+1, end, depth + 1); } int ma..
알고리즘/SW Expert Academy
2019. 10. 6. 11:05