1일1알

백준 13335번 트럭 C++ 본문

알고리즘

백준 13335번 트럭 C++

영춘권의달인 2021. 11. 17. 15:05

출처 : https://www.acmicpc.net/problem/13335

아직 다리 위에 올라가지 않은 트럭을 저장하는 큐와 다리 위에 올라간 트럭을 저장하는 큐 이렇게 큐를 두 개 만들어서

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