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
- 스택
- command
- CollectionView
- XAML
- 그래프
- DP
- FEED
- Custom Cell
- Grid
- WPF
- 백준온라인
- 코딩야학
- CustomCollectionViewCell
- MVVM
- 백준
- 타일링
- 문자열
- 생활코딩
- Cell Animation
- listview
- dfs
- C++
- BOJ
- BFS
- 데이터 바인딩
- 객체
- Fakebook
- UIView Animation
- Add TapGesture
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함