Codeforces Round #751 (Div. 2) D. Frog Traveler(DP)
2021/11/2 6:10:17
本文主要是介绍Codeforces Round #751 (Div. 2) D. Frog Traveler(DP),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
题目链接
题意:
你位于地下\(n\)米的井里,位于位置\(i\)时可以向上跳\(0\)~\(a_i\)米,当你跳到位置\(k\)时,你会下降\(b_k\)米,请问最少跳多少次能到达地面。
思路:
逆向枚举,从\(n\)开始跳,每个位置维护向上跳到当前位置的最少次数。对于位置\(j\)可以跳到位置\(i+b_i\)(先跳到位置\(i\)),应满足\(a_j-(j-i)>=0\)。用队列或双端队列保存已经跳到的位置信息\((a_i-i)\)和次数,每次取队首元素,若满足上述条件且当前位置没有更新过,则更新当前位置信息(第一次更新的向上跳的次数一定为最少的),并放入队尾,且当前队首不要丢出,否则直接丢出,因为\(a_j-j+i<0\),则\(a_j-j+i-1\)必小于\(0\)。
code:
#include <iostream> #include <cstdio> #include <string> #include <cstring> #include <algorithm> #include <queue> #include <vector> #include <cmath> #include <map> #include <set> #define fi first #define se second #define pb push_back #define debug(x) cerr << #x << ":" << x << endl; #define all(x) x.begin(), x.end() #define lowbit(x) x & -x #define fin(x) freopen(x, "r", stdin) #define fout(x) freopen(x, "w", stdout) #define ull unsigned long long #define ll long long const double eps = 1e-5; const int inf = 0x3f3f3f3f; const ll INF = 0x3f3f3f3f3f3f3f3f; const double pi = acos(-1.0); const int mod = 1e9 + 7; const int maxn = 3e5 + 10; using namespace std; int n, a[maxn], b[maxn]; int dp[maxn], vis[maxn]; int pre[maxn], ppre[maxn], p[maxn]; vector<int> ans; int main(){ scanf("%d", &n); for(int i = 1; i <= n; i ++)scanf("%d", &a[i]); for(int i = 1; i <= n; i ++)scanf("%d", &b[i]); deque<pair<int, int>> q; q.push_back(make_pair(a[n] - n, n)); memset(dp, inf, sizeof dp), dp[n] = 0; for(int i = n - 1; i >= 1; i --){ int a1 = i + b[i]; if(dp[a1] == inf){ while(q.size()){ auto p = q.front(); q.pop_front(); if(p.first + i >= 0){ dp[a1] = dp[p.se] + 1; q.push_front(p), q.push_back(make_pair(a[a1] - a1, a1)); pre[a1] = i, ppre[a1] = p.se; break; } } } } for(int i = 1; i <= n; i ++) { if(i - a[i] <= 0 && a[i] && dp[0] > dp[i] + 1) { dp[0] = dp[i] + 1; pre[0] = i; } } if(dp[0] == inf)puts("-1"); else { vector<int> ans; ans.pb(0); int ret = pre[0]; while(ret != n){ ans.pb(pre[ret]); ret = ppre[ret]; } reverse(all(ans)); printf("%d\n", dp[0]); for(int k : ans)printf("%d ", k); } return 0; }
这篇关于Codeforces Round #751 (Div. 2) D. Frog Traveler(DP)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23增量更新怎么做?-icode9专业技术文章分享
- 2024-11-23压缩包加密方案有哪些?-icode9专业技术文章分享
- 2024-11-23用shell怎么写一个开机时自动同步远程仓库的代码?-icode9专业技术文章分享
- 2024-11-23webman可以同步自己的仓库吗?-icode9专业技术文章分享
- 2024-11-23在 Webman 中怎么判断是否有某命令进程正在运行?-icode9专业技术文章分享
- 2024-11-23如何重置new Swiper?-icode9专业技术文章分享
- 2024-11-23oss直传有什么好处?-icode9专业技术文章分享
- 2024-11-23如何将oss直传封装成一个组件在其他页面调用时都可以使用?-icode9专业技术文章分享
- 2024-11-23怎么使用laravel 11在代码里获取路由列表?-icode9专业技术文章分享
- 2024-11-22怎么实现ansible playbook 备份代码中命名包含时间戳功能?-icode9专业技术文章分享