# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
407208 | sad | Detecting Molecules (IOI16_molecules) | C++14 | 56 ms | 6152 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "molecules.h"
#define pb push_back
#define ll long long
#define fi first
#define se second
using namespace std;
vector<pair<int,int>>v;
vector<int>ans;
vector<int> find_subset(int l, int u, vector<int> w) {
for(int i=0;i<w.size();i++)
{
v.pb({w[i],i});
}ll sum=0;ll ze=0;
sort(v.begin(),v.end());int r=0;int n=w.size();
for(int i=0;i<n;i++)
{r=max(r,i);sum=max(sum,ze);
while(r<n&&sum+v[r].fi<l)
{
sum+=v[r].fi;
r++;
}
if(r<n&&sum+v[r].fi>=l&&sum+v[r].fi<=u)
{
for(int j=i;j<=r;j++)
{
ans.pb(v[j].se);
}return ans;
}
sum-=v[i].fi;
}
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... |