Submission #720671

#TimeUsernameProblemLanguageResultExecution timeMemory
720671JuanCollecting Stamps 3 (JOI20_ho_t3)C++17
5 / 100
7 ms4564 KiB
#include<bits/stdc++.h> using namespace std; #define int long long const int maxn = 2e2 + 5; int ans = 0, L, mx=0; bool mark[maxn][maxn][maxn][2]; int T[maxn], X[maxn]; int32_t main(){ int n; cin >> n >> L; for(int i = 1; i <= n; i++) cin >> X[i]; for(int i = 1; i <= n; i++) cin >> T[i], mx = max(mx, T[i]); priority_queue<tuple<int, int, int, int, int>> pq; pq.push({0, 0, n+1, 0, 0}); mark[0][n+1][0][0] = true; while(pq.size()){ auto[t, l, r, s, d] = pq.top(); pq.pop(); ans = max(ans, s); if(l==r-1 || t>mx) continue; if(d==0){ int t1 = X[l+1]-X[l]; int add1 = (t1+t <= T[l+1]); bool &m1 = mark[l+1][r][s+add1][d]; int t2 = X[l]+(L-X[r-1]); int add2 = (t2+t <= T[r-1]); bool &m2 = mark[l][r-1][s+add2][1-d]; if(!m1) m1=true, pq.push({t+t1, l+1, r, s+add1, d}); if(!m2) m2=true, pq.push({t+t2, l, r-1, s+add2, 1-d}); } else{ int t1 = X[r]-X[r-1]; int add1 = (t1+t <= T[r-1]); bool &m1 = mark[l][r-1][s+add1][d]; int t2 = X[l+1]+(L-X[r]); int add2 = (t2+t <= T[l+1]); bool &m2 = mark[l+1][r][s+add2][1-d]; if(!m1) m1=true, pq.push({t+t1, l, r-1, s+add1, d}); if(!m2) m2=true, pq.push({t+t2, l+1, r, s+add2, 1-d}); } } cout << ans << '\n'; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...