#include <bits/stdc++.h>
using namespace std;
int n;
long long c[50],h[50],k;
long long bt(int pos,long long last,long long sum)
{
if (pos==n)
return (sum>=k);
long long ans=0;
if (h[pos]>=last)
ans=bt(pos+1,h[pos],sum+c[pos]);
ans+=bt(pos+1,last,sum);
return ans;
}
int main()
{
cin >>n>>k;
for (int i=0;i<n;i++)
cin >>h[i]>>c[i];
cout << bt(0,0,0);
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
376 KB |
Output is correct |
2 |
Correct |
2 ms |
496 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
496 KB |
Output is correct |
2 |
Correct |
2 ms |
496 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1082 ms |
496 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1083 ms |
496 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1090 ms |
544 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |