Submission #952548

#TimeUsernameProblemLanguageResultExecution timeMemory
952548lbm364dlDetecting Molecules (IOI16_molecules)C++14
0 / 100
1 ms348 KiB
#include "molecules.h" //#include <bits/stdc++.h> #include <iostream> #include <cassert> #include <vector> #include <set> #include <map> #include <algorithm> #include <functional> #include <queue> //#include <ext/pb_ds/assoc_container.hpp> //using namespace __gnu_pbds; using namespace std; #ifdef LOCAL #define show(x) cerr << #x" = " << (x) << "\n" #else #define show(x) 0 #endif #define pb push_back #define pp pop_back #define mp make_pair #define fst first #define snd second #define FOR(var, from, to) for(int var = from; var < int(to); ++var) #define all(x) x.begin(), x.end() #define rev(x) x.rbegin(), x.rend() #define sz(x) int(x.size()) #define vec(x) vector<x> #define INF 2000000000 typedef long long ll; typedef pair<int,int> pii; typedef pair<ll,ll> pll; //typedef tree<int,null_type,less<int>,rb_tree_tag,tree_order_statistics_node_update> ordered_set; // use unique second element of pair to work as multiset //typedef tree<pii,null_type,less<pii>,rb_tree_tag,tree_order_statistics_node_update> ordered_multiset; const ll mod = 1000000007, mod2 = 998244353; template<typename T, typename U> ostream &operator<<(ostream &os, pair<T,U> p){os << "(" << p.fst << "," << p.snd << ")"; return os;} template<typename T, typename U> istream &operator>>(istream &is, pair<T,U> &p){is >> p.fst >> p.snd; return is;} template<typename T> istream &operator>>(istream &is, vector<T> &v){FOR(i, 0, v.size()) is >> v[i]; return is;} template<typename T> ostream &operator<<(ostream &os, vector<T> v){for(T x : v) os << x << " "; return os;} template<typename T> ostream &operator<<(ostream &os, set<T> s){for(T x : s) os << x << " "; return os;} template<typename T> ostream &operator<<(ostream &os, multiset<T> s){for(T x : s) os << x << " "; return os;} template<typename T, typename U> ostream &operator<<(ostream &os, map<T,U> m){for(auto x : m) os << x << " "; return os;} //ostream &operator<<(ostream &os, ordered_set s){for(int x : s) os << x << " "; return os;} //ostream &operator<<(ostream &os, ordered_multiset s){for(pii x : s) os << x.fst << " "; return os;} ll mod_pow(ll a, ll b, ll m){ ll sol = 1; while(b){ if(b&1){ sol = (sol*a)%m; b--; }else{ a = (a*a)%m; b/=2; } } return sol;} ll rem(ll a, ll b){ ll res = a%b; return res < 0 ? res+b : res; } std::vector<int> find_subset(int l, int u, std::vector<int> w) { sort(all(w)); int n = sz(w); ll s = 0; int i = 0; for(; i < n; ++i){ if(s+w[i] < l){ s += w[i]; }else{ break; } } if(s+w[i] <= u){ vec(int) ans; FOR(j, 0, i+1) ans.pb(j); return ans; } set<int> ans; FOR(j, 0, i) ans.insert(j); int I = 0, J = n-1; while(I < i && J >= i){ ll x = s + w[J] - w[I]; assert(x <= u); ans.erase(I); ans.insert(J); if(x >= l){ vec(int) anss(all(ans)); return anss; } I++; J--; } return std::vector<int>(0); }
#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...