首页 > 代码库 > BZOJ 3834 Poi2014 Solar Panels 数论
BZOJ 3834 Poi2014 Solar Panels 数论
题目大意:给定a,b,c,d,多次询问a<=x<=b,c<=x<=d时Gcd(x,y)的最大值ぽい
考虑枚举n=Gcd(x,y),那么[a,b]和[c,d]两个区间内存在n的倍数当且仅当floor(b/n)>floor((a-1)/n)且floor(d/n)>floor((c-1)/n)ぽい
由于后面的式子最多有O(√max(b,d))个取值,因此枚举商就可以了ぽい
1L和2L写了啥ぽい- -
#include <cstdio> #include <cstring> #include <iostream> #include <algorithm> using namespace std; int a,b,c,d; int main() { int T,i,last; for(cin>>T;T;T--) { scanf("%d%d%d%d",&a,&b,&c,&d); int ans=1; for(i=1;i<=b&&i<=d;i=last+1) { last=min(b/(b/i),d/(d/i)); if(b/last>(a-1)/last&&d/last>(c-1)/last) ans=max(ans,last); } printf("%d\n",ans); } return 0; }
BZOJ 3834 Poi2014 Solar Panels 数论
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。