본문 바로가기
📊알고리즘/BOJ

BOJ 13335 - 트럭

by meteorfish 2024. 3. 31.
728x90

13335번: 트럭 (acmicpc.net)

 

13335번: 트럭

입력 데이터는 표준입력을 사용한다. 입력은 두 줄로 이루어진다. 입력의 첫 번째 줄에는 세 개의 정수 n (1 ≤ n ≤ 1,000) , w (1 ≤ w ≤ 100) and L (10 ≤ L ≤ 1,000)이 주어지는데, n은 다리를 건너는 트

www.acmicpc.net

 

접근 방법

순서 변경이 없고, 선입선출이라는 것이기 때문에 큐를 이용하면 좋겠다고 생각했다.

 

1. 만약 다리 하중을 버틸 수 있으면, 큐에 트럭을 넣는다. 이때, 현재 다리 위에 올라간 트럭의 총 무게(현재 무게)에 해당 트럭의 무게를 더한다.

2. 그렇지 않으면, 큐에 공백을 넣는다.

3. q.front()가 트럭일 땐, 트럭이 다리를 다 건넌겄이므로 현재 무게에서 트럭 무게만큼 빼준다.

 

코드

#include<iostream>
#include<algorithm>
#include<queue>
#include<vector>
#include<cmath>
#include<cstring>

#define MAX 100002
#define INF 100002

using namespace std;

int n,w,l;
int truckWeight[1001];
queue<int> q;
int k; // 회전 횟수

int curWight = 0;
vector<int> passed;



int main() {
	cin.tie(NULL); ios_base::sync_with_stdio(false);

	cin >> n >> w >> l;
	for (int i = 0; i < n; i++) {
		cin >> truckWeight[i];
	}
	
	for (int i = 0; i < w; i++) {
		q.push(-1);
	}

	/*q.push(0);
	curWight = truckWeight[0];*/

	int cnt = 0;
	int idx = 0;
	while (!q.empty()) {

		cnt++;

		int front = q.front();
		if (front != -1) {
			//cout << "cnt: " << cnt << endl;
			curWight -= truckWeight[front];
		}
		q.pop();

		if (idx < n) {
			// 다리 하중 이하이면, 트럭 넣기
			if (curWight + truckWeight[idx] <= l) {
				q.push(idx);

				curWight += truckWeight[idx];
				idx++;
			}
			else {
				//cout << "공백 넣기" << endl;
				q.push(-1);
			}
		}
		
	}

	cout << cnt;
}

728x90

'📊알고리즘 > BOJ' 카테고리의 다른 글

BOJ 2252 - 줄 세우기  (0) 2024.04.06
BOJ 144999 - 주사위 굴리기  (0) 2024.04.01
BOJ 14891 - 톱니바퀴  (0) 2024.03.31
[시뮬레이션] BOJ 15686 - 치킨 배달 with c++  (0) 2024.03.24
BOJ 14502 - 연구소  (0) 2024.03.12