이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
map<int, int> mp;
set<int> x;
multiset<int> y;
int l;
vector<vector<int>> dp;
int recurse(int cur, int t, int ll, int rr) {
if (x.empty() || *--y.end() < t) return 0;
if (dp[ll][rr] != -1) return dp[ll][rr];
auto it = x.upper_bound(cur);
bool k = 0;
if (it == x.begin()) k = 1, it = --x.end();
else --it;
int p = *it;
x.erase(p);
y.erase(y.find(mp[p]));
int cost = (k ? cur + l - p : cur - p);
int g = (t + cost <= mp[p]) + recurse(p, t + cost, ll + 1, rr);
x.insert(p);
y.insert(mp[p]);
it = x.upper_bound(cur);
k = 0;
if (it == x.end()) k = 1, it = x.begin();
p = *it;
cost = (k ? l - cur + p : p - cur);
x.erase(p);
y.erase(y.find(mp[p]));
g = max(g, (t + cost <= mp[p]) + recurse(p, t + cost, ll, rr + 1));
x.insert(p);
y.insert(mp[p]);
return dp[ll][rr] = g;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
int n;
cin >> n >> l;
for (int i = 0; i < n; i++) {
int k;
cin >> k;
x.insert(k);
}
dp = vector<vector<int>> (n + 1, vector<int> (n + 1, -1));
for (auto k : x) cin >> mp[k], y.insert(mp[k]);
cout << recurse(0, 0, 0, 0) << '\n';
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |