-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFerris_Wheel.cpp
58 lines (57 loc) · 961 Bytes
/
Ferris_Wheel.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#include <iostream>
#include <vector>
#include <unistd.h>
#include <unistd.h>
#include <algorithm>
#include <map>
#include <cmath>
#include <cstring>
#include <sstream>
#include <set>
#include <unordered_set>
#include <cstring>
#include <string.h>
#include <queue>
using namespace std;
#define mid(s, e) (s + (e - s) / 2)
#define ALL(x) (x).begin(), (x).end()
#define endl '\n'
#define MAXE(vec) *max_element(ALL(vec))
#define MINE(vec) *min_element(ALL(vec))
#define valid(a, b, c) (a >= b && a < c ? 1 : 0)
int dx[4] = {0, 0, 1, -1};
int dy[4] = {1, -1, 0, 0};
#define ll long long
void solve()
{
ll n, x;
cin >> n >> x;
vector<ll> weights(n);
for (ll i = 0; i < n; i++)
cin >> weights[i];
sort(ALL(weights));
ll ans = 0;
ll i = 0, j = n - 1;
while (i <= j)
{
if (weights[i] + weights[j] <= x)
{
i++;
j--;
ans++;
}
else
{
j--;
ans++;
}
}
cout << ans << endl;
}
int main(void)
{
ll t;
t = 1;
while (t--)
solve();
}