2018年第九届蓝桥杯【C++省赛B组】B、C、D、F、G 题解
B. 明码 #STL
题意
把每个字节转为2
进制表示,1
表示墨迹,0
表示底色。每行2个字节,一共16行,布局是:
第1字节,第2字节
第3字节,第4字节
....
第31字节, 第32字节
给定一段由多个汉字组成的信息,每个汉字用\(32\)个字节表示,这里给出了字节作为有符号整数的值。题目的要求隐藏在这些信息中。你的任务是复原这些汉字的字形,从中看出题目要求,并根据要求填写答案。
分析
注意题目中说明是有符号二进制,也就说如果某个十进制数为负数,则它的二进制为补码(对于负数的补码,最高位为符号位,要取1
,对原码取反再加一)。
题目简而言之,即为每一行有\(32\)个数字,每两个数字组成一行的布局。比如
第一行:4 0 4 0 4 0 4 32 -1 -16 4 32 4 32 4 32 4 32 4 32 8 32 8 32 16 34 16 34 32 30 -64 0
则每两个作为一行,并换算成二进制:
00000100 00000000
00000100 00000000
00000100 00000000
00000100 00100000
11111111 11110000
00000100 00100000
00000100 00100000
00000100 00100000
00000100 00100000
00000100 00100000
00001000 00100000
00001000 00100000
00010000 00100010
00010000 00100010
00100000 00011110
11000000 00000000
每个1组成汉字的笔画,所以这一行的字为“九”
关于十进制对二进制的转换,可以使用STL的bitset
数据结构,十分方便,初始时定义为8位的二进制串,每次输入一个十进制,它就能将该数值转换为二进制串,同时还能将这个二进制串输出来!
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <iostream>
#include <map>
#include <queue>
#include <stack>
#include <string>
#include <cstring>
#include <vector>
#include <cmath>
#include <unordered_map>
#include <set>
#include <cmath>
#include <bitset>
using namespace std;
using ll = long long;
const int MAXN = 1e5 + 5;
const int INF = 0x3f3f3f3f;
int main() {
//打印出来
for(int i = 1; i <= 10; i++){
for(int j = 1; j <= 16; j++){
for(int a = 1; a <= 2; a++){
int tmp; scanf("%d", &tmp);
bitset<8> mybit(tmp);
cout << mybit << ' ';
}
cout << endl;
}
cout << "----------------" << endl;
}
//cout << "九的九次方等于多少?" << endl;
//cout << "387420489" << endl; //最终结果
return 0;
}
C. 乘积尾零 #因数分解
题意
如下的10行数据,每行有10个整数,请你求出它们的乘积的末尾有多少个零?
5650 4542 3554 473 946 4114 3871 9073 90 4329
2758 7949 6113 5659 5245 7432 3051 4434 6704 3594
9937 1173 6866 3397 4759 7557 3070 2287 1453 9899
1486 5722 3135 1170 4014 5510 5120 729 2880 9019
2049 698 4582 4346 4427 646 9742 7340 1230 7683
5693 7015 6887 7381 4172 4341 2909 2027 7355 5649
6701 6645 1671 5978 2704 9926 295 3125 3878 6785
2066 4247 4800 1578 6652 4616 1113 6205 3264 2915
3966 5291 2904 1285 2193 1428 2265 8730 9436 7074
689 5510 8243 6114 337 4096 8199 7313 3685 211
分析
注意审题,题目要求的是乘积结果的尾部,也就说它并不是问你乘积结果整个数字含有多少个零!(如果是求这个的话,难度++)
观察到,乘积结果的尾部有\(x\)个\(0\),说明该乘积结果含有\(x\)个因子\(10\),也就说至少含有\(x\)个因子\(5\)和\(x\)个因子\(2\)(多余的因子成单,没有与之对应的因子进行配对),由此我们可以将所有数中的因子\(5\)和\(2\)分解出来,统计含\(2\)和\(5\)的因子数量并取两者最少值,即能推出乘积结果尾部\(0\)的数量。
举个栗子,对于\(1050=2\times3\times7\times5\times5\)(含两个\(5\),一个\(2\)),而\(180=9\times2\times2\times5\)(含一个\(5\),两个\(2\)),则他们的乘积为\(1050\times180=189000=(9\times3\times7)\times(5\times2)\times(5\times2)\times(5\times2)\)(即三对\(5\times2\)构成尾部的三个\(0\))
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <iostream>
#include <map>
#include <queue>
#include <stack>
#include <string>
#include <cstring>
#include <vector>
#include <cmath>
#include <unordered_map>
#include <set>
#include <cmath>
#include <bitset>
using namespace std;
using ll = long long;
const int MAXN = 1e5 + 5;
const int INF = 0x3f3f3f3f;
int ResoluteNumber(int cur, int base){
int res = 0; //统计数cur中含有多少个base因子
while(cur % base == 0){
res ++;
cur /= base;
}
return res;
}
int num_2, num_5;
int main(){
freopen("C:\\Learning\\data.in", "r", stdin);
for(int i = 1, tmp; i <= 100; i++){
scanf("%d", &tmp);
num_2 += ResoluteNumber(tmp, 2); //统计tmp含有多少个2因子
num_5 += ResoluteNumber(tmp, 5); //统计tmp含有多少个5因子
}
printf("%d\n", min(num_2, num_5));
//printf("31\n"); //最终结果
return 0;
}
D. 测试次数 #记忆化搜索 #动态规划
迟一点再更
普通记忆化搜索
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <iostream>
#include <map>
#include <queue>
#include <stack>
#include <string>
#include <cstring>
#include <vector>
#include <cmath>
#include <unordered_map>
#include <set>
#include <cmath>
#include <bitset>
using namespace std;
using ll = long long;
const int MAXN = 1e5 + 5;
const int INF = 0x3f3f3f3f;
int dp[1005][4], n = 1000, m = 3;
int DFS(int floor, int num){
if(num == 0) return 0;
if(num == 1 || floor <= 1) return floor;
if(dp[floor][num] < INF) return dp[floor][num];
int ans = 0x3f3f3f3f;
for(int i = 1; i <= floor; i++){
int badcase = max(DFS(i - 1, num - 1), DFS(floor - i, num));
ans = min(ans, badcase + 1);
}
return dp[floor][num] = ans;
}
int main(){
memset(dp, 0x3f, sizeof(dp));
printf("%d\n", DFS(n, m));
}
记忆化搜索+二分思想+哈希表 过大数据
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <iostream>
#include <map>
#include <queue>
#include <stack>
#include <string>
#include <cstring>
#include <vector>
#include <cmath>
#include <unordered_map>
#include <set>
#include <cmath>
#include <bitset>
using namespace std;
using ll = long long;
const int MAXN = 1e5 + 5;
const int INF = 0x3f3f3f3f;
int n = 1000, m = 3;
unordered_map<ll, int> dp;
int DFS(int floor, int num){
if(num == 0) return 0;
if(num == 1 || floor <= 1) return floor;
if(dp.find(1LL * floor * 10005 + (ll)num) != dp.end()) return dp[1LL * floor * 10005 + (ll)num];
int ans = 0x3f3f3f3f, lo = 1, hi = floor + 1;
while(lo < hi){
int mid = (lo + hi) >> 1;
int rev_1 = DFS(mid - 1, num - 1);
int rev_2 = DFS(floor - mid, num);
if (rev_1 < rev_2) lo = mid + 1;
else hi = mid;
}
int badcase_1 = max(DFS(lo - 1, num - 1), DFS(floor - lo, num));
int badcase_2 = max(DFS(hi - 1, num - 1), DFS(floor - hi, num));
ans = 1 + min(badcase_1, badcase_2);
return dp[1LL * floor * 10005 + (ll)num] = ans;
}
int main(){
printf("%d\n", DFS(n, m));
}
F. 递增三元组 #二分思想 #前缀和
题意
给定三个整数数组A = [A1, A2, ... AN]
, B = [B1, B2, ... BN]
,
C = [C1, C2, ... CN]
(\(N\leq1e5\)),请你统计有多少个三元组$(i, j, k) $同时满足:
\(1 \leq i, j, k \leq N\)
\(A_i < B_j < C_k\)
分析
不妨对这三个整数数组先升序排序,我们知道,要确定一个三元组\((i,j,k)\),那么可以先从\(A\)中取一个元素\(a_i\),再从\(B\)中找出第一个大于等于\(a_i\)的元素\(b_j\),同理再从\(C\)中找出第一个大于等于\(b_j\)的元素\(c_k\)。但如果这样直接枚举每个\(i,j,k\)一定会超时。
我们枚举每个\(b_j\),通过二分确定了第一个\(c_k\)的位置\(pos\),可以知道有\((n-pos)\)个C数组元素,大于等于\(b_j\)。我们在枚举\(b_j\)并确定\(pos\)的过程中,同时用前缀和维护前\(j\)个元素\(b_j\),有多少个小于C数组的元素(\(sum[j]=\sum_{1}^j{n-pos}\))。
接着,枚举每个$ a_i\(,通过二分确定了第一个\)b_j\(的位置\)posB\(,查询\)sum[n]-sum[posB]$,可以知道满足题目要求的三元组个数。
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <iostream>
#include <map>
#include <queue>
#include <stack>
#include <string>
#include <cstring>
#include <vector>
#include <cmath>
#include <unordered_map>
#include <set>
#include <cmath>
#include <bitset>
using namespace std;
using ll = long long;
const int MAXN = 1e5 + 5;
const int INF = 0x3f3f3f3f;
int a[MAXN], b[MAXN], c[MAXN];
ll ans = 0, sumFromB[MAXN],sum[MAXN]; //sumFromB[i]表示,对于B数组中第i个元素bi,在C数组中大于等于它的元素数量。
int main(){
int n; scanf("%d", &n);
for(int i = 1; i <= n; i++) scanf("%d", &a[i]);
for(int i = 1; i <= n; i++) scanf("%d", &b[i]);
for(int i = 1; i <= n; i++) scanf("%d", &c[i]);
sort(a+1, a+1+n); sort(b+1, b+1+n); sort(c+1, c+1+n);
for(int i = 1; i <= n; i++){
int posC = upper_bound(c+1, c+1+n, b[i]) - c; //通过二分,从C数组中找到第一个大于等于bi的元素位置pos
sumFromB[i] = n - posC + 1; //说明C数组中[pos, n]的元素,都满足大于等于bi。
}
for(int i = 1; i <= n; i++){
sum[i] = sum[i - 1] + sumFromB[i]; //前缀和,对于B数组前i个元素,统计大于等于它们的C数组元素个数
}
for(int i = 1; i <= n; i++){
int posB = upper_bound(b+1, b+1+n, a[i]) - b;//通过二分,从C数组中找到第一个大于等于ai的元素位置posB
ans += (sum[n] - sum[posB - 1]); //利用前缀和,求出[posB,n]中满足三元组的个数
}
printf("%lld\n", ans);
return 0;
}
G. 螺旋折线 #性质观察 #等差数列
题意
如下图所示的螺旋折线经过平面上所有整点恰好一次,对于整数点\((x,y)\)(\(-1e9\leq x, y\leq 1e9\)),定义它到原点的距离:\(dix(x,y)\),为从原点到\((x, y)\)的螺旋折线段的长度。
分析
一开始我按路径递增去模拟,只要转向次数为偶数次,就对前进长度+1,但还是超时,下面就是我的75分qaq。
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <iostream>
#include <map>
#include <queue>
#include <stack>
#include <string>
#include <cstring>
#include <vector>
#include <cmath>
#include <unordered_map>
#include <set>
#include <cmath>
#include <bitset>
using namespace std;
using ll = long long;
const int MAXN = 1e5 + 5;
const int INF = 0x3f3f3f3f;
ll dx[] = { 0, -1, 0, 1, 0 };
ll dy[] = { 0, 0, 1, 0, -1 };
int main() {
ll len = 0, sum = 0;
ll cur_x = 0, cur_y = 0;
ll des_x = 0, des_y = 0;
scanf("%lld%lld", &des_x, &des_y);
int t = 0;
while (1) {
t++; if (t > 4) t = 1;
if ((t - 1) % 2 == 0) len++;
ll step = len;
if (abs(des_y - cur_y) == 0) {
if((cur_x < des_x && des_x < cur_x + step * dx[t]) ||
(cur_x > des_x && des_x > cur_x + step * dx[t]) )
step = min(step, (ll)abs(des_x - cur_x));
}
else if (abs(des_x - cur_x) == 0) {
if ((cur_y < des_y && des_y < cur_y + step * dy[t]) ||
(cur_y > des_y && des_y > cur_y + step * dy[t]))
step = min(step, (ll)abs(des_y - cur_y));
}
cur_x += step * dx[t];
cur_y += step * dy[t];
sum += step;
if (cur_x == des_x && cur_y == des_y) break;
}
printf("%lld\n", sum);
return 0;
}
参考了@虎老狮的思路。我们可以将折线每一行的左下角长度为\(1\)的线段顺时针旋转90度(见下图),于是螺旋折线就变成长度易求的正方形环条了。于是点在螺旋折线上的移动就转化为一个点从每一个正方形环的左下角作为起点,顺时针移动,移动整一个环后,便直接跳到下一个更长的正方形环的左下角起点,…. 。容易观察到每一条正方形环的周长组成了以0为首项(即第一个正方形环是空的),以8为公差的等差数列。
如上图,我们假设点A\((x_i,y_i)\)在该正方形对角线上侧,那么题目要求的\(dis(x_i, y_i)\),实际上就是(第三条边左下角起点出发到达点\((x_i,y_i)\)的距离)+(不包括第三条边的内部正方形的周长之和)。由等差数列求和公式,内部边的长度之和就是\(S_i = \frac{(0 + (i-1)\times8)\times(i-1)}{2}\)。第三条边左下角起点出发到达点\((x_i,y_i)\)的距离,就是\((i+x_i)+(i+y_i)\)。如果是位于正方形对角线下侧的点B\((x_j,y_j)\),它需要用第三条边的周长减去\((j+x_j)+(j+y_j)\)
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <iostream>
#include <map>
#include <queue>
#include <stack>
#include <string>
#include <cstring>
#include <vector>
#include <cmath>
#include <unordered_map>
#include <set>
#include <cmath>
#include <bitset>
using namespace std;
using ll = long long;
const int MAXN = 1e5 + 5;
const int INF = 0x3f3f3f3f;
ll des_x, des_y, ans;
int main(){
scanf("%lld%lld", &des_x, &des_y);
ll n = max(abs(des_x), abs(des_y));
ll innerSqure = 4 * 1LL * (n - 1) * n;// = (0 + (n - 1) * 8) * (n - 1) / 2;
ll dis_x = n + des_x, dis_y = n + des_y;
if(des_y >= des_x)
ans += (dis_x + dis_y);
else
ans += (8 * 1LL * n - dis_x - dis_y);
printf("%lld\n", ans + innerSqure);
return 0;
}
2018年第九届蓝桥杯【C++省赛B组】B、C、D、F、G 题解的更多相关文章
- 关于2018年第九届蓝桥杯[C++省赛B组][第四题:测试次数]的疑问
题目来源:https://blog.csdn.net/qq_34202873/article/details/79784548 #标题:测试次数#x星球的居民脾气不太好,但好在他们生气的时候唯一的异常 ...
- 2018年第九届蓝桥杯B组题C++汇总解析-fishers
2018年第九届蓝桥杯B组题C++解析-fishers 题型 第一题:第几天 第二题:明码 第三题:乘积尾零 第四题:测试次数 第五题:快速排序 第六题:递增三元组 第七题:螺旋折线 第八题:日志统计 ...
- 2018年第九届蓝桥杯题目(C/C++B组)汇总
第一题 标题:第几天 2000年的1月1日,是那一年的第1天. 那么,2000年的5月4日,是那一年的第几天? 注意:需要提交的是一个整数,不要填写任何多余内容. 解题思路: 1. 判断2月有几天, ...
- 2018第九届蓝桥杯决赛(C++ B组)
逛了大半个北京还是挺好玩de 第一题 标题:换零钞 x星球的钞票的面额只有:100元,5元,2元,1元,共4种. 小明去x星旅游,他手里只有2张100元的x星币,太不方便,恰好路过x星银行就去换零钱. ...
- 2018年第九届蓝桥杯B组第四题:摔手机题解
摔手机 摔手机 动态规划 在蓝桥杯的时候遇到一次 当时没有做对 看了题解也没明白 如今再次遇到这个类似的题目 于是拿出来补补吧 摔手机题目如下: 星球的居民脾气不太好,但好在他们生气的时候唯一的 ...
- 2018年第九届蓝桥杯国赛总结(JavaB组)
懒更,之前的删了补一个国赛总结 记yzm10的第一次国赛(赛点:首都经贸大学) 第一次就拿到了国一,运气不要太好~(同组lz学长豪取国特orz) 从省赛一路水过来,总算有了点成绩.其实最后一题有些遗憾 ...
- 2018年第九届蓝桥杯【C++省赛B组】(未完)
第一题 标题:第几天 2000年的1月1日,是那一年的第1天. 那么,2000年的5月4日,是那一年的第几天? 注意:需要提交的是一个整数,不要填写任何多余内容 利用excel更加快捷: 答案是125 ...
- 2018年第九届蓝桥杯【C++省赛B组】
2标题:明码 汉字的字形存在于字库中,即便在今天,16点阵的字库也仍然使用广泛.16点阵的字库把每个汉字看成是16x16个像素信息.并把这些信息记录在字节中. 一个字节可以存储8位信息,用32个字节就 ...
- 2018年第九届蓝桥杯C/C++A组省赛(最后一题)
第十题 付账问题 [题目描述] 几个人一起出去吃饭是常有的事.但在结帐的时候,常常会出现一些争执. 现在有 n 个人出去吃饭,他们总共消费了 S 元.其中第 i 个人带了 ai 元.幸 ...
- 2018年第九届蓝桥杯【C++省赛B组】【第二题:明码】
参考:https://blog.csdn.net/qq_34202873/article/details/79784242 #include <bits/stdc++.h> using n ...
随机推荐
- Flutter 1.22版本新增的Button
Flutter 1.22版本新增了3个按钮,TextButton.OutlinedButton.ElevatedButton,虽然以前的Button没有被废弃,但还是建议使用新的Button. 为什么 ...
- 从小白到 6 个 offer,我究竟是怎么刷题的?
最近自习室里又兴起了一阵刷题潮,大家相约刷题~ 今天和大家系统分享下我去年转行时的一个刷题过程和方法,希望对你有所帮助. 首先介绍下我的编程基础,我学的是金融工程专业,硕士时学过 C++ 的课,这也是 ...
- 深入web workers (上)
前段时间,为了优化某个有点复杂的功能,我采用了shared workers + indexDB,构建了一个高性能的多页面共享的服务.由于是第一次真正意义上的运用workers,比以前单纯的学习有更多体 ...
- Go语言如何像foreach一样有序遍历map
目录 问题 解决 给key排序思路 开源实现 问题 Go语言的Map是无序遍历的,遍历一个map代码如下 package main import ( "fmt" ) func ma ...
- 随笔1.流程控制--if
# 流程控制--if `-*- coding:utf-8 -*- #定义字符编码`## 1.判断条件if```python age = input("输入年龄:") #将交互式输入 ...
- Pandas_VBA_数据分类比较
Python与VBA的比较2 需求: input文件中有两列数据,第一列为Name,第二列为Score,Name列里有重复的值,要求按照name的唯一值统计 score,输出到output文件按中. ...
- 浮动布局问题多,还是用inline-block吧
说说知识陈旧的问题. 目前我的前端开发知识积累最大的问题就是版本问题,也许我已经经历了很多,尝试了很多, 但是有些知识的版本已经过时了,而我还没有来得及更新它们.更悲剧的可能是有些部分我还没有意识到. ...
- VMware虚拟机 - 解决 Vmware 启动虚拟机报:该虚拟机似乎正在使用中。 如果该虚拟机未在使用,请按“获取所有权(T)”按钮获取它的所有权。否则,请按“取消(C)”按钮以防损坏的问题
问题背景 当虚拟机仍然在运行时,直接关闭电脑,下次重开电脑并想重新启动虚拟机时报了下图问题 解决方案 进入虚拟机所在目录,把 .lck 后缀的文件都删完 Vmware 重新启动虚拟机 成功!!
- Difference between skbuff frags and frag_list
skb_shinfo(head)->frag_list skb_shinfo(head)->frags[]能区分开来吗???结论就是: frags[] are for scatter-ga ...
- binary hacks读数笔记(堆、栈 VMA的分布)
一.首先看一个简单的程序: #include<stdlib.h> int main() { while(1) { sleep(1000); } return 0; } gcc -stati ...