-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathccc13s2.cpp
38 lines (37 loc) · 856 Bytes
/
ccc13s2.cpp
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
36
37
38
#include <bits/stdc++.h>
using namespace std;
int w, t;
queue<int> carts, bridge;
int currweight = 0;
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> w >> t;
for (int i = 0; i < t; i++){
int x;
cin >> x;
carts.push(x);
}
int ans = 0;
int curr;
while (!carts.empty()){
if (bridge.size() < 4){
curr = carts.front();
carts.pop();
if (currweight + curr > w){
//ans += bridge.size();
break;
} else {
bridge.push(curr);
currweight += curr;
}
} else {
curr = bridge.front();
bridge.pop();
currweight -= curr;
ans++;
}
}
if (!bridge.empty()) ans += bridge.size();
cout << ans << "\n";
}