洛谷P1588 丢失的牛

一、算法分析

典型的bfs问题,结果自己做的时候有些糊,犯了很多低级错误(在代码中有注释),另外代码虽长,但是写到后面那些行基本就是直接复制前面行的代码。。。

二、代码及注释

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<vector>
#include<cmath>
#include<queue>
#define ll long long
using namespace std;
const int maxn=100005;
queue<int> q;
int x,y;
int vis[maxn]; 
int dis[maxn];
int main(){
	
	freopen("in.txt","r",stdin);
	freopen("out.txt","w",stdout);
	
	int t;
	cin>>t;
	while(t--){
		cin>>x>>y;
		while(!q.empty()) q.pop();          //将队列清空
		q.push(x);                          //读入起点
		vis[x]=1;
		while(!q.empty()){
			int top=q.front();
			q.pop();
			int p;
			p=top+1;                          //注意要用p来拓展,而不能修改top 
			if(p==y){
				cout<<dis[top]+1<<endl;         //一定要用一个dis数组来存FJ的步数,注意bfs拓展次数不等于FJ的步数 
				break;
			}
			else if(p<=100000 && p>=0 && !vis[p]){
			  q.push(p);
			  vis[p]=1;
			  dis[p]=dis[top]+1;
			}
			p=top-1;
			if(p==y){
				cout<<dis[top]+1<<endl;
				break;
			}
			else if(p<=100000 && p>=0 && !vis[p]){
			  q.push(p);
			  vis[p]=1;
			  dis[p]=dis[top]+1;
			}
			p=top*2;
			if(p==y){
				cout<<dis[top]+1<<endl;
				break;
			}
			else if(p<=100000 && p>=0 && !vis[p]){
			  q.push(p);
			  vis[p]=1;
			  dis[p]=dis[top]+1;
			}
		}
	} 
	
	
	return 0;
}
### 关于洛谷 P7731 的题目解析 目前尚未找到针对洛谷 P7731 的具体官方题解或权威资料。然而,基于常见的编程竞赛问题模式以及已知的相关算法思路[^1],可以推测该类问题可能涉及动态规划、贪心策略或其他经典算法模型。 以下是关于此类问题的一般性分析框架: #### 动态规划的应用场景 如果洛谷 P7731 是一道典型的动态规划问题,则其核心在于状态定义与转移方程的设计。例如,在某些货币兑换问题中,可以通过维护两个数组分别表示当前持有的不同币种的最大价值[^2]。这种设计方式类似于引用中的美元汇率转换逻辑。 ```cpp #include <iostream> using namespace std; int main(){ int n; cin >> n; double dp1 = 100.0, dp2 = 0; // 初始条件设定 for(int i=1;i<=n;i++){ int a; cin >> a; double tmp = dp1; dp1 = max(dp1, dp2 / a * 100); // 更新美元最大值 dp2 = max(dp2, tmp / 100 * a); // 更新马克最大值 } cout << fixed << setprecision(2) << dp1; // 输出最终结果 } ``` 上述代码片段展示了如何通过迭代更新来解决多阶段决策优化问题。 #### 贪心算法的可能性 对于另一些特定类型的题目,采用贪心方法可能会更加高效。比如当输入数据满足某种单调性质时,可以直接选取局部最优解从而达到全局最佳效果。 ```cpp #include <bits/stdc++.h> using namespace std; struct Item { long long w,v; }item[1000]; bool cmp(Item x,Item y){ return (double)x.v/x.w>(double)y.v/y.w; } int main(){ int N,W; cin>>N>>W; for(int i=0;i<N;i++)cin>>item[i].w>>item[i].v; sort(item,item+N,cmp); double res=0; for(int i=0;i<N && W>0;i++){ if(W>=item[i].w){res+=item[i].v;W-=item[i].w;} else{res+=(double)item[i].v/(double)item[i].w*(double)W;W=0;} } printf("%.2f\n",res); } ``` 此段程序体现了利用物品单位重量价值排序后依次装载的过程。 ### 总结 尽管未能直接获取到洛谷 P7731 的确切解答方案,但从已有经验出发仍可构建合理的求解路径。无论是运用动态规划还是尝试其他技巧如模拟、枚举等均需紧密结合实际需求展开深入探讨。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值