# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
875708 | nasir_bashirov | Detecting Molecules (IOI16_molecules) | C++11 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "molecules.h"
#include <bits/stdc++.h>
using namespace std;
#define db long double
#define ll long long
#define pii pair<int, int>
#define pll pair<ll, ll>
#define vi vector<int>
#define vl vector<ll>
#define vii vector<pii>
#define vll vector<pll>
#define endl '\n'
#define all(x) x.begin(), x.end()
#define fastio\
ios_base::sync_with_stdio(0);\
cin.tie(0);\
cout.tie(0)\
vi find_subset(int x, int y, int w) {
vl org = w;
sort(all(w));
ll s = 0, l = 0;
for(int i = 0; i < w.size(); i++){
s += w[i];
while(l < i and s > y){
s -= w[l];
l++;
}
if(s >= x and s <= y){
vl res;
map<ll, ll> cnt;
for(int j = l; j <= i; j++) cnt[w[j]]++;
for(int j = 0; j < w.size(); j++){
if(cnt[org[j]]) res.push_back(j), cnt[org[j]]--;
}
return res;
}
}
vl res;
return res;
}