# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1115212 | 2024-11-20T08:47:52 Z | Zflop | Detecting Molecules (IOI16_molecules) | C++14 | 1 ms | 444 KB |
#pragma once #include <bits/stdc++.h> #include <vector> using namespace std; const int NMAX = (int)1e3 * 2; int dp[NMAX],from[NMAX]; std::vector<int> find_subset(int l, int u, std::vector<int> w) { dp[0] = 1; for (int i = 0; i < u;++i) from[i] = -1; for (int i = 0; i < w.size();++i) { for (int j = u + 1; j >= 0;--j) if (dp[j] && !dp[j + w[i]]) { dp[j + w[i]] = 1; from[j + w[i]] = i; } } vector<int>v; int este = 0; for (int i = u; i >= l;--i) if (dp[i]) { este = i; break; } v.push_back(from[este]); int val = este - w[from[este]]; while (val) { v.push_back(from[val]); val = val - w[from[val]]; } return v; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 336 KB | Integer -1 violates the range [0, 0] |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 336 KB | OK (n = 12, answer = YES) |
2 | Correct | 1 ms | 444 KB | OK (n = 12, answer = YES) |
3 | Incorrect | 1 ms | 336 KB | Integer -1 violates the range [0, 11] |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 336 KB | Integer -1 violates the range [0, 0] |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 336 KB | Integer -1 violates the range [0, 0] |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 336 KB | Integer -1 violates the range [0, 0] |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 336 KB | Integer -1 violates the range [0, 0] |
2 | Halted | 0 ms | 0 KB | - |