제출 #599835

#제출 시각아이디문제언어결과실행 시간메모리
599835cheissmartDetecting Molecules (IOI16_molecules)C++14
100 / 100
45 ms4672 KiB
#include "molecules.h" #include <bits/stdc++.h> #define F first #define S second #define V vector #define PB push_back #define EB emplace_back #define MP make_pair #define SZ(v) int((v).size()) #define ALL(v) (v).begin(), (v).end() using namespace std; typedef long long ll; typedef pair<int, int> pi; typedef V<int> vi; const int INF = 1e9 + 7; vi find_subset(int l, int r, vi w) { int n = SZ(w); vi p(n); iota(ALL(p), 0); sort(ALL(p), [&] (int x, int y) { return w[x] < w[y]; }); V<ll> s(n + 1); for(int i = 1; i <= n; i++) s[i] = s[i - 1] + w[p[i - 1]]; for(int len = 1; len <= n; len++) { ll x = s[len], y = s[n] - s[n - len]; if(y < l || x > r) continue; for(int i = 1; i + len - 1 <= n; i++) { if(l <= s[i + len - 1] - s[i - 1] && s[i + len - 1] - s[i - 1] <= r) { vi ans; for(int j = i; j <= i + len - 1; j++) ans.PB(p[j - 1]); return ans; } } } return {}; }
#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...