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
- 쉬운 알고리즘 문제
- dfs
- readingbook
- SQL
- 코테
- 코딩테스트
- sw expert
- 프로그래머스
- 알고리즘 문제
- BFS
- 원서읽기
- D4
- 완전탐색
- 코테 대비
- 원서읽자
- MySQL
- the midnight library
- englishbook
- 삼성
- 알고리즘
- English
- 코테 준비
- sw expert academy
- PyQt
- nightroutine
- 직무면접
- 백준
- 원서
- STUDYENGLISH
- swexpertacademy
Archives
- Today
- Total
목록41 (1)
시나브로
1949. [모의 SW 역량테스트] 등산로 조성
41개에 오답이 뜬다면, visit 체크를 해보길 바랍니다... 등산로에 포함된 길을 깍으면 안되기 때문입니다. #include #include #include #include using namespace std; typedef struct node { int i; int j; }; int dx[] = { 0,-1,0,1 }; int dy[] = { 1,0,-1,0 }; int max_length = 0; void search(vector map,node point,int possible,int count,vector visit) { for (int k = 0; k = 0 && point.i + dx[k] < map.size() && point...
알고리즘/SW Expert Academy
2020. 12. 2. 13:40