# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
102023 | 2019-03-21T18:43:27 Z | joylintp | Detecting Molecules (IOI16_molecules) | C++17 | 2 ms | 384 KB |
#include<bits/stdc++.h> #include"molecules.h" using namespace std; pair<long long, int> ms[200000] = {}; vector<int> find_subset(int l, int u, vector<int> w) { int amount = w.size(), i; for (i = 0; i < w.size(); i++) ms[i].second = i, ms[i].first = (long long)w[i]; sort(ms, ms + amount); long long now = 0; vector<int> ans; i = 0; while (now < l && i < amount) now += ms[i++].first; if (now < l) return ans; else if (now == l) { for (int j = 0; j < i; j++) ans.push_back(ms[j].second); return ans; } else { int lans = 0, rans = i - 1; now -= ms[i - 1].first; cout << "===" << now << '\n'; if (now == 0) if (ms[0].first > u) return ans; else { ans.push_back(ms[0].first); return ans; } while (rans + 1 < amount && now < l) now = now - ms[lans].first + ms[rans + 1].first, rans++, lans++; if (now < l) return cout << lans << '\n', ans; else { for (int i = lans; i < rans; i++) ans.push_back(ms[i].second); return ans; } } }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 256 KB | OK (n = 1, answer = NO) |
2 | Incorrect | 2 ms | 256 KB | Secret is incorrect! |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 384 KB | Secret is incorrect! |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 256 KB | OK (n = 1, answer = NO) |
2 | Incorrect | 2 ms | 256 KB | Secret is incorrect! |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 256 KB | OK (n = 1, answer = NO) |
2 | Incorrect | 2 ms | 256 KB | Secret is incorrect! |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 256 KB | OK (n = 1, answer = NO) |
2 | Incorrect | 2 ms | 256 KB | Secret is incorrect! |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 256 KB | OK (n = 1, answer = NO) |
2 | Incorrect | 2 ms | 256 KB | Secret is incorrect! |
3 | Halted | 0 ms | 0 KB | - |