#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int n, h[50];
ll k, g[50], ans;
int main() {
cin >> n >> k;
for (int i = 0; i < n; i++)
cin >> h[i] >> g[i];
for (int i = 1; i < (1 << n); i++) {
bool gd = 1;
int lst = -1;
ll sum = 0;
for (int j = 0; j < n; j++)
if (i & (1 << j)) {
if (lst != -1 && h[lst] > h[j])
gd = 0;
sum += g[j];
lst = j;
}
ans += gd * (sum >= k);
}
cout << ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
256 KB |
Output is correct |
2 |
Correct |
5 ms |
256 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
80 ms |
256 KB |
Output is correct |
2 |
Correct |
79 ms |
256 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
384 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
4 ms |
384 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
256 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |