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 | 31 |
Tags
- 코테
- swexpertacademy
- STUDYENGLISH
- 원서읽자
- MySQL
- the midnight library
- D4
- SQL
- 삼성
- 백준
- 알고리즘 문제
- 프로그래머스
- sw expert academy
- sw expert
- 쉬운 알고리즘 문제
- nightroutine
- PyQt
- BFS
- 코테 대비
- 코딩테스트
- 알고리즘
- English
- 직무면접
- 원서
- 완전탐색
- 코테 준비
- readingbook
- dfs
- englishbook
- 원서읽기
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