# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
465191 | dattranxxx | Detecting Molecules (IOI16_molecules) | C++11 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/*
* Author : shora
*/
#include <bits/stdc++.h>
#define print(_v) for (auto &_ : _v) {cerr << _ << ' ';} cerr << endl;
using namespace std;
using ll = long long;
const int oo = 1e9;
const int N = 2e5;
int a[N];
map<int, ll> dp[N];
map<int, bool> t[N];
int n;
ll call(int i, int l) {
if (i == -1)
return l <= 0 ? 0 : oo;
if (dp[i].count(l))
return dp[i][l];
ll x = call(i-1, l-a[i]) + a[i], y = call(i-1, l);
if (x < y) {
t[i][l] = 1;
return dp[i][l] = x;
} else {
t[i][l] = 0;
return dp[i][l] = y;
}
}
int main() {
cin.tie(0)->sync_with_stdio(0); cout.tie(0);
int l, u;
cin >> n >> l >> u;
for (int i = 0; i < n; ++i)
cin >> a[i];
call(n-1, l);
if (dp[n-1][l] <= u) {
n = n-1;
while (n) {
if (t[n][l]) {
cout << n + 1 << ' ';
l -= a[n];
}
n--;
}
}
return 0;
}