| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 443957 | BT21tata | Detecting Molecules (IOI16_molecules) | C++17 | 57 ms | 5176 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "molecules.h"
#include<bits/stdc++.h>
#define F first
#define S second
#define pb push_back
using namespace std;
vector<pair<int,int> >a;
vector<int>ans;
bool x;
vector<int> find_subset(int L, int R, vector<int> w)
{
for(int i=0; i<(int)w.size(); i++)
a.pb({w[i], i});
sort(a.begin(), a.end());
int l=0, r=0, n;
long long sum=0;
while(r<(int)w.size())
{
sum+=a[r].F;
if(L<=sum and sum<=R)
{
x=1;
break;
}
while(R<sum) sum-=a[l++].F;
if(L<=sum and sum<=R)
{
x=1;
break;
}
r++;
}
if(x)
for(int i=l; i<=r; i++) ans.pb(a[i].S);
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... | ||||
