2020第十一届蓝桥杯软件类省赛第二场C/C++ 大学 B 组(题解)

试题 A: 门牌制作

问题描述
小蓝要为一条街的住户制作门牌号。
这条街一共有 2020 位住户,门牌号从 1 到 2020 编号。
小蓝制作门牌的方法是先制作 0 到 9 这几个数字字符,最后根据需要将字
符粘贴到门牌上,例如门牌 1017 需要依次粘贴字符 1、 0、 1、 7,即需要 1 个
字符 0, 2 个字符 1, 1 个字符 7。
请问要制作所有的 1 到 2020 号门牌,总共需要多少个字符 2?

直接暴力

/*Author : lifehappy
*/
#include <bits/stdc++.h>using namespace std;int main() {// freopen("in.txt", "r", stdin);// freopen("out.txt", "w", stdout);// ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);int ans = 0;for(int i = 1; i <= 2020; i++) {int temp = i;while(temp) {if(temp % 10 == 2) ans++;temp /= 10;}}printf("%d\n", ans);return 0;
}
/*
624
*/

试题 B: 既约分数

【问题描述】
如果一个分数的分子和分母的最大公约数是 1,这个分数称为既约分数。
例如,34,52,18,71\frac{3}{4}, \frac{5}{2}, \frac{1}{8}, \frac{7}{1}43,25,81,17都是既约分数。
请问,有多少个既约分数,分子和分母都是 1 到 2020 之间的整数(包括 1
和 2020)?

显然这不是一道简单题,我们写下数学式子来
∑i=1n∑j=1n[gcd(i,j)=1]∑k=1nμ(k)∑i=1nk∑j=1nk\sum_{i = 1} ^{n} \sum_{j = 1} ^{n} [gcd(i, j) = 1]\\ \sum_{k = 1} ^{n} \mu(k) \sum_{i = 1} ^{\frac{n}{k}} \sum_{j = 1} ^{\frac{n}{k}}\\ i=1nj=1n[gcd(i,j)=1]k=1nμ(k)i=1knj=1kn
然后就只要线性筛,加数论分块即可。

/*Author : lifehappy
*/
#include <bits/stdc++.h>using namespace std;const int N = 1e4 + 10;int prime[N], mu[N], cnt;bool st[N];void init() {mu[1] = 1;for(int i = 2; i < N; i++) {if(!st[i]) {prime[++cnt] = i;mu[i] = -1;}for(int j = 1; j <= cnt && 1ll * i * prime[j] < N; j++) {st[i * prime[j]] = 1;if(i % prime[j] == 0) {break;}mu[i * prime[j]] = -mu[i];}}for(int i = 1; i < N; i++) {mu[i] += mu[i - 1];}
}int main() {// freopen("in.txt", "r", stdin);// freopen("out.txt", "w", stdout);// ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);init();int n = 2020, ans = 0;for(int l = 1, r; l <= n; l = r + 1) {r = n / (n / l);ans += (mu[r] - mu[l - 1]) * (n / l) * (n / l);}printf("%d\n", ans);return 0;
}
/*
2481215
*/

试题 C: 蛇形填数

如下图所示,小明用从 1 开始的正整数“蛇形”填充无限大的矩阵。
1 2 6 7 15 :::
3 5 8 14 :::
4 9 13 :::
10 12 :::
11 :::
:::
容易看出矩阵第二行第二列中的数是 5。请你计算矩阵中第 20 行第 20 列
的数是多少 ?

这题也是模拟即可,所以就直接上代码吧,看代码就懂了。

/*Author : lifehappy
*/
#include <bits/stdc++.h>using namespace std;int a[50][50];int main() {// freopen("in.txt", "r", stdin);// freopen("out.txt", "w", stdout);// ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);int n = 45, num = 45 * 45;for(int i = 1, cnt = 1; i <= n && cnt <= num; i++) {if(i & 1) {for(int x = i, y = 1; x >= 1 && y <= i; x--, y++) {a[x][y] = cnt++;}}else {for(int x = 1, y = i; x <= i && y >= 1; x++, y--) {a[x][y] = cnt++;}}}printf("%d\n", a[20][20]);return 0;
}
/*
761
*/

试题 D: 跑步锻炼

【问题描述】
小蓝每天都锻炼身体。
正常情况下,小蓝每天跑 1 千米。如果某天是周一或者月初(1 日),为了
激励自己,小蓝要跑 2 千米。如果同时是周一或月初,小蓝也是跑 2 千米。
小蓝跑步已经坚持了很长时间,从 2000 年 1 月 1 日周六(含)到 2020 年
10 月 1 日周四(含)。请问这段时间小蓝总共跑步多少千米?

按照天数去模拟就OK了。

/*Author : lifehappy
*/
#include <bits/stdc++.h>using namespace std;int day[13] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};int main() {// freopen("in.txt", "r", stdin);// freopen("out.txt", "w", stdout);// ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);int a = 2000, b = 1, c = 1, num = 1, ans = 0;while(a != 2020 || b != 10 || c != 2) {if(c == 1 || num % 7 == 3) ans += 2;else ans += 1;int nowday = day[b];if((a % 400 == 0 || (a % 4 == 0 && a % 100 != 0)) && b == 2) nowday++;c++, num++;if(c > nowday) {c = 1;b += 1;}if(b == 13) {a += 1;b = 1;}}printf("%d\n", ans);return 0;
}
/*
8879
*/

试题 E: 七段码

总共有7根管子,二进制枚举,然后bfs或者dfs判断是否联通即可。

下面用0 -> a, 1 -> b……6 -> g,也就是用0代表a,以此类推,,

/*Author : lifehappy
*/
#include <bits/stdc++.h>using namespace std;bool judge(int pos, int value) {queue<int> q;q.push(pos);value ^= 1ll << pos;while(q.size()) {int temp = q.front();q.pop();if(temp == 0) {if(value >> 1 & 1) {value ^= 1 << 1;q.push(1);}if(value >> 5 & 1) {value ^= 1 << 5;q.push(5);}}else if(temp == 1) {if(value >> 0 & 1) {value ^= 1 << 0;q.push(0);}if(value >> 2 & 1) {value ^= 1 << 2;q.push(2);}if(value >> 6 & 1) {value ^= 1 << 6;q.push(6);}}else if(temp == 2) {if(value >> 1 & 1) {value ^= 1 << 1;q.push(1);}if(value >> 3 & 1) {value ^= 1 << 3;q.push(3);}if(value >> 6 & 1) {value ^= 1 << 6;q.push(6);}}else if(temp == 3) {if(value >> 2 & 1) {value ^= 1 << 2;q.push(2);}if(value >> 4 & 1) {value ^= 1 << 4;q.push(4);}}else if(temp == 4) {if(value >> 3 & 1) {value ^= 1 << 3;q.push(3);}if(value >> 5 & 1) {value ^= 1 << 5;q.push(5);}if(value >> 6 & 1) {value ^= 1 << 6;q.push(6);}}else if(temp == 5) {if(value >> 0 & 1) {value ^= 1 << 0;q.push(0);}if(value >> 4 & 1) {value ^= 1 << 4;q.push(4);}if(value >> 6 & 1) {value ^= 1 << 6;q.push(6);}}else {if(value >> 1 & 1) {value ^= 1 << 1;q.push(1);}if(value >> 2 & 1) {value ^= 1 << 2;q.push(2);}if(value >> 4 & 1) {value ^= 1 << 4;q.push(4);}if(value >> 5 & 1) {value ^= 1 << 5;q.push(5);}}}return value == 0;
}int main() {// freopen("in.txt", "r", stdin);// freopen("out.txt", "w", stdout);// ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);int ans = 0;for(int i = 1; i < 1 << 7; i++) {int j;for(j = 0; j < 7; j++) {if(i >> j & 1) {break;}}if(judge(j, i)) {ans++;}}printf("%d\n", ans);return 0;
}
/*
80
*/

试题 F: 成绩统计

统计≥60\geq 6060≥85\geq 8585的数量,然后按照要求四舍五入即可。

/*Author : lifehappy
*/
#include <bits/stdc++.h>using namespace std;int main() {// freopen("in.txt", "r", stdin);// freopen("out.txt", "w", stdout);// ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);int n, a, res = 0, ans = 0;scanf("%d", &n);for(int i = 1; i <= n; i++) {scanf("%d", &a);if(a >= 60) res++;if(a >= 85) ans++;}printf("%.0f%%\n%.0f%%\n", (double)res * 100.0 / n, (double)ans * 100.0 / n);return 0;
}

试题 G: 回文日期

跟D题一样,按照天数模拟,然后再judge就行了。

/*Author : lifehappy
*/
#include <bits/stdc++.h>using namespace std;int day[13] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};bool judge1(int a, int b, int c) {int d = a * 10000 + b * 100 + c;int num[10], cnt = 9;while(d) {num[--cnt] = d % 10;d /= 10;}for(int l = 1, r = 8; l < r; l++, r--) {if(num[l] != num[r]) {return false;}}return true;
}bool judge2(int a, int b, int c) {int d = a * 10000 + b * 100 + c;int num[10], cnt = 9;while(d) {num[--cnt] = d % 10;d /= 10;}for(int l = 1, r = 8; l < r; l++, r--) {if(num[l] != num[r] || num[l] != num[l & 1 ? 1 : 2]) {return false;}}return true;
}int main() {// freopen("in.txt", "r", stdin);// freopen("out.txt", "w", stdout);// ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);int a, b, c, d, flag = 0;scanf("%d", &d);a = d / 10000, b = (d / 100) % 100, c = d % 100;while(flag < 2) {int nowday = day[b];if(((a % 400 == 0) || (a % 4 == 0 && a % 100 != 0)) && b == 2) nowday++;c++;if(c > nowday) {c = 1;b += 1;}if(b == 13) {a += 1;b = 1;}if(!flag && judge1(a, b, c)) {printf("%d%02d%02d\n", a, b, c);flag += 1;}if(judge2(a, b, c)) {printf("%d%02d%02d\n", a, b, c);flag += 1;}}return 0;
}

试题 H: 子串分值和

这题稍微有点思维吧,我们定义,对于一个字符串我们只记录这个字母在这个字符中出现的第一次有贡献,

接下来就是统计,以某个字符为第一次出现的字母的字串数量了,

我们定义last[i]last[i]last[i]表示字符iii在当前枚举点之前最后一次出现的位置,显然这个字符的左端点就可以落在[last[i]+1,now][last[i] + 1, now][last[i]+1,now]

这个区间了,然后右端点可以在now,nnow, nnow,n区间,所有的字串就是这两个长度的乘积,然后就是非常简短的代码了。

/*Author : lifehappy
*/
#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N = 1e5 + 10;int last[30], n;char str[N];int main() {// freopen("in.txt", "r", stdin);// freopen("out.txt", "w", stdout);// ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);scanf("%s", str + 1);n = strlen(str + 1);ll ans = 0;for(int i = 1; i <= n; i++) {ans += 1ll * (i - last[str[i] - 'a']) * (n - i + 1);last[str[i] - 'a'] = i;}printf("%lld\n", ans);return 0;
}

试题 I: 平面切分

平面上有 N 条直线,其中第 i 条直线是y=Ai⋅x+Biy = A_i · x + B_iy=Aix+Bi
请计算这些直线将平面分成了几个部分。

这题不会,待补,,,

试题 J: 字串排序

【问题描述】
小蓝最近学习了一些排序算法,其中冒泡排序让他印象深刻。
在冒泡排序中,每次只能交换相邻的两个元素。
小蓝发现,如果对一个字符串中的字符排序,只允许交换相邻的两个字符,
则在所有可能的排序方案中,冒泡排序的总交换次数是最少的。
例如,对于字符串 lan 排序,只需要 1 次交换。对于字符串 qiao 排序,
总共需要 4 次交换。
小蓝的幸运数字是 V,他想找到一个只包含小写英文字母的字符串,对这
个串中的字符进行冒泡排序,正好需要 V 次交换。请帮助小蓝找一个这样的字
符串。如果可能找到多个,请告诉小蓝最短的那个。如果最短的仍然有多个,
请告诉小蓝字典序最小的那个。请注意字符串中可以包含相同的字符。

思路

显然要使长度最短,我们就不能浪费每一个字母,所以,一定有字母是递减的顺序的,

要使字典序最短,每个字母出现的数量一定是要从前往后递增的,这样就好了,,

限制一下每个字母最多出现的次数然后就是dfsdfsdfs爆搜,

但是考场上限制的次数太小了,写了777,只能测到910009100091000左右的测试点,改到888就好了。

(这题貌似好像有点问题,并不是正解 >_<)

/*Author : lifehappy
*/
#include <bits/stdc++.h>using namespace std;const int N = 1e4 + 10;char ans[N], res[N];int n, len;bool judge() {int i = len;while(ans[i] == res[i] && i) i--;return res[i] < ans[i];
}void dfs(int now, int maxn, int m, int sum) {if(sum == n) {if(m < len || (m == len && judge())) {len = m;for(int i = 1; i <= len; i++) {ans[i] = res[i];}}return ;}if(now >= 26) return ;for(int i = 1; i <= maxn; i++) {int temp = sum + m * i;if(temp > n) return ;res[m + i] = char(now + 'a');dfs(now + 1, i, m + i, temp);}
}int main() {// freopen("in.txt", "r", stdin);// freopen("out.txt", "w", stdout);// ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);len = 0x3f3f3f3f;scanf("%d", &n);dfs(0, 8, 0, 0);for(int i = len; i >= 1; i--) {putchar(ans[i]);}puts("");return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/314106.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

队长开卖自家产“翠香”猕猴桃

猕猴桃品种有很多&#xff0c;但不是所有的果子都叫翠香。这两天我在公众号里卖了这个翠香猕猴桃&#xff0c;可能是有同学以为是做广告卖水果&#xff0c;其实是家里的亲戚猕猴桃成熟了&#xff0c;辛苦一年下来地里一共结了3000斤猕猴桃&#xff0c;遇到了一个难题就是如何把…

Java修炼之路——基础篇——Java集合类

集合类的全景图 常用集合类特性 1. Collection&#xff1a;每个位置对应一个元素1.1: List 存放有序元素&#xff0c;允许重复元素&#xff0c;允许元素为null1.1.1: ArrayList&#xff1a;内部结构为数组&#xff1b;初始容量为10&#xff1b;插入、删除的移动速度慢&#x…

1575 Gcd and Lcm

1575 Gcd and Lcm ∑i1n∑j1i∑k1ilcm(gcd(i,j),gcd(i,k))设f(n)∑i1n∑j1nlcm(gcd(i,n),gcd(j,n))f(p)3p2−3p1f(pk)(2k1)(p2k−p2k−1)pk−1\sum_{i 1} ^{n} \sum_{j 1} ^{i} \sum_{k 1} ^{i} lcm(gcd(i, j), gcd(i, k))\\ 设f(n) \sum_{i 1} ^{n} \sum_{j 1} ^{n} lcm…

UVA12298 Super Poker II(多项式/背包问题)

UVA12298 Super Poker II 这应该是最水的背包问题了吧 然后有一个小问题就是这道题没有给模数&#xff0c;然后答案会爆int&#xff0c;所以我们需要MTT&#xff0c;然后开long long就好了&#xff0c;或者直接fft&#xff0c;有可能会爆精度。

Java修炼之路——基础篇——Java集合类详解1

SynchronizedList和Vector的区别 java.util.Vector java.util.Collections.$SynchronizedList Vector用同步方法&#xff0c;SynchronizedList用同步代码块&#xff0c;SynchronizedList可以指定锁定的对象 SynchronizedList有很好的扩展和兼容功能&#xff0c;能把所有List的子…

小卓.NET中文编程特点介绍

大家好&#xff0c;我在介绍一下我的全新编程语言&#xff0d;卓语言。小卓编程是卓语言的一个开发工具&#xff0c;可以在里面实现绘图、动画、事件响应等等功能。关于中文编程&#xff0c;一直以来都有争议。我针对以往中文编程的缺点而开发了一种全新的编程语言。首先 &…

P5748 集合划分计数(贝尔数/多项式)

P5748 集合划分计数 求解从1到1e5的所有贝尔数&#xff0c;我们可以利用生成函数求解&#xff0c;就是利用指数型生成函数求解 代码细节&#xff1a; 首先虽然exe^xex代表全是1&#xff0c;但是多项式下面还有阶乘逆元的系数&#xff0c;然后乘完之后&#xff0c;我们还有乘…

2019-02-28-算法-进化(盛最多水的容器)

题目描述 给定 n 个非负整数 a1&#xff0c;a2&#xff0c;…&#xff0c;an&#xff0c;每个数代表坐标中的一个点 (i, ai) 。在坐标内画 n 条垂直线&#xff0c;垂直线 i 的两个端点分别为 (i, ai) 和 (i, 0)。找出其中的两条线&#xff0c;使得它们与 x 轴共同构成的容器可以…

CAP 2.6 版本发布通告

前言今天&#xff0c;我们很高兴宣布 CAP 发布 2.6 版本正式版。同时我们也很高兴的告诉你 CAP 在 GitHub 已经突破了3000 Star.自从上次 CAP 2.5 版本发布 以来&#xff0c;已经过去了几个月的时间&#xff0c;关注的朋友可能知道&#xff0c;在这几个月的时间里&#xff0c;也…

皮克定理(题目)

Area 皮克定理&#xff1a;皮克定理是指一个计算点阵中顶点在格点上的多边形面积公式&#xff0c;该公式可以表示为Sab2&#xff0d;1&#xff0c;其中a表示多边形内部的点数&#xff0c;b表示多边形落在格点边界上的点数&#xff0c;S表示多边形的面积。 /*Author : lifehap…

随机算法

概率论基础知识 期望的线性性 马尔可夫不等式 条件概率 独立事件 独立随机变量 随机算法 Las Vegas型随机算法 随机快速排序 随机选择 随机n皇后放置 将确定性算法的某一步修改为随机选择&#xff0c;有可能可以优化算法平均时间下的算法复杂度。 Monte Carlo型算法 主元…

求助:现在有一个可以进体制“养老”的坑,我该不该跳?

对不起&#xff0c;在当下互联网人生活的环境中&#xff0c;并没有可以“养老”的坑。对不起&#xff0c;在当下互联网人生活的环境中&#xff0c;也没有绝对”稳定“的企业。技术人的职业发展&#xff0c;以”适者生存“为核心原则&#xff0c;每一种职业环境都有相应的职业成…

Java修炼之路——基础篇——Java集合类详解2

Set和List区别&#xff1f;Set如何保证元素不重复&#xff1f; Set、List都实现了Collection接口&#xff0c;List是有序的列表&#xff0c;Set是无序的集合&#xff08;TreeSet有序&#xff09; List实现类&#xff1a; ArrayList &#xff1a;基于数组&#xff0c;可动态扩…

Legacy(线段树优化建边跑Dijkstra)

Legacy 线段树优化建边&#xff0c;开两颗线段树&#xff1a; 对于线段树1&#xff0c;自顶向下连边。对于线段树2&#xff0c;自底向上连边。 然后对于op1我们直接连边即可。 对于op2&#xff08;u -> [l, r] cost w&#xff09;&#xff0c;这个操作在线段树1上完成即可…

P5273 【模板】多项式幂函数 (加强版)

P5273 【模板】多项式幂函数 (加强版) 这道题和原来的题目唯一区别就在于这道题没有限制F[0]1&#xff0c;所以我们就不能直接取ln了&#xff0c;但是我们实际上有办法转换一下&#xff0c;让它最低次项为1&#xff0c;只需要除以最后一个非0项即可&#xff0c;然后最后再乘回…

给 asp.net core 写个中间件来记录接口耗时

给 asp.net core 写个中间件来记录接口耗时Intro写接口的难免会遇到别人说接口比较慢&#xff0c;到底慢多少&#xff0c;一个接口服务器处理究竟花了多长时间&#xff0c;如果能有具体的数字来记录每个接口耗时多少&#xff0c;别人再说接口慢的时候看一下接口耗时统计&#x…

2019-03-1-算法-进化(整数转罗马数字)

题目描述 罗马数字包含以下七种字符&#xff1a; I&#xff0c; V&#xff0c; X&#xff0c; L&#xff0c;C&#xff0c;D 和 M。 字符 数值 I 1 V 5 X 10 L 50 C 100 D 500 M …

brz的函数(mobius)

brz的函数 ∑i1n∑j1nμ(ij)假设i,j不互质&#xff0c;一定有μ(ij)0所以上式∑i1n∑j1nμ(ij)[gcd(i,j)1]积性函数性质有μ(ij)μ(i)μ(j)∑i1n∑j1nμ(i)μ(j)[gcd(i,j)1]∑i1n∑j1nμ(i)μ(j)∑d∣gcd(i,j)μ(d)这里我们按照套路把d给提前去&#xff0c;因为i,j都要是d的倍数…

CF1251F Red-White Fence(多项式/背包问题/组合数学)

CF1251F Red-White Fence 现在给出了n个白板&#xff0c;m个红板&#xff0c;然后将其按照题目要求放成一排&#xff0c;要求最终周长为qi的方案数。 首先因为有高度的单调性&#xff0c;所以我们可以直接把周长转化为红板的高度和白板的数量&#xff0c;然后因为红板数量很少…

Java修炼之路——基础篇——枚举

枚举的用法 每个枚举变量其实都是枚举类的一个实例。 枚举与单例 各种模式的单例模式&#xff0c;包括枚举实现的单例 //懒汉模式 class SingletonA {private static SingletonA instance new SingletonA();//保证不能通过new SingletonB的方式创建对象private SingletonA()…