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
- 백준
- 그리디 알고리즘
- 다익스트라
- 누적 합
- 수학
- 백트래킹
- c++
- 다이나믹 프로그래밍
- 문자열
- 그래프
- 트리
- ue5
- 정렬
- Team Fortress 2
- VR
- 스택
- BFS
- 시뮬레이션
- 유니티
- 우선순위 큐
- 유니온 파인드
- XR Interaction Toolkit
- DFS
- 투 포인터
- 구현
- 알고리즘
- 재귀
- Unreal Engine 5
- 자료구조
- 브루트포스
Archives
- Today
- Total
1일1알
백준 13335번 트럭 C++ 본문
아직 다리 위에 올라가지 않은 트럭을 저장하는 큐와 다리 위에 올라간 트럭을 저장하는 큐 이렇게 큐를 두 개 만들어서
while문 안에서 시간을 1씩 증가시키면서 1초마다 할 수 있는 가장 효율적인 행동을 찾아가면서 문제를 해결하였다.
다리 위에 올라간 트럭을 저장하는 큐는 pair<int, int> 형식으로, 트럭의 무게와 다리 위에 올라간 시간을 저장하였다.
그리고 트럭이 모두 도착하면 while문을 종료하였다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <unordered_map>
#include <unordered_set>
using namespace std;
typedef long long ll;
queue<int> ready;
int n, w, l;
void solve() {
queue<pair<int, int>> bridgeTruck;
int time = 0;
int currWeight = 0;
int cnt = 0;
int arrived = 0;
while (arrived < n) {
time++;
if (!bridgeTruck.empty()) {
auto a = bridgeTruck.front();
if (a.second + w == time) {
bridgeTruck.pop();
currWeight -= a.first;
arrived++;
cnt--;
}
}
if (!ready.empty()) {
int weight = ready.front();
if (currWeight + weight <= l && w > cnt) {
ready.pop();
currWeight += weight;
bridgeTruck.push({ weight,time });
cnt++;
}
}
}
cout << time;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> w >> l;
int input;
for (int i = 0; i < n; i++) {
cin >> input;
ready.push(input);
}
solve();
};
'알고리즘' 카테고리의 다른 글
백준 16948번 데스 나이트 C++ (0) | 2021.11.19 |
---|---|
백준 6118번 숨바꼭질 C++ (0) | 2021.11.18 |
백준 14225번 부분수열의 합 C++ (1) | 2021.11.16 |
백준 17609번 회문 C++ (1) | 2021.11.15 |
백준 1254번 팰린드롬 만들기 C++ (0) | 2021.11.14 |