当前位置:   article > 正文

Codeforces Round 895 (Div. 3)A~E题解

codeforces round 895 (div. 3)

1.A. Two Vessels

链接:

Problem - A - Codeforces

题解:

直接暴力枚举,假设a<b,不断让a加c,b减c,直至a>=b,输出答案即可。

AC代码:

  1. //gyeolhada...in bloom...dream...ricky
  2. //string s="ricky";s.insert(0,"hello ");-->hello ricky
  3. //transform(s.begin(), s.end(), s.begin(), ::tolower);
  4. //2^30=1e9+73741824
  5. #include<bits/stdc++.h>
  6. using namespace std;
  7. #define ll long long
  8. #define sall(x) (x).begin(),(x).end()
  9. #define ball(x) (x).rbegin(),(x).rend()
  10. #define pii pair<int,int>
  11. #define pll pair<ll,ll>
  12. #define inf 0x3f3f3f3f3f3f3f3f
  13. #define Y cout<<"YES"<<endl
  14. #define N cout<<"NO"<<endl
  15. void ZB1()
  16. {
  17. int a,b,c;
  18. cin>>a>>b>>c;
  19. if(a>b)swap(a,b);
  20. int ans=0;
  21. while(a<b)a+=c,b-=c,ans++;
  22. cout<<ans<<endl;
  23. }
  24. int main()
  25. {
  26. int t;
  27. cin >> t;
  28. while (t--)
  29. {
  30. ZB1();
  31. }
  32. return 0;
  33. }

2.B. The Corridor or There and Back Again

链接:

Problem - B - Codeforces

题解:

利用vector<pair>存储,然后按照di降序排列,最后枚举n个pair,maxdis=min(maxdis,d+(t-1)/2)

AC代码:

  1. //gyeolhada...in bloom...dream...ricky
  2. //string s="ricky";s.insert(0,"hello ");-->hello ricky
  3. //transform(s.begin(), s.end(), s.begin(), ::tolower);
  4. //2^30=1e9+73741824
  5. #include<bits/stdc++.h>
  6. using namespace std;
  7. #define ll long long
  8. #define sall(x) (x).begin(),(x).end()
  9. #define ball(x) (x).rbegin(),(x).rend()
  10. #define pii pair<int,int>
  11. #define pll pair<ll,ll>
  12. #define inf 0x3f3f3f3f3f3f3f3f
  13. #define Y cout<<"YES"<<endl
  14. #define N cout<<"NO"<<endl
  15. void ZB1()
  16. {
  17. int n;
  18. cin>>n;
  19. vector<pii>kk;
  20. while(n--)
  21. {
  22. int td,tm;
  23. cin>>td>>tm;
  24. kk.push_back({td,tm});
  25. }
  26. sort(ball(kk));
  27. int maxdis=0x3f3f3f3f;
  28. for(auto pp:kk)
  29. {
  30. maxdis=min(maxdis,pp.first+(pp.second-1)/2);
  31. }
  32. cout<<maxdis<<endl;
  33. }
  34. int main()
  35. {
  36. int t;
  37. cin >> t;
  38. while (t--)
  39. {
  40. ZB1();
  41. }
  42. return 0;
  43. }

3.C. Non-coprime Split

链接:

Problem - C - Codeforces

题解:

枚举sum=a+b从l到r,若找一个大于2的因子(b)即为找到答案,a=sum-b,注意找因子的时候for里面的限制条件为j*j<=sum。

AC代码:

  1. //gyeolhada...in bloom...dream...ricky
  2. //string s="ricky";s.insert(0,"hello ");-->hello ricky
  3. //transform(s.begin(), s.end(), s.begin(), ::tolower);
  4. //2^30=1e9+73741824
  5. #include<bits/stdc++.h>
  6. using namespace std;
  7. #define ll long long
  8. #define sall(x) (x).begin(),(x).end()
  9. #define ball(x) (x).rbegin(),(x).rend()
  10. #define pii pair<int,int>
  11. #define pll pair<ll,ll>
  12. #define inf 0x3f3f3f3f3f3f3f3f
  13. #define Y cout<<"YES"<<endl
  14. #define N cout<<"NO"<<endl
  15. void ZB1()
  16. {
  17. int l,r;
  18. cin>>l>>r;
  19. int b=-1,a;
  20. for(int sum=l;sum<=r;sum++)//sum==a+b
  21. {
  22. for(int j=2;j*j<=sum;j++)
  23. {
  24. if(sum%j==0)//找到一个因子大于1
  25. {
  26. b=j;
  27. a=sum-b;
  28. break;
  29. }
  30. }
  31. if(b!=-1)break;
  32. }
  33. if(b==-1)
  34. {
  35. cout<<-1<<endl;
  36. }
  37. else
  38. {
  39. cout<<a<<" "<<b<<endl;
  40. }
  41. }
  42. int main()
  43. {
  44. int t;
  45. cin >> t;
  46. while (t--)
  47. {
  48. ZB1();
  49. }
  50. return 0;
  51. }

4.D. Plus Minus Permutation

链接:

Problem - D - Codeforces

题解:

先找到x与y的最小公倍数,且这个值一定大于等于x和y,接着算出1到n中x的倍数(不是y的倍数)即为pos,y的倍数(不是x的倍数)即为neg,要保证答案最大,只需让neg为前面1~neg,pos为后面(n-pos+1)~n,最后利用求和公式再相减即可得出答案。

AC代码:

  1. //gyeolhada...in bloom...dream...ricky
  2. //string s="ricky";s.insert(0,"hello ");-->hello ricky
  3. //transform(s.begin(), s.end(), s.begin(), ::tolower);
  4. //2^30=1e9+73741824
  5. #include<bits/stdc++.h>
  6. using namespace std;
  7. #define ll long long
  8. #define sall(x) (x).begin(),(x).end()
  9. #define ball(x) (x).rbegin(),(x).rend()
  10. #define pii pair<int,int>
  11. #define pll pair<ll,ll>
  12. #define inf 0x3f3f3f3f3f3f3f3f
  13. #define Y cout<<"YES"<<endl
  14. #define N cout<<"NO"<<endl
  15. ll gcd(ll a,ll b)
  16. {
  17. return b?gcd(b,a%b):a;
  18. }
  19. ll lcm(ll a,ll b)
  20. {
  21. return (a*b)/gcd(a,b);
  22. }
  23. void ZB1()
  24. {
  25. ll n,x,y;
  26. cin>>n>>x>>y;
  27. ll tt=lcm(x,y);//最小公倍数(一定大于等于x和y)
  28. ll pos=n/x-n/tt;//是x的倍数,但不是y的倍数
  29. ll neg=n/y-n/tt;//是y的倍数,但不是x的倍数
  30. ll ans=(n+(n-pos+1))*pos/2-(1+neg)*neg/2;//x取后pos个,y取前neg个
  31. cout<<ans<<endl;
  32. }
  33. int main()
  34. {
  35. int t;
  36. cin >> t;
  37. while (t--)
  38. {
  39. ZB1();
  40. }
  41. return 0;
  42. }

5.E. Data Structures Fan

链接:

Problem - E - Codeforces

题解:

首先求出a的前缀异或和以及0的异或和、1的异或和,接着读入操作,若操作为2则输出xorzero或者xorone,若操作若为1,则先算出a的l到r的异或和(pre[r]^pre[l-1]),利用两数相同异或值为0,接着再更新xorzero^=val和xorone^=val,例如xorzero中在l到r中本身为0的自身相异或即为0,本身为1的反而被异或进去,到达我们的目的,xorone同理。

AC代码:

  1. //gyeolhada...in bloom...dream...ricky
  2. //string s="ricky";s.insert(0,"hello ");-->hello ricky
  3. //transform(s.begin(), s.end(), s.begin(), ::tolower);
  4. //2^30=1e9+73741824
  5. #include<bits/stdc++.h>
  6. using namespace std;
  7. #define ll long long
  8. #define sall(x) (x).begin(),(x).end()
  9. #define ball(x) (x).rbegin(),(x).rend()
  10. #define pii pair<int,int>
  11. #define pll pair<ll,ll>
  12. #define inf 0x3f3f3f3f3f3f3f3f
  13. #define Y cout<<"YES"<<endl
  14. #define N cout<<"NO"<<endl
  15. void ZB1()
  16. {
  17. int n;
  18. cin>>n;
  19. vector<int>a(n);
  20. for(int i=0;i<n;i++)cin>>a[i];
  21. int xorz=0;
  22. int xoro=0;
  23. string s;
  24. cin>>s;
  25. vector<int>pre(n+1,0);//前缀异或和
  26. for(int i=0;i<n;i++)
  27. {
  28. pre[i+1]=pre[i]^a[i];
  29. if(s[i]=='0')xorz^=a[i];
  30. else xoro^=a[i];
  31. }
  32. int q;
  33. cin>>q;
  34. while(q--)
  35. {
  36. int op;
  37. cin>>op;
  38. if(op==2)
  39. {
  40. int kk;
  41. cin>>kk;
  42. if(kk==1)cout<<xoro<<" ";
  43. else cout<<xorz<<" ";
  44. }
  45. else
  46. {
  47. int l,r;
  48. cin>>l>>r;
  49. int val=pre[r]^pre[l-1];//val为下标从l到r所有a[i]的异或和
  50. //pre[l-1]异或两次,相同为0
  51. xorz^=val;//在l到r中之前为0的同本身相异或为0,而为1的则被异或进去,达到目的
  52. xoro^=val;//同理如上
  53. }
  54. }
  55. cout<<endl;
  56. }
  57. int main()
  58. {
  59. int t;
  60. cin >> t;
  61. while (t--)
  62. {
  63. ZB1();
  64. }
  65. return 0;
  66. }

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

闽ICP备14008679号