반응형
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
- javascript
- HTTP
- Node.js
- 소켓
- 문자열
- dfs
- HTTP 완벽 가이드
- Crawling
- Algorithm
- 프로그래머스
- ip
- socket
- 타입스크립트
- 레벨 1
- 타입 챌린지
- type challenge
- 프로그래머스 레벨 2
- 쉬운 문제
- 그래프
- dp
- 크롤링
- Nestjs
- 가천대
- BFS
- TCP
- 수학
- 백준
- 알고리즘
- 자바스크립트
- typescript
Archives
- Today
- Total
목록암호만들기 (1)
kakasoo
[DFS] 암호 만들기 (백준 1759번)
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 #include #include #include using namespace std; char arr[15]; bool visited[15]; int l, c; int moum; int jaum; vector str; void dfs(int cur, int start) { if (cur == l && moum >= 1 && jaum >= 2) { for (int i = 0; i
프로그래밍/알고리즘 풀이
2020. 3. 6. 16:29