当前位置:   article > 正文

蓝桥杯——2020第十一届C/C++真题[省赛][B组]_十一届蓝桥杯字串排序

十一届蓝桥杯字串排序

目录

门牌制作

既约分数

蛇形填数

七段码

跑步锻炼

 回文日期

字串排序​

成绩统计

子串分值和

平面切分


门牌制作

思路:很简单,枚举每个数的每一位,看是否等于2,等于则++;

代码

  1. #include<iostream>
  2. using namespace std;
  3. int co;
  4. void check(int k)
  5. {
  6. while (k > 0)
  7. {
  8. int m = k % 10;
  9. k /= 10;
  10. if (m == 2)
  11. {
  12. co++;
  13. }
  14. }
  15. }
  16. int main()
  17. {
  18. for (int i = 1; i <= 2020; i++)
  19. {
  20. check(i);
  21. }
  22. cout << co << endl;
  23. return 0;
  24. }

答案:624 

既约分数

思路: 这题就是考最大公约数,不过要细心,求出来最大公约数后,要*2,因为分子和分母可以互换,又是不同的情况,还有1/1,2/2,3/3....这样的要算为一种情况,所以求出来结果还要+1.

代码

  1. #include<iostream>
  2. using namespace std;
  3. int ants;
  4. int gcd(int a, int b)
  5. {
  6. /*return b ? gcd(b, a % b) : a;*/
  7. if (a%b == 0)return b;
  8. return gcd(b, a % b);
  9. }
  10. int main()
  11. {
  12. for (int i = 1; i <= 2020; i++)
  13. {
  14. for (int j = i+1; j <= 2020; j++)
  15. {
  16. if (gcd(i, j) == 1)
  17. {
  18. ants++;
  19. }
  20. }
  21. }
  22. int sum = ants * 2 + 1;
  23. cout <<sum << endl;
  24. return 0;
  25. }

 答案:2481215

蛇形填数

 思路:这样的题就是找规律,对代码要求不高,多写几个就找出来了

代码:

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. int n = 20, sum = 1;
  6. for (int i = 0; i <n; i++)
  7. {
  8. sum += i * 4;
  9. }
  10. cout << sum << endl;
  11. return 0;
  12. }

答案:761 

七段码

思路: DFS搜索所有状态,判断每种状态可不可行。判断的方法是把每条灯管当作一个节点,编号,连边建图,对搜索出的亮灯方案使用并查集判断点亮的灯管是否在同一个集合。

推荐一篇并查集的文章:算法学习笔记(1) : 并查集 - 知乎

 代码:

  1. #include <iostream>
  2. #include <cstring>
  3. using namespace std;
  4. const int MAXN = 25;
  5. int n = 7, ans = 0, path[MAXN], f[MAXN][MAXN], father[MAXN];
  6. //查找 x 的祖先节点
  7. int find(int x)
  8. {
  9. if (x != father[x]) { //路径压缩
  10. return father[x] = find(father[x]);
  11. }
  12. return father[x];
  13. }
  14. void dfs(int u, int p, int m)
  15. {
  16. if (u == m) {
  17. //初始化操作
  18. for (int i = 1; i < MAXN; ++i) {
  19. father[i] = i;
  20. }
  21. //集合合并
  22. for (int i = 0; i < m; ++i) {
  23. for (int j = i + 1; j < m; ++j) {
  24. //存在边相连
  25. if (f[path[i]][path[j]] == 1) {
  26. //path[i] 和 path[j] 合并成一个集合
  27. father[find(path[i])] = find(father[path[j]]);
  28. }
  29. }
  30. }
  31. //查找最终是否为一个集合
  32. bool flag = false;
  33. for (int i = 0; i < m - 1; ++i) {
  34. if (find(path[i]) != find(path[i + 1])) {
  35. flag = true;
  36. break;
  37. }
  38. }
  39. if (!flag) {
  40. ++ans;
  41. }
  42. return ;
  43. }
  44. for (int i = p; i <= n; ++i) {
  45. path[u] = i;
  46. dfs(u + 1, i + 1, m);
  47. }
  48. }
  49. int main()
  50. {
  51. memset(f, 0, sizeof(f));
  52. f[1][2] = f[2][1] = 1;
  53. f[1][6] = f[6][1] = 1;
  54. f[2][7] = f[7][2] = 1;
  55. f[6][7] = f[7][6] = 1;
  56. f[7][3] = f[3][7] = 1;
  57. f[7][5] = f[5][7] = 1;
  58. f[2][3] = f[3][2] = 1;
  59. f[3][4] = f[4][3] = 1;
  60. f[4][5] = f[5][4] = 1;
  61. f[5][6] = f[6][5] = 1;
  62. for (int i = 1; i <= n; ++i) {
  63. dfs(0, 1, i);
  64. }
  65. cout << ans << endl;
  66. return 0;
  67. }

答案:80 

跑步锻炼

思路:经典的日期问题, 细心点写,注意瑞年的判断和每个月的月数,就没啥大问题。

代码

  1. #include<iostream>
  2. using namespace std;
  3. //2000 1 1(星期六)-2020 10 1
  4. /**/
  5. int ants = 0;
  6. int Month[13] = { 0,31,28,31,30,31,30,31,31,30,31,30,31 };
  7. int main()
  8. {
  9. int year = 2000, month = 1, day = 1, weekday = 6;
  10. while (1)
  11. {
  12. ants += (weekday == 1 || day == 1) + 1;//判断是否是星期一或者是每个月月初
  13. if (year == 2020 && month == 10 && day == 1)//结束条件
  14. {
  15. break;
  16. }
  17. //星期循环,和天数增加
  18. day += 1;
  19. weekday = (weekday + 1) % 7;
  20. //判断是否是瑞年并且是二月份
  21. if (month == 2 && (year % 4 == 0 && year % 100 != 0 || year % 400 == 0))
  22. {
  23. if (day > Month[month] + 1)
  24. {
  25. day = 1;
  26. month += 1;
  27. }
  28. }
  29. else if (day > Month[month])
  30. {
  31. day = 1;
  32. month += 1;
  33. }
  34. if (month == 13)
  35. {
  36. month = 1;
  37. year += 1;
  38. }
  39. }
  40. cout << ants << endl;
  41. return 0;
  42. }

 答案:8879

 回文日期

 输入样例

  1. 2
  2. 20200202
  3. 20211203

输出样例

  1. 20211202
  2. 21211212
  3. 20300302
  4. 21211212

思路: 这道题需要用字符串和数字之间的转换,然后判断一个日期是否是回文串,日期是否合法,在前面的基础上再判断是否是ABBABABA,对思维要求不高,基本都能想出来,就是代码量和操作有点繁琐.我们先练习下字符串和数字之间的来回转化,这个要掌握,竞赛中经常用到

  1. /*1.数字转换成字符串*/
  2. int num = 123;
  3. stringstream ss;
  4. ss << num;
  5. string s = ss.str();
  6. cout << s << endl;
  1. /*2.字符串转换成数字*/
  2. string s1 = "123";
  3. int num1 = atoi(s1.c_str());
  4. cout << num1 << endl;
  5. /*3.字符串转换成数字*/
  6. string s2 = "456";
  7. stringstream ss2;
  8. ss2 << s2;
  9. int num2;
  10. ss2 >> num2;
  11. cout << num2 << endl;

代码

  1. #include<iostream>
  2. #include<set>
  3. #include<sstream>
  4. #include<string>
  5. #include<algorithm>
  6. using namespace std;
  7. /*如何判断一个日期是否是回文串
  8. 日期是否合法?
  9. 在1,2的基础上如何判断该日期是ABBA BABA型的回文日期?*/
  10. //run[0]表示的是瑞年每个月的天数;run[1]表示的是非瑞年每个月的天数
  11. int run[2][13] = { {0,31,29,31,30,31,30,31,31,30,31,30,31},{0,31,28,31,30,31,30,31,31,30,31,30,31} };
  12. //2121 12 12 //长度为8
  13. //0123 45 67下标 //if(s[1]!=s[6]) i=1,6=len-i--1;
  14. bool fun(string s)//判断是否为回文日期
  15. {
  16. for (int i = 0; i < s.length(); i++)
  17. {
  18. if (s[i] != s[s.length() - i - 1])return false;
  19. }
  20. //判断日期是否合法
  21. int y = (s[0] - '0') * 1000 + (s[1] - '0') * 100 + (s[2] - '0') * 10 + (s[3] - '0');
  22. int m = (s[4] - '0') * 10 + (s[5] - '0');
  23. int d = (s[6] - '0') * 10 + (s[7] - '0');
  24. if (m > 12)return false;
  25. int f = (y % 4 == 0 && y % 100 != 0) || (y % 400 == 0)?0:1;
  26. if (d > run[f][m])return false;
  27. return true;
  28. }
  29. bool fun2(string s)//判断是否为ABAB BABA型的回文日期
  30. {
  31. //ABAB BABA型的字符串只有两个不同的元素———>set,求不同元素的个数
  32. set<char> st;
  33. for (int i = 0; i < s.length(); i++)
  34. {
  35. st.insert(s[i]);
  36. }
  37. if (st.size() != 2)return false;
  38. //只有两个不同元素的回文日期的情况;
  39. /*
  40. * 1.AABB BBAA
  41. * 2.ABAB BABA
  42. * 3.ABAA AABA
  43. * 4.ABBB BBBA
  44. * 要得到2
  45. */
  46. if (s[0] == s[1] || s[2] == s[3])return false;//直接排除
  47. return true;
  48. }
  49. int main()
  50. {
  51. string s;
  52. cin >> s;
  53. stringstream tmp;
  54. tmp << s;
  55. long long num;
  56. tmp >> num;
  57. int f1 = 0;//表示没有找到回文日期
  58. int f2 = 0;//表示没有找到ABAB BABA型的回文日期
  59. for (long long i = num+1; i <= 89991231; i++)
  60. {
  61. if (f1 == 1 && f2 == 1)break;//表示已经得到最后的结果
  62. //把日期先转换成字符串
  63. stringstream t2;
  64. t2 << i;
  65. string S = t2.str();
  66. if (fun(S) == false)continue;//不是回文日期,跳过该循环
  67. //确保了字符串S是回文日期
  68. if (f1 == 0)
  69. {
  70. cout << S << endl;
  71. f1 = 1;
  72. }
  73. if (fun2(S) == true)//ABABBABA型的回文日期
  74. {
  75. cout << S << endl;
  76. f2 = 1;
  77. }
  78. }
  79. return 0;
  80. }

字串排序
 

 思路:这道题看的我迷迷瞪瞪,我在网上找了很多参考答案,给大家推荐一篇博客:

蓝桥杯“字串排序“题解_Nervous_46216553的博客-CSDN博客_蓝桥杯字串排序

代码:

  1. import java.util.Scanner;
  2. public class Main {
  3. static int list[]={//存放后缀序列,这样插和删除很容易
  4. 0,0,0,0,0,//注cccbba=1,2,3,0,……
  5. 0,0,0,0,0,
  6. 0,0,0,0,0,
  7. 0,0,0,0,0,
  8. 0,0,0,0,0,
  9. 0
  10. };
  11. static int[] str=new int[300];//存放前缀序列
  12. static void reset() {//后缀序列清零
  13. int i=0;
  14. while(i<26&&list[i]!=0) {
  15. list[i]=0;
  16. ++i;
  17. }
  18. }
  19. static int getrnum() {//计算逆序数(分三步)
  20. int cnt=0;
  21. for(int i=0;str[i]!=0;++i) {//前缀的逆序数
  22. for(int j=i;str[j]!=0;++j) {
  23. if(str[i]>str[j]) {
  24. ++cnt;
  25. }
  26. }
  27. }
  28. for(int i=0;str[i]!=0;++i) {//前缀对后缀的逆序数
  29. for(int j=25;j>=0;--j) {
  30. if(str[i]-'a'>j) {
  31. cnt+=list[j];
  32. }
  33. }
  34. }
  35. int temp=0;
  36. for(int i=0;i<26;++i) {//后缀的逆序数
  37. cnt+=temp*list[i];
  38. temp+=list[i];
  39. }
  40. return cnt;
  41. }
  42. static int getinc(int c) {//获得最大逆序增量(特殊步骤中代替求逆序数函数用来提速)(可以认为在数字符串里有多少非c(传入的参数)字符)(也就是插入c逆序数能增加多少)
  43. int i=0,cnt=0;
  44. while(str[i]!=0) {
  45. if(str[i]>(c+'a')) {
  46. cnt++;
  47. }
  48. ++i;
  49. }
  50. for(i=0;i<26;++i) {
  51. if(i!=c) {
  52. cnt+=list[i];
  53. }
  54. }
  55. return cnt;
  56. }
  57. static void set() {//在后部序列中插入元素,保证逆序数最大
  58. int max=0,temp=0,index=0;
  59. for(int i=0;i<26;++i) {
  60. list[i]++;
  61. if((temp=getinc(i))>max) {//找出使逆序数增得最快的字符插入(这里比用增而直接记录逆序数不影响结果,但慢一些,数据10000左右要5秒左右,会超时的,不然我也不会编这么个对于的函数。。)
  62. index=i;
  63. max=temp;
  64. }
  65. list[i]--;
  66. }
  67. list[index]++;
  68. }
  69. static void getMaxStr(int l) {//获取前缀确定且长度确定的前提下的最大逆序数字串
  70. reset();
  71. for(int i=0;str[i]!=0;++i,--l);
  72. while(l>0) {
  73. set();
  74. --l;
  75. }
  76. }
  77. static void printstr() {//打印目标字符串
  78. String Str="";
  79. int i=0;
  80. while(str[i]!=0) {
  81. Str+=(char)str[i];
  82. ++i;
  83. }
  84. for(i=25;i>=0;--i) {//这里其实没用,既然不执行也不会影响效率,留着吧,后缀最后是空的,但曾经存在过。。。
  85. for(int j=0;j<list[i];++j) {
  86. Str+=(char)(i+'a');
  87. }
  88. }
  89. System.out.println(Str);
  90. }
  91. static void getans(int num,int l) {//l是字串长度
  92. for(int i=0;i<l;++i) {
  93. for(int j=0;j<26;++j) {//每个位从a开始试
  94. str[i]=j+'a';
  95. getMaxStr(l);//获取指定前缀最大逆字串
  96. if(getrnum()>=num) {//超了就下一个
  97. break;
  98. }
  99. }
  100. }
  101. }
  102. public static void main(String[] args){//这了很简洁了
  103. int num;
  104. Scanner sc = new Scanner(System.in);
  105. num=sc.nextInt();//获取输入
  106. sc.close();
  107. int l=0;
  108. while(getrnum()<num) {//获取最短字串长
  109. ++l;
  110. getMaxStr(l);
  111. }
  112. getans(num,l);//获得目标字串
  113. printstr();//打印
  114. }
  115. }

成绩统计

我严重怀疑这个网站给的题目顺序不对,前面编程题越做越吃劲,怎么越往后越容易

代码

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. double a = 0;
  6. double b = 0;
  7. double c;
  8. cin >> c;
  9. int n;
  10. for (int i = 0; i < c; i++)
  11. {
  12. cin >> n;
  13. if (n >= 60)
  14. {
  15. a++;
  16. }
  17. if (n >= 85)
  18. {
  19. b++;
  20. }
  21. }
  22. int x =(a * 100.0)/c+0.5;
  23. int y =(b * 100.0)/c+0.5;
  24. cout << x << "%" << endl << y << "%";
  25. return 0;
  26. }

子串分值和

 代码

  1. #include<iostream>
  2. #include<cstring>
  3. using namespace std;
  4. typedef long long LL;
  5. int num[26]; //某字母在字符串中上一次出现的位置
  6. int main() {
  7. string s;
  8. cin >> s;//ababc
  9. int len = s.size();//5
  10. memset(num, -1, sizeof(num));//初始化为-1
  11. LL ans = 0;
  12. for (int i = 0; i < len; ++i) {
  13. ans += (LL)(i - num[s[i] - 'a']) * (len - i);
  14. num[s[i] - 'a'] = i;
  15. }
  16. printf("%lld\n", ans);
  17. return 0;
  18. }

平面切分

思路:推荐博客蓝桥杯:平面切分_fa2000_12_16的博客-CSDN博客_蓝桥杯平面切分

代码

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. const int N = 1005;
  4. int main()
  5. {
  6. int n;
  7. scanf("%d", &n);
  8. int a, b;
  9. long double A[N], B[N];
  10. pair<long double, long double> p;
  11. set<pair<long double, long double> > s; //利用set自动去重功能筛选掉重边
  12. for(int i = 0; i < n; i++)
  13. {
  14. scanf("%d %d", &a, &b);
  15. p.first = a;
  16. p.second = b;
  17. s.insert(p);
  18. }
  19. int i = 0; //将去重后的直线数据放回A,B数组
  20. for(set<pair<long double, long double> >::iterator it = s.begin(); it != s.end(); it++, i++)
  21. {
  22. A[i] = it -> first;
  23. B[i] = it -> second;
  24. }
  25. long long ans = 2; //初始情况当只有一条直线时,有两个平面
  26. for(int i = 1; i < s.size(); i++) //从下标1开始,也就是第二条直线
  27. {
  28. set<pair<long double, long double> > pos; //记录第i条直线与先前的交点
  29. for(int j = i-1; j >= 0; j--)
  30. {
  31. int a1 = A[i], b1 = B[i];
  32. int a2 = A[j], b2 = B[j];
  33. if(a1 == a2) //遇到平行线无交点,跳出
  34. continue;
  35. p.first = 1.0*(b2-b1)/(a1-a2);
  36. p.second = 1.0*a1*((b2-b1)/(a1-a2)) + b1;
  37. pos.insert(p);
  38. }
  39. ans += pos.size() + 1; //根据结论,每增加一条直线,对平面数的贡献值是其与先前直线的交点数(不重合)+1
  40. }
  41. printf("%d\n", ans);
  42. return 0;
  43. }
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/361764
推荐阅读
相关标签
  

闽ICP备14008679号