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 |
Tags
- 삼성
- 원서읽기
- the midnight library
- 코테 대비
- 직무면접
- STUDYENGLISH
- 완전탐색
- sw expert
- 원서
- 코테
- MySQL
- englishbook
- 코딩테스트
- 원서읽자
- readingbook
- 알고리즘
- SQL
- 백준
- PyQt
- dfs
- English
- 프로그래머스
- sw expert academy
- BFS
- 코테 준비
- swexpertacademy
- D4
- 쉬운 알고리즘 문제
- nightroutine
- 알고리즘 문제
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