Submission #549929

#TimeUsernameProblemLanguageResultExecution timeMemory
549929Bogdan1110Detecting Molecules (IOI16_molecules)C++14
0 / 100
1 ms300 KiB
#include <bits/stdc++.h>
#define FAST {ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);}
#define ll long long
#define ull unsigned long long
#define pb push_back
#define fi first
#define se second
#define ld long double
#define pii pair<int,int>
#define pll pair<long long,long long>
#define all(a) (a).begin(), (a).end()
#define mp make_pair 
using namespace std;
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;

#define ordered_set tree<ll, null_type,less<ll>, rb_tree_tag,tree_order_statistics_node_update>
// order_of_key -> # less than k
// find_by_order -> k-th element
// pq max element

void files() {
    #ifndef ONLINE_JUDGE
        freopen("input.txt", "r", stdin);
        freopen("output.txt", "w", stdout);
    #endif
}

const double eps = 0.00000001;
const int NMAX = 200010;
const ll inf = LLONG_MAX/2;
const ll modi = 1e9+7;

vector<int> find_subset(int l, int r, vector<int>w) {
    int n = w.size();
    vector<pll>v(n);
    for (int i = 0 ; i < n ; i++ ) {
        v[i] = {w[i],i};
    }
    sort(all(v));
    int L = 0, R = 0;
    ll sum = 0;
    vector<int>ans;
    while(R<n) {
        if ( sum < l ) {
            sum += v[R].fi;
            R++;
            continue;
        }
        if ( sum > r ) {
            sum -= v[L].fi;
            L++;
            continue;
        }
        for (int i = L ; i < R ; i++ ) {
            ans.pb(v[i].se);
        }
        break;
    }
    sort(all(ans));
    return ans;
}

Compilation message (stderr)

molecules.cpp: In function 'void files()':
molecules.cpp:25:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   25 |         freopen("input.txt", "r", stdin);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
molecules.cpp:26:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   26 |         freopen("output.txt", "w", stdout);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
#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...