BOJ)10451 순열 사이클
문제 : https://www.acmicpc.net/problem/10451 #include #include #include #include #include #include using namespace std; vector graph[1001]; bool visited[1001] = { false }; int edge_num, vertex_index;//edge_num = vertex_num int cnt = 0; void DFS(int position, int start_pos) { visited[position] = true; for (int i = 0; i < graph[position].size(); i++) { int next_position = graph[position][i]; if (nex..
알고리즘/(깨짐)
2017. 3. 15. 21:42
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- FEED
- BOJ
- 백준
- 타일링
- 그래프
- DP
- 스택
- CollectionView
- 문자열
- 생활코딩
- 객체
- Custom Cell
- 데이터 바인딩
- Add TapGesture
- Cell Animation
- Grid
- 코딩야학
- command
- listview
- MVVM
- CustomCollectionViewCell
- WPF
- C++
- dfs
- 백준온라인
- Fakebook
- BFS
- UIView Animation
- XAML
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함