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 | 31 |
Tags
- 코테 준비
- readingbook
- sw expert academy
- englishbook
- dfs
- 원서
- MySQL
- 원서읽기
- 코딩테스트
- 코테
- nightroutine
- SQL
- swexpertacademy
- 직무면접
- PyQt
- the midnight library
- 백준
- D4
- English
- 원서읽자
- 코테 대비
- 알고리즘
- 프로그래머스
- 삼성
- BFS
- sw expert
- 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