# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
571068 | web | Detecting Molecules (IOI16_molecules) | C++17 | 1 ms | 296 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include "molecules.h"
#include <algorithm>
using namespace std;
vector<vector<int>> dp;
void knapsack(vector<int>& weights, int u)
{
for(int i = 0; i<weights.size(); ++i)
{
for(int weight = 0; weight <= u; ++weight)
{
if(weight < weights[i])
{
dp[i+1][weight] = dp[i][weight];
}
else
{
if(dp[i][weight] >= dp[i][weight - weights[i]]+ weights[i])
{
dp[i+1][weight] = dp[i][weight];
}
else
{
dp[i+1][weight] = dp[i][weight-weights[i]] + weights[i];
}
}
}
}
}
std::vector<int> find_subset(int l, int u, std::vector<int> w)
{
vector<pair<int,int>> wP(w.size());
for(int i = 0; i<w.size(); ++i)
{
wP[i] = {w[i], i};
}
sort(wP.begin(), wP.end());
//construct prefix
auto itStart = wP.begin();
auto itPrefEnd = wP.begin();
auto itSuffixStart = wP.end();
int sum = 0;
while(sum <= u && itPrefEnd != wP.end())
{
sum += (*itPrefEnd).first;
itPrefEnd++;
}
if(sum > u)
{
itPrefEnd--;
sum-= (*itPrefEnd).first;
}
//for(auto n:w)
// cout<<n<<" ";
//cout<<endl;
//cout<<"sum: "<<sum<<endl;
// cout<<"pos itstart: "<<itStart-wP.begin()<<endl;
//cout<<"pos itPrefEnd: "<<itPrefEnd-wP.begin()<<endl;
while(sum < l && itPrefEnd != itSuffixStart)
{
sum -= (*itStart).first;
itStart++;
itSuffixStart--;
sum += (*itSuffixStart).first;
// cout<<"new sum " << sum<<endl;
}
if(sum >= l && sum <= u)
{
vector<int> retVal;
while(itStart != itPrefEnd)
{retVal.push_back((*itStart).second+1); itStart++;}
while(itSuffixStart != wP.end())
{
retVal.push_back((*itSuffixStart).second +1);
itSuffixStart++;
}
return retVal;
}
else
return vector<int>(0);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |