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
- objtofbx
- command not found
- OS
- 1759번
- 언리얼 커스텀 플러그인
- FBX
- 1253번
- 백준
- 데이터베이스 배움터
- 비재귀셰그먼트
- 1967번
- 셰그먼트트리
- 언리얼 플러그인
- hackerank
- 트랜잭션 관리
- 백준 1253번
- UnrealMP
- 오손데이터읽기
- SQL
- 의미와 무의미의 경계에서
- 5639
- 민겸수
- UActor
- Linux
- 2단계로킹
- Unreal
- 실습
- oracle
- C++
- Security
Archives
- Today
- Total
fatalite
C++ 다리를 지나는 트럭 [고득점 Kit 스택 / 큐] 본문
Problem
난이도 : 프로그래머스 2단계
분류 : 큐, Deque
코멘트: 간단하게 짜는 버릇을 들이자.
Solution
#include <string>
#include <vector>
#include <deque>
#include <iostream>
using namespace std;
int solution(int bridge_length, int weight, vector<int> truck_weights) {
int answer = 1;
deque<pair<int,int>> OnBridge;
deque<int> WaitingTruck;
for(int a : truck_weights){
WaitingTruck.push_back(a);
}
//one loop = 1s;
int CurrentWeight = 0;
while(!WaitingTruck.empty() || !OnBridge.empty()){
answer++;
int tmp = WaitingTruck.front();
if(CurrentWeight + tmp <= weight && !WaitingTruck.empty()){
WaitingTruck.pop_front();
CurrentWeight += tmp;
OnBridge.push_back({tmp,1});
}
pair<int,int> p = OnBridge.front();
if(p.second >= bridge_length){
CurrentWeight -= p.first;
OnBridge.pop_front();
}
for(int i =0; i < OnBridge.size();i++){
OnBridge[i].second++;
}
}
return answer;
}
'코딩 인터뷰 > 프로그래머스' 카테고리의 다른 글
등굣길 - 프로그래머스 (0) | 2023.10.15 |
---|---|
C++ 주식 가격 [고득점 Kit 스택 / 큐] (0) | 2023.05.13 |
C++ 프로세스 [고득점 Kit 스택 / 큐] (0) | 2023.05.13 |
C++ 같은 숫자는 싫어 [스택] (0) | 2023.05.13 |
C++ / 폰켓몬 / 해시 (0) | 2023.05.11 |