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
- swexpertacademy
- 코테 준비
- STUDYENGLISH
- 직무면접
- nightroutine
- English
- 원서읽자
- 완전탐색
- 삼성
- englishbook
- dfs
- SQL
- D4
- 쉬운 알고리즘 문제
- 백준
- 코테
- 원서
- 코딩테스트
- 알고리즘 문제
- 원서읽기
- sw expert
- sw expert academy
- MySQL
- PyQt
- 알고리즘
- the midnight library
- 프로그래머스
- 코테 대비
- BFS
- readingbook
Archives
- Today
- Total
목록9280 (1)
시나브로
[D3] 9280. 진용이네 주차타워
차고 같은 경우, 무조건 작은 인덱스 차고부터 써야되니 자료형 vector를 이용해 역순으로 정렬해줘서 사용했다. 대기자 같은 경우, 큐 자료 구조를 이용하여 FIFO을 구현하였다. #include #include #include #include #include #include using namespace std; int car_box[101][2] = { 0 }; int car[2001][2] = { 0 }; queue stack; int price = 0; int n; int m; vector list; int fill(int index) { if (!list.empty()) { car[index][1] = list.back(); car_box[list.back()][1] = index; price ..
알고리즘/SW Expert Academy
2020. 3. 9. 20:49