일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 완전탐색
- 쉬운 알고리즘 문제
- nightroutine
- 직무면접
- sw expert
- 프로그래머스
- BFS
- 코테 준비
- English
- STUDYENGLISH
- SQL
- PyQt
- swexpertacademy
- MySQL
- 코딩테스트
- 백준
- 코테
- sw expert academy
- 원서
- readingbook
- 원서읽자
- 삼성
- 코테 대비
- 원서읽기
- 알고리즘 문제
- D4
- the midnight library
- dfs
- 알고리즘
- englishbook
- Today
- Total
목록sw expert (19)
시나브로
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...
#include int connect[101][101] = { 0 }; int q = 0; int person_amount = 0; int connect_amount = 0; void search(int list[],int point) { for (int i = 1; i
#include int input[500005] = { 0 }; int num; void quickSort(int first, int last) { int pivot; int i; int j; int temp; if (first < last) { pivot = first; i = first; j = last; while (i < j) { while (input[i] input[pivot]) { j--; } if (i < j) { temp = input[i]; input[i] = input[j]; input[j] = temp; } } temp = input[pivot]; input[pivot] = input[j]; input[j] = temp; quickSort(first, j - 1); quickSort..
#include int main() { int test_case = 0; scanf("%d", &test_case); char buffer = 0; scanf("%c", &buffer); for (int q = 0; q < test_case; q++) { int present_hours = 0; int present_min = 0; int present_second = 0; int future_hours = 0; int future_min = 0; int future_second = 0; int remain_hours = 0; int remain_second = 0; int remain_min = 0; scanf("%d:%d:%d",&present_hours,&present_min,&present_sec..