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
- CSS
- hackctf
- 드림핵
- 생활코딩
- Sookmyung Information Security Study
- The Loard of BOF
- 자료구조 복습
- 풀이
- BOJ Python
- lob
- PHP 웹페이지 만들기
- HTML
- 백준
- siss
- 웹페이지 만들기
- 파이썬
- SWEA
- WarGame
- Javascript
- BOJ
- hackerrank
- c++
- 기계학습
- 머신러닝
- XSS Game
- c
- 숙명여자대학교 정보보안 동아리
- Python
- 숙명여자대학교 정보보안동아리
- C언어
Archives
- Today
- Total
목록트리의 부모 찾기 (1)
혜랑's STORY
[BOJ_C++] 11725번 : 트리의 부모 찾기
code #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include using namespace std; #define MAX 100001 int parent[MAX]; vector tree[MAX]; void search(int node) { for (int i = 0; i < tree[node].size(); i++) { if (parent[tree[node][i]] == 0) { parent[tree[node][i]] = node; search(tree[node][i]); } } } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.ti..
무지성 공부방/알고리즘 해결
2021. 8. 6. 14:20