ID搜索

编程入门 行业动态 更新时间:2024-10-21 11:59:39

<a href=https://www.elefans.com/category/jswz/34/1771396.html style=ID搜索"/>

ID搜索

埃及分数

#include<cstdio>
#include<algorithm>
#include<cstring>
#include<vector>
#include<set>
#include<cmath>
using namespace std;int a,b,k,depth;
vector<int>tmp,ans;
bool flag;int gcd(int a,int b){return !b?a:gcd(b,a%b);
}bool check(){for(int i=depth;i>=0;i--)if(tmp[i]!=ans[i])return ans[i]==-1 || tmp[i]<ans[i];return 0;
}void dfs(int a,int b,int dep){if(dep>depth ||  a==0)	return;if(b%a==0 && (b/a)>tmp[dep-1]){tmp.push_back(b/a);if(!flag || check()) ans=tmp,flag=1;tmp.pop_back();return;}int s=ceil(1.0*b/a);(dep>0 && s<=tmp[dep-1]) && (s=tmp[dep-1]+1);int t=ceil(1.0*b*(depth-dep+1)/a);if(flag && t>=ans[depth]) t=ans[depth]-1;for(int i=s;i<=t;i++){int GCD=gcd(a*i-b,b*i);tmp.push_back(i);dfs((a*i-b)/GCD,b*i/GCD,dep+1);tmp.pop_back();}
}int main(){flag=0;scanf("%lld%lld",&a,&b);for(depth=1;;depth++){dfs(a,b,0);if(flag) break;}printf("%d",ans[0]);for(int i=1;i<=depth;++i)printf(" %d",ans[i]);  
}

更多推荐

ID搜索

本文发布于:2023-06-20 12:58:48,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/801894.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:ID

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!