Submission #536612

#TimeUsernameProblemLanguageResultExecution timeMemory
536612DJ035Detecting Molecules (IOI16_molecules)C++17
100 / 100
46 ms5132 KiB
#include "molecules.h"
#pragma GCC optimize("O3")
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,avx,avx2")
#include <bits/stdc++.h>
#define MEM 222222
#define sanic ios_base::sync_with_stdio(0)
#define x first
#define y second
#define pf push_front
#define pb push_back
#define all(v) v.begin(), v.end()
#define sz size()
using namespace std;
typedef long long ll;
typedef pair<ll, ll> pi;
const ll INF = 1e17+7;
const ll MOD = 998244353;
ll gcd(ll a, ll b){
    if(a%b) return gcd(b, a%b);
    return b;
}
ll t,n,m;
pi a[MEM];
std::vector<int> find_subset(int l, int u, std::vector<int> w) {
    vector<int> ret;
    n = w.sz;
    for(int i=0; i<n; i++){
        a[i].x = w[i];
        a[i].y = i;
    }
    sort(a,a+n);
    ll o=0,p=0;
    ll k;
    for(k=0; k<n; k++){
        p += a[k].x;
        o += a[n-k-1].x;
        if(p<=u && l<=o) break;
    }
    if(k==n) return ret;
    ll q;
    for(q=0; p<l; q++){
        p -= a[q].x;
        p += a[q+k+1].x;
    }
    for(ll i=0; i<=k; i++) ret.pb(a[i+q].y);
    return ret;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...