# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
379874 | Pichon5 | Detecting Molecules (IOI16_molecules) | C++17 | 64 ms | 6116 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "molecules.h"
#include<bits/stdc++.h>
#define lcm(a,b) (a/__gcd(a,b))*b
#define fast ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define ll long long int
#define vi vector<int>
#define vll vector<ll>
#define pb push_back
#define F first
#define S second
#define mp make_pair
using namespace std;
vector<int> find_subset(int l,int r,vi w) {
fast
vector<pair<ll,ll> >v;
for(int i=0;i<w.size();i++){
v.pb({w[i],i});
}
sort(v.begin(),v.end());
int pref[w.size()];pref[0]=v[0].F;
for(int i=1;i<w.size();i++){
pref[i]=pref[i-1]+v[i].F;
}
vi res;
for(int i=0;i<w.size();i++){
ll L=0,R=i;
while(L<=R){
ll mid=(L+R)/2;
ll sum=pref[i];
if(mid>0)sum-=pref[mid-1];
if(sum>=l && sum<=r){
for(int l=mid;l<=i;l++){
res.pb(v[l].S);
}
return res;
}
if(sum<l){
R=mid-1;
}else{
L=mid+1;
}
}
}
return res;
}
컴파일 시 표준 에러 (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... |