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
- Jenknis
- 프로그래머스
- 두 동전
- 단축키
- insert
- 백준
- ubuntu
- IntelliJ
- git
- goland
- 제어반전
- 큐빙
- mysql
- vscode
- 데이터전달
- activity
- broadcastreceiver
- github
- 데이터
- 17837
- Java
- Android
- spring
- 안드로이드
- Algorithm
- intent
- data
- 알고리즘
- 16197
- service
Archives
- Today
- Total
해보자
프로그래머스_LV2_다리를 지나는 트럭 본문
https://programmers.co.kr/learn/courses/30/lessons/42583
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 | #include <iostream> #include <string> #include <vector> #include <deque> using namespace std; int solution(int bridge_length, int weight, vector<int> truck_weights) { int answer = 1; int cur_weight = 0; deque<pair<int, int>> truck_on_bridge; int i = 0; while (!truck_on_bridge.empty() || i < truck_weights.size()) { if (i < truck_weights.size()) { if (cur_weight + truck_weights[i] <= weight) { truck_on_bridge.push_back(make_pair(truck_weights[i], 0)); cur_weight += truck_weights[i]; i++; } } answer++; int pop_count = 0; for (int j = 0; j < truck_on_bridge.size(); j++) { truck_on_bridge[j].second++; if (truck_on_bridge[j].second == bridge_length) { cur_weight = cur_weight - truck_on_bridge[j].first; pop_count++; } } while(pop_count-- > 0) truck_on_bridge.pop_front(); } return answer; } | cs |
'C++ > Solve & Think' 카테고리의 다른 글
백준_15686번_치킨 배달 (0) | 2020.10.08 |
---|---|
백준 14503번 로봇 청소기 (0) | 2020.04.19 |
프로그래머스_LV2_기능개발 (0) | 2020.02.21 |
백준_7576번_토마토 (0) | 2020.02.20 |
프로그래머스_LV2_프린터 (0) | 2020.02.19 |