이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define fi first
#define se second
#define pb push_back
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const int MAXN = 1e5+10;
const ll INF = 0x3f3f3f3f3f3f3f3f;
int n, ans;
vector<ll> arr, tempo;
map<pair<int, pii>, int> dp;
int calc(int i, int at, ll curr, int nxd, int nxu){
if(i==n) return 0;
if(dp.find({i, {at, curr}})!=dp.end()) return dp[{i, {at, curr}}];
int ret=0;
if(tempo[nxd]>=curr+abs(arr[at]-arr[nxd])) ret=1+calc(i+1, nxd, curr+abs(arr[at]-arr[nxd]), nxd-1, nxu);
else ret=calc(i+1, nxd, curr+abs(arr[at]-arr[nxd]), nxd-1, nxu);
if(tempo[nxu]>=curr+abs(arr[at]-arr[nxu])) ret=max(ret, 1+calc(i+1, nxu, curr+abs(arr[at]-arr[nxu]), nxd, nxu+1));
else ret=max(ret, calc(i+1, nxu, curr+abs(arr[at]-arr[nxu]), nxd, nxu+1));
return dp[{i, {at, curr}}]=ret;
}
int main(){
ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
// freopen("shuffle.in","r",stdin);
// freopen("shuffle.out","w",stdout);
ll l; cin >> n >> l;
for(int i=0;i<n;i++){
ll x; cin >> x;
arr.pb(x);
}
arr.pb(l);
for(int i=0;i<n;i++) arr.pb(arr[i]+l);
tempo.resize(2*n+1);
for(int i=0;i<n;i++) cin >> tempo[i];
for(int i=0;i<n;i++) tempo[i+n+1]=tempo[i];
tempo[n]=-1;
cout << calc(0, n, 0ll, n-1, n+1) << "\n";
return 0;
}
# | 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... |