# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
241165 | 2020-06-23T07:34:13 Z | crossing0ver | Detecting Molecules (IOI16_molecules) | C++17 | 5 ms | 512 KB |
#include<bits/stdc++.h> #include "molecules.h" using namespace std; vector<int> answer(vector<int> &ans,deque<int> v) { for (int i = 0; i < v.size(); i++) { ans.push_back(v[i]); } return ans; } vector<int> find_subset(int l, int u, vector<int> w) { int n = w.size(); sort(w.begin(),w.end()); long long tot = 0; deque<int> v; vector<int> ans; if (w[0] > u) return ans; for (int i = 0; i < n; i++) { if (w[i] + tot < l) { tot+=w[i]; v.push_back(i); } } int in = v.back(); for (int i = in + 1; i < n; i++) { if (w[i] + tot >= l && w[i] + tot <= u) { v.push_back(i); return answer(ans,v); } if (w[i] + tot > u) { tot -= w[v.front()]; v.pop_front(); tot += w[i]; v.push_back(i); } else { tot += w[i]; v.push_back(i); } } return ans; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 256 KB | OK (n = 1, answer = NO) |
2 | Correct | 5 ms | 384 KB | OK (n = 1, answer = NO) |
3 | Runtime error | 5 ms | 512 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 384 KB | Contestant can not find answer, jury can |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 256 KB | OK (n = 1, answer = NO) |
2 | Correct | 5 ms | 384 KB | OK (n = 1, answer = NO) |
3 | Runtime error | 5 ms | 512 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 256 KB | OK (n = 1, answer = NO) |
2 | Correct | 5 ms | 384 KB | OK (n = 1, answer = NO) |
3 | Runtime error | 5 ms | 512 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 256 KB | OK (n = 1, answer = NO) |
2 | Correct | 5 ms | 384 KB | OK (n = 1, answer = NO) |
3 | Runtime error | 5 ms | 512 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 256 KB | OK (n = 1, answer = NO) |
2 | Correct | 5 ms | 384 KB | OK (n = 1, answer = NO) |
3 | Runtime error | 5 ms | 512 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
4 | Halted | 0 ms | 0 KB | - |