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
- 완전탐색
- SDS 알고특강
- INNER JOIN
- 삼성
- 프로그래머스
- SQL
- 코딩테스트
- JOIN
- 세그먼트트리
- 후기
- backjoon
- 분할정복
- BOJ
- SWEA
- DP
- maximum flow
- bixby studio
- 백준
- 메모이제이션
- Network Flow
- SWTest
- 알고리즘
- 빅스비
- Baekjoon
- 네트워크 플로우
- ICPC
- 최대유량
- 빅스비 스튜디오
- 이분탐색
- 최대 유량
Archives
- Today
- Total
목록여행 짐 싸기 (1)
답은 알고리즘 뿐이야!
[Algospot 저장용] PACKING
문제 출처 : https://algospot.com/judge/problem/read/PACKING 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 #include struct product { char name[21]; int w; int imp; }; struct queue { char* data[101]; int front, rear; void init() { front = rear = 0; } void push(cha..
알고리즘/기타
2019. 9. 5. 11:33