• 思维训练1


    题目描述2

    Problem - A - Codeforces 

    题目分析 

    思路一:

    由于是连续的数,我们可以使用f1, f2, f3来记录连续数的开头数字,只可能有三种情况

    ①开头数为第一个数-1

    ②开头数为第一个数

    ③开头数为第一个数+1

    分别观察这三个情况,如果都不符合要求说明此只能记为NO

    如果这三种情况有一种符号就记为YES

    1. #include
    2. using namespace std;
    3. typedef long long ll;
    4. const int N = 2e5 + 10;
    5. void solve()
    6. {
    7. int flag1 = 0, flag2 = 0, flag3 = 0;
    8. ll n, a[N];
    9. cin >> n;
    10. cin >> a[1];
    11. ll f1 = a[1];
    12. ll f2 = a[1] - 1;
    13. ll f3 = a[1] + 1;
    14. for(int i = 2; i <= n; i ++)
    15. {
    16. cin >> a[i];
    17. }
    18. for(int i = 1; i <= n; i ++)
    19. {
    20. if(f1 <= a[i] + 1 && f1 >= a[i] - 1)
    21. {
    22. f1 ++;
    23. }
    24. else
    25. {
    26. flag1 = 1;
    27. }
    28. }
    29. for(int i = 1; i <= n; i ++)
    30. {
    31. if(f2 <= a[i] + 1 && f2 >= a[i] - 1)
    32. {
    33. f2 ++;
    34. }
    35. else
    36. {
    37. flag2 = 1;
    38. }
    39. }
    40. for(int i = 1; i <= n; i ++)
    41. {
    42. if(f3 <= a[i] + 1 && f3 >= a[i] - 1)
    43. {
    44. f3 ++;
    45. }
    46. else
    47. {
    48. flag3 = 1;
    49. }
    50. }
    51. if(flag1 == 1 && flag2 == 1 && flag3 == 1)cout << "NO" << '\n';
    52. else cout << "YES" << '\n';
    53. return;
    54. }
    55. int main()
    56. {
    57. ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
    58. int t;
    59. cin >> t;
    60. while(t --)
    61. {
    62. solve();
    63. }
    64. return 0;
    65. }

    思路二:

    由于是连续的一段,所以只能连续往左移或者连续往右移,最左边的只能向右移,最右边的只能向左移(这两个数的移动可以改变中间的空隙的大小,故最多空隙大小不能大于2)对于中间的数无论是向左移还是向右移都不能改变其真正中间空隙的大小

    1. #include
    2. using namespace std;
    3. const int N = 2e5 + 10;
    4. void solve()
    5. {
    6. int n, a[N];
    7. int cnt = 0;
    8. cin >> n;
    9. for(int i = 1; i <= n; i ++)
    10. {
    11. cin >> a[i];
    12. }
    13. for(int i = 2; i <= n; i ++)
    14. {
    15. cnt += a[i] - a[i - 1] - 1;
    16. }
    17. if(cnt > 2)cout << "NO" << '\n';
    18. else cout << "YES" << '\n';
    19. }
    20. int main()
    21. {
    22. int t;
    23. cin >> t;
    24. while(t --)
    25. {
    26. solve();
    27. }
    28. return 0;
    29. }

    题目描述2

    Problem - B - Codeforces

     题目分析

    我们可以假象使用一个数组c来描述了操作的情况,

    ci < 0 表示 ci = -k * ai,也就是经行了k次的减ai的操作,

    ci > 0 表示 ci = k * ai,也就是经行了k次的加ai的操作

    ci = 0 表示没有经行任何的操作

    我们发现操作一定是先减后加的为了使用最少的操作,也就是k最小,其中先减后加的操作中必有一个操作为0步,我们可以从每一步开始一一枚举为0的操作,最后从这个位置分别向左和向右计算出整个c数组,最后找出最小的操作即可

    1. #include
    2. using namespace std;
    3. typedef long long ll;
    4. const int N = 5e5 + 10;
    5. ll a[N], b[N], n;
    6. int main()
    7. {
    8. ll ans = 8e18;
    9. cin >> n;
    10. for(ll i = 1; i <= n; i ++)cin >> a[i];
    11. for(ll i = 1; i <= n; i ++)
    12. {
    13. ll cnt = 0;
    14. memset(b, 0, sizeof b);
    15. for(ll j = i - 1; j >= 1; j --)//向左
    16. {
    17. ll k = 1 - b[j + 1] / a[j];
    18. b[j] = - k * a[j];
    19. cnt += k;
    20. }
    21. for(ll j = i + 1; j <= n; j ++)//向右
    22. {
    23. ll k = 1 + b[j - 1] / a[j];
    24. b[j] = k * a[j];
    25. cnt += k;
    26. }
    27. ans = min(ans, cnt);
    28. }
    29. cout << ans;
    30. return 0;
    31. }

    题目描述3

    Problem - C - Codeforces

     题目分析

     对于带有绝对值的,我们首先需要想到去掉绝对值或者说确定这个绝对值所代数的具体的正负号,对于构造问题,我们可以考虑顺序,逆序跳序

    我们先思考顺序:12 34 56 78

    这样由于第一部分全部为负,故我们逆序思考

    87 65 43 21

    通过上图我们发现在逆序过后每颠倒两个数就会多一个2,故序列得以构造

    1. #include
    2. using namespace std;
    3. const int N = 2e5 + 10;
    4. int n, k, a[N];
    5. int main()
    6. {
    7. ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
    8. cin >> n >> k;
    9. n = n * 2;
    10. for(int i = 1; i <= n; i ++)a[i] = n - i + 1;
    11. for(int i = 1; i <= k; i ++)swap(a[2 * i], a[2 * i - 1]);
    12. for(int i = 1; i <= n; i ++)cout << a[i] << ' ';
    13. return 0;
    14. }

    题目描述4

    Problem - D - Codeforces

    题目分析 

    1. #include
    2. using namespace std;
    3. typedef long long ll;
    4. const int N = 1e7 + 10, inf = 2e9;
    5. int minp[N];
    6. void euler(ll n)
    7. {
    8. bitsetvis;
    9. vector primes;
    10. vis[0] = vis[1] = true;
    11. minp[1] = 1;
    12. for(ll i = 2; i <= n; i ++)
    13. {
    14. if(!vis[i])primes.push_back(i),minp[i] = i;
    15. for(int j = 0; j < primes.size() && i * primes[j] <= n; j ++)
    16. {
    17. vis[i * primes[j]] = true;
    18. minp[i * primes[j]] = primes[j];
    19. if(i % primes[j] == 0)break;
    20. }
    21. }
    22. }
    23. void solve()
    24. {
    25. ll x, y;
    26. cin >> x >> y;
    27. if(y - x == 1)cout << -1 << '\n';
    28. else
    29. {
    30. ll ans = inf;
    31. y-= x;
    32. while(y > 1)
    33. {
    34. ll p = minp[y];
    35. ans = min(ans, ((-x) % p + p) % p);
    36. while(y % p == 0)y /= p;
    37. }
    38. cout << ans << '\n';
    39. }
    40. }
    41. int main()
    42. {
    43. ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
    44. int t;
    45. euler(1e7);
    46. cin >> t;
    47. while(t --)
    48. {
    49. solve();
    50. }
    51. return 0;
    52. }

    题目描述5

    Problem - A - Codeforces

     题目分析

    对于此题意是删除左右两端连续的串,使留下的0以及删除的1最大值最小最终只剩下一部分,我们可以使用双指针来枚举这一部分,c0 : 保留下来0的个数, c1 : 删除掉的1的个数,枚举左端点,当c0 == c1时右端点确定

     在这两个数发生变化的时候一方变化,另一方必定不变,故一定会出现相交的点此点即为答案,找出最小的即可

    1. #include
    2. using namespace std;
    3. const int N = 2e5 + 10;
    4. char s[N];
    5. void solve()
    6. {
    7. int c1 = 0, c0 = 0, ans = 3e5 + 10;
    8. cin >> s + 1;
    9. int n = strlen(s + 1);
    10. for(int i = 1; i <= n; i ++)if(s[i] == '1')c1 ++;
    11. for(int i = 1, j = 0; i <= n; i ++)
    12. {
    13. while(j + 1 <= n && c0 < c1)
    14. {
    15. j ++;
    16. if(s[j] == '0')c0 ++;
    17. else c1 --;
    18. }
    19. ans = min(ans, max(c1, c0));
    20. if(s[i] == '1')c1 ++;
    21. else c0 --;
    22. }
    23. cout << ans << '\n';
    24. }
    25. int main()
    26. {
    27. ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
    28. int t;
    29. cin >> t;
    30. while(t --)
    31. {
    32. solve();
    33. }
    34. return 0;
    35. }
  • 相关阅读:
    进程之间的通信方式(共享存储,消息传递,管道通信)
    Mysql 开启ssl连接
    WRFV3.8.1编译报错,无法显示exe文件
    离线数据处理——子任务一:数据抽取
    吴恩达+Open AI 《面向开发者的ChatGPT Prompt 工程》课程学习2——prompt指导原则1
    微信小程序用户隐私API
    自动化测试的生命周期是什么?
    C#里如何简单的校验时间格式
    linux平台制作deb包
    SpringBoot项目的搭建
  • 原文地址:https://blog.csdn.net/m0_75087931/article/details/133637116