일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 원서읽기
- the midnight library
- 직무면접
- STUDYENGLISH
- 쉬운 알고리즘 문제
- 알고리즘 문제
- 원서
- English
- 알고리즘
- 원서읽자
- PyQt
- sw expert
- SQL
- 삼성
- 완전탐색
- englishbook
- dfs
- swexpertacademy
- 코테 준비
- MySQL
- readingbook
- 코테
- 프로그래머스
- BFS
- 코딩테스트
- D4
- sw expert academy
- 코테 대비
- 백준
- Today
- Total
목록삼성 기출 (5)
시나브로
8% , 82% 에서 두번 막히고 적는 확인할 점들 1. 사람이 서있는 곳도 택시는 지날 수 있다. [ 손님을 택시에 태워서 도착지로 가능 경우,] 2. 동일한 거리가 있을 경우, 행/렬 크기로 우선순위 설정 3. 도착지가 다른 사람의 출발지가 될 수 있다. => 출발지가 적혀있는 배열에 도착지를 표시할 경우, 데이터가 사라질 수 있다. 4. 도착지로 갈 수 없는 경우가 있다. #include #include #include #include #include using namespace std; typedef struct value { int i; int j; long long f; }; typedef struct person { int si; int sj; int ei; int ej; }; value t..
#include #include #include using namespace std; typedef struct node { int i; int j; }; vector list = { {0,0,0,0},{0,1,0,0},{0,1,0,1},{1,1,0,0}, {1,1,0,1},{1,1,1,1} }; int dx[] = {-1,0,1,0 }; int dy[] = {0,1,0,-1 }; int N, M; int max_check; vector shift(vector i) { vector k; k.push_back(i[3]); k.push_back(i[0]); k.push_back(i[1]); k.push_back(i[2]); return k; } void dfs(vector map, int check, que..
#include using namespace std; int map[110][110]; int main() { freopen("inp.inp", "r", stdin); freopen("out.out", "w", stdout); int n, l; cin >> n >> l; for (int i = 0; i > map[i][j]; } } int answer = 0; for (int i = 0; i < n; i++) { int high = map[i][0]; int sig = 1; int check[110] = { 0 }; for (int j = 1; j < n; j++) { if (high == map[i][j]) contin..
#include #include using namespace std; typedef struct y { int i; int j; }; int map[110][110] = { 0 }; int list[110][2]; int head[2] = {1,1}; int tail[2] = {1,1}; int d = 1; int dx[] = { -1,0,1,0 }; int dy[] = { 0,1,0,-1 }; int main() { freopen("inp.inp", "r", stdin); freopen("out.out", "w", stdout); int n = 0; cin >> n; int apple; cin >> apple; for (int i = 0; i > ..