# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
139428 | 2019-07-31T16:38:45 Z | quotitquot | Detecting Molecules (IOI16_molecules) | C++14 | 2 ms | 504 KB |
#include "molecules.h" #include <bits/stdc++.h> #define ll long long #define pb push_back #define fr first #define se second using namespace std; std::vector<int> find_subset(int l, int u, std::vector<int> w) { vector<int>res; ll now = 0, p = 0; vector<pair<ll,ll>>V; for( int i = 0; i < w.size(); i ++ ) V.pb( { w[i], i } ); sort( V.begin(), V.end() ); if( V[0].fr <= u ) { for( int i = 0; i < V.size(); i ++ ) { now += V[i].fr; while( now > u ) now -= V[p ++].fr; if( now >= l ) { for( int j = p; j <= i; j ++ ) res.pb( V[j].se + 1 ); sort( res.begin(), res.end() ); return res; } } } res.pb( 0 ); return res; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 504 KB | sum of weights should be in [10..12] but it is 9 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 256 KB | OK (n = 12, answer = YES) |
2 | Correct | 2 ms | 376 KB | OK (n = 12, answer = YES) |
3 | Incorrect | 2 ms | 256 KB | sum of weights should be in [307..317] but it is 50 |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 504 KB | sum of weights should be in [10..12] but it is 9 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 504 KB | sum of weights should be in [10..12] but it is 9 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 504 KB | sum of weights should be in [10..12] but it is 9 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 504 KB | sum of weights should be in [10..12] but it is 9 |
2 | Halted | 0 ms | 0 KB | - |