当前位置:   article > 正文

B. Lunatic Never Content - 数论

b. lunatic never content

题意:

        一个i数组的每一位对一个数x取模,求最大的x使数组成为会问数组。不存在输出0.

分析:

        如果数组两侧对应的数不相等,则可以对两个数的差取模,若想满足每一对数,则对所有绝对值得差取最大公约数

代码:

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. typedef long long ll;
  4. const int N=1e5+10;
  5. ll a[N];
  6. ll gcd(ll a,ll b)
  7. {
  8. return b?gcd(b,a%b):a;
  9. }
  10. void solve()
  11. {
  12. int t;
  13. cin>>t;
  14. while(t--)
  15. {
  16. int n;
  17. cin>>n;
  18. for(int i=0;i<n;i++) cin>>a[i];
  19. int ans=0;
  20. for(int i=0;i<n/2;i++)
  21. {
  22. int x=a[i];
  23. int y=a[n-i-1];
  24. if(x==y) continue;
  25. int res=abs(x-y);
  26. ans=gcd(ans,res);
  27. }
  28. cout<<ans<<'\n';
  29. }
  30. }
  31. int main()
  32. {
  33. ios::sync_with_stdio(false);
  34. cin.tie(0);
  35. cout.tie(0);
  36. solve();
  37. return 0;
  38. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/519099?site
推荐阅读
相关标签
  

闽ICP备14008679号