답안 #218542

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
218542 2020-04-02T09:15:15 Z emil_physmath Detecting Molecules (IOI16_molecules) C++17
0 / 100
5 ms 256 KB
#include "molecules.h"
#include <algorithm>
#include <iostream>
#include <bitset>
#include <vector>
using namespace std;

bitset<10001> dp[10001], take[10001];

vector<int> find_subset(int l, int u, vector<int> a)
{
    int n = a.size();
    vector<pair<int, int> > w(n);
    for (int i = 0; i < n; ++i)
        w[i] = {a[i], i};
    sort(w.begin(), w.end(), greater<pair<int, int> >());
    vector<int> res;
    for (int i = 0, sum = w[0].first; i < n; sum += w[++i].first)
    {
        res.push_back(w[i].second);
        if (sum >= l)
            break;
    }
    return res;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 256 KB sum of weights should be in [10..12] but it is 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 256 KB sum of weights should be in [302..304] but it is 306
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 256 KB sum of weights should be in [10..12] but it is 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 256 KB sum of weights should be in [10..12] but it is 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 256 KB sum of weights should be in [10..12] but it is 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 256 KB sum of weights should be in [10..12] but it is 9
2 Halted 0 ms 0 KB -