Submission #1064559

# Submission time Handle Problem Language Result Execution time Memory
1064559 2024-08-18T14:33:50 Z Rigobertus Detecting Molecules (IOI16_molecules) C++17
0 / 100
1 ms 348 KB
    #include <iostream>
    #include <algorithm>
    #include <vector>
    #include <map>
    #include <set>
    #include "molecules.h"
    using namespace std;
     
    vector<int> find_subset(int l, int u, vector<int> w) {
        int n = w.size();
        vector<pair<long long, int>> v;
        vector<int> result;
        for (int i = 0; i < n; i++) {
            v.push_back({ w[i], i + 1 });
        }
        sort(w.begin(), w.end());
        long long sum = 0;
        for (int i = 0; i < n; i++) {
            sum += w[i];
        }
        for (int i = n - 1; i >= 0; i--) {
            if (sum - v[i].first < l) {
                result.push_back(v[i].second);
            }
            else {
                sum -= v[i].first;
            }
        }
        if (sum < l || sum > u) {
            return {};
        }
        sort(result.begin(), result.end());
        return result;
    }
# Verdict Execution time Memory Grader output
1 Correct 1 ms 344 KB OK (n = 1, answer = NO)
2 Correct 1 ms 344 KB OK (n = 1, answer = NO)
3 Incorrect 0 ms 348 KB Integer 1 violates the range [0, 0]
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Contestant can not find answer, jury can
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 344 KB OK (n = 1, answer = NO)
2 Correct 1 ms 344 KB OK (n = 1, answer = NO)
3 Incorrect 0 ms 348 KB Integer 1 violates the range [0, 0]
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 344 KB OK (n = 1, answer = NO)
2 Correct 1 ms 344 KB OK (n = 1, answer = NO)
3 Incorrect 0 ms 348 KB Integer 1 violates the range [0, 0]
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 344 KB OK (n = 1, answer = NO)
2 Correct 1 ms 344 KB OK (n = 1, answer = NO)
3 Incorrect 0 ms 348 KB Integer 1 violates the range [0, 0]
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 344 KB OK (n = 1, answer = NO)
2 Correct 1 ms 344 KB OK (n = 1, answer = NO)
3 Incorrect 0 ms 348 KB Integer 1 violates the range [0, 0]
4 Halted 0 ms 0 KB -