# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
75760 | 2018-09-11T04:49:36 Z | Sherazin | Detecting Molecules (IOI16_molecules) | C++14 | 2 ms | 536 KB |
#include "molecules.h" #include <bits/stdc++.h> #define pii pair<int, int> #define x first #define y second using namespace std; vector<pii> V; vector<int> ans; vector<int> find_subset(int l, int u, vector<int> w) { for(int i = 0; i < w.size(); i++) V.emplace_back(w[i], i); sort(w.begin(), w.end()); int L = 0, R = 0; long long sum = 0; while(L < w.size()) { while(R < w.size() && sum < L) sum += (long long)w[R++]; if(l <= sum && sum <= u) { for(int i = L; i < R; i++) ans.emplace_back(i); return ans; } sum -= (long long)w[L++]; } return {}; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | OK (n = 1, answer = NO) |
2 | Correct | 2 ms | 508 KB | OK (n = 1, answer = NO) |
3 | Incorrect | 2 ms | 536 KB | Contestant can not find answer, jury can |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 536 KB | Contestant can not find answer, jury can |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | OK (n = 1, answer = NO) |
2 | Correct | 2 ms | 508 KB | OK (n = 1, answer = NO) |
3 | Incorrect | 2 ms | 536 KB | Contestant can not find answer, jury can |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | OK (n = 1, answer = NO) |
2 | Correct | 2 ms | 508 KB | OK (n = 1, answer = NO) |
3 | Incorrect | 2 ms | 536 KB | Contestant can not find answer, jury can |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | OK (n = 1, answer = NO) |
2 | Correct | 2 ms | 508 KB | OK (n = 1, answer = NO) |
3 | Incorrect | 2 ms | 536 KB | Contestant can not find answer, jury can |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | OK (n = 1, answer = NO) |
2 | Correct | 2 ms | 508 KB | OK (n = 1, answer = NO) |
3 | Incorrect | 2 ms | 536 KB | Contestant can not find answer, jury can |
4 | Halted | 0 ms | 0 KB | - |