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
- deque
- 큐
- queue
- DP
- BOJ
- brute force
- IOS
- 후쿠오카 요도바시 하카타
- 완전 탐색
- 너비 우선 탐색
- 하카타역
- dfs
- 플로이드
- 후쿠오카 4박 5일
- 후쿠오카 여행경비
- 깊이 우선 탐색
- 후쿠오카 캐널시티
- 후쿠오카
- 플로이드 와샬
- 알고리즘
- BFS
- 백준
- 완전탐색
- 삼성테스트
- 삼성시험
- 삼성 SW 테스트
- 미로찾기
- 다이나믹 프로그래밍
- 시뮬레이션
- 일본 여행
Archives
- Today
- Total
목록전체 글 (114)
맛있는감귤
BOJ : 1085 직사각형에서 탈출
문제 : https://www.acmicpc.net/problem/1085 github : https://github.com/JEONG-SEUNGWOOK/BOJ/blob/master/1085.cpp #include #include using namespace std; int main(){ int x,y,w,h; scanf("%d %d %d %d",&x, &y, &w, &h); int m=1001; m = min(min(x-0, w-x), min(y-0, h-y)); printf("%d",m); return 0; }
알고리즘/백준 알고리즘
2017. 1. 12. 17:53
BOJ : 1026 보물
문제 : https://www.acmicpc.net/problem/1026 github : https://github.com/JEONG-SEUNGWOOK/BOJ/blob/master/1026.cpp 문제 분류 : 정렬, 탐색 #include #include #include using namespace std; int main(){ int N; int a[51]; int b[51]; int answer = 0; scanf("%d",&N); for(int i=0;i
알고리즘/백준 알고리즘
2017. 1. 12. 17:49