# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
431084 | davi_bart | Detecting Molecules (IOI16_molecules) | C++17 | 54 ms | 5220 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "molecules.h"
#pragma GCC optimize("O3")
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define fi first
#define se second
#define ld long double
#define pb push_back
std::vector<int> find_subset(int l, int u, std::vector<int> p) {
vector<pair<int,int> > w;
for(int i=0;i<p.size();i++)w.pb({p[i],i});
vector<int> ans;
int tot=0;
sort(w.begin(),w.end());
reverse(w.begin(),w.end());
for(int i=0;i<w.size();i++){
ans.pb(w[i].se);
tot+=w[i].fi;
if(tot>=l)break;
}
if(tot>=l && tot<=u)return ans;
int pos=0;
for(int i=w.size()-1;i>=ans.size();i--){
tot-=p[ans[pos]];
ans[pos]=w[i].se;
tot+=p[ans[pos]];
pos++;
if(pos>=ans.size())break;
if(tot<=u)break;
}
if(tot>=l && tot<=u)return ans;
ans.clear();
return ans;
/*tot=0;
sort(w.begin(),w.end());
for(int i=0;i<w.size();i++){
ans.pb(i);
tot+=w[i];
if(tot>=l)break;
}
if(tot>=l && tot<=u)return ans;
tot-=w[ans.back()];
ans.pop_back();
pos=0;
for(int i=w.size()-1;i>=ans.size();i++){
tot-=w[ans[pos]];
ans[pos]=i;
tot+=w[ans[pos]];
pos++;
if(pos>=ans.size())break;
if(tot>=l && tot<=u)break;
}
if(tot>=l && tot<=u)return ans;
ans.clear();
return ans;*/
}
컴파일 시 표준 에러 (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... |