# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
879442 |
2023-11-27T12:40:15 Z |
TAhmed33 |
Akcija (COCI21_akcija) |
C++ |
|
1872 ms |
524288 KB |
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
vector <pair <ll, ll>> subs;
int n; ll w[2001], dd[2001];
vector <int> cur;
void recurse (int pos, int sze, ll cost) {
if (pos == n) {
if (cur.empty()) return;
vector <int> s = cur;
sort(s.begin(), s.end(), [&] (int a, int b) {
return dd[a] < dd[b];
});
bool flag = 1;
for (int i = 0; i < sze; i++) {
flag &= i < dd[s[i]];
}
if (!flag) return;
subs.push_back({sze, cost});
return;
}
recurse(pos + 1, sze, cost);
cur.push_back(pos);
recurse(pos + 1, sze + 1, cost + w[pos]);
cur.pop_back();
}
int main () {
cin >> n; int k; cin >> k;
for (int i = 0; i < n; i++) cin >> w[i] >> dd[i];
recurse(0, 0, 0);
sort(subs.begin(), subs.end(), [] (pair <ll, ll> &a, pair <ll, ll> &b) {
return a.first == b.first ? a.second < b.second : a.first > b.first;
});
for (int i = 0; i < k; i++) {
cout << subs[i].first << " " << subs[i].second << '\n';
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1872 ms |
524288 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1872 ms |
524288 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1854 ms |
524288 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
91 ms |
10280 KB |
Output is correct |
2 |
Correct |
171 ms |
17848 KB |
Output is correct |
3 |
Correct |
44 ms |
5836 KB |
Output is correct |
4 |
Correct |
30 ms |
2512 KB |
Output is correct |
5 |
Correct |
171 ms |
16952 KB |
Output is correct |
6 |
Correct |
12 ms |
344 KB |
Output is correct |
7 |
Correct |
50 ms |
972 KB |
Output is correct |
8 |
Correct |
20 ms |
600 KB |
Output is correct |
9 |
Correct |
19 ms |
348 KB |
Output is correct |
10 |
Correct |
26 ms |
348 KB |
Output is correct |
11 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
12 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1748 ms |
524288 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1872 ms |
524288 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |