#include <iostream>
#include <vector>
using namespace std;
typedef long long ll;
vector<ll> a, vis;
ll n;
ll f(ll x) {
ll cnt = 0;
for (ll i = n - 1; i >= 0; i--) {
if (x >= a[i] and vis[i] == 0) cnt++;
while (x >= a[i]) x -= a[i];
}
return cnt;
}
int main() {
ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
ll k; cin >> n >> k;
a.resize(n), vis.resize(n);
for (ll i = 0; i < n; i++) cin >> a[i] >> vis[i];
ll cnt = 0, ans = 0;
for (ll l = k - 1; l >= 1; l--) {
//cout << l << ' ';
ll x = f(l);
if (x > cnt) cnt = x, ans = l;
}
cout << cnt << '\n' << k - ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1050 ms |
348 KB |
Time limit exceeded |
2 |
Incorrect |
4 ms |
348 KB |
Output isn't correct |
3 |
Execution timed out |
1096 ms |
348 KB |
Time limit exceeded |
4 |
Execution timed out |
1022 ms |
348 KB |
Time limit exceeded |
5 |
Execution timed out |
1068 ms |
348 KB |
Time limit exceeded |
6 |
Execution timed out |
1060 ms |
348 KB |
Time limit exceeded |
7 |
Execution timed out |
1064 ms |
8284 KB |
Time limit exceeded |
8 |
Execution timed out |
1039 ms |
8284 KB |
Time limit exceeded |
9 |
Execution timed out |
1065 ms |
8284 KB |
Time limit exceeded |
10 |
Execution timed out |
1067 ms |
8028 KB |
Time limit exceeded |