#include <bits/stdc++.h>
using namespace std;
int ans;
long long k;
void ed(long long sum)
{
if(sum>=k)ans++;
}
int n;
long long h[49],g[49];
void bt(int x,long long sum)
{
sum+=g[x];
ed(sum);
for(int i=x+1;i<n;i++)
{
if(h[i]>=h[x])
{
bt(i,sum);
}
}
}
int main()
{
cin>>n>>k;
for(int i=0;i<n;i++)cin>>h[i]>>g[i];
for(int i=0;i<n;i++)
{
bt(i,0);
}
cout<<ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
256 KB |
Output is correct |
2 |
Correct |
2 ms |
256 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
256 KB |
Output is correct |
2 |
Correct |
2 ms |
256 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1074 ms |
376 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1057 ms |
256 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1068 ms |
256 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |