2023第十四届蓝桥杯C++B组题目解析

起因

24年蓝桥杯将至,把去年题复习一遍。emmm,其实是有一个很厉害的学妹说“要被圈钱杯把钱圈光了”。
现在只是初稿,如果有需要细写解析的可以在下面评论,欢迎留言。

日期统计

#include<bits/stdc++.h>
typedef  long long LL ;
const int N = 1e5 + 10 , INF = 1e9 + 7 ;
using namespace  std ;
int  n , m ;int date[ 618 ] = {5, 6, 8, 6, 9, 1, 6, 1, 2, 4, 9, 1, 9, 8, 2, 3, 6, 4, 7, 7,5, 9, 5, 0, 3, 8, 7, 5, 8, 1, 5, 8, 6, 1, 8, 3, 0, 3, 7, 9,2, 7, 0, 5, 8, 8, 5, 7, 0, 9, 9, 1, 9, 4, 4, 6, 8, 6, 3, 3,8, 5, 1, 6, 3, 4, 6, 7, 0, 7, 8, 2, 7, 6, 8, 9, 5, 6, 5, 6,1, 4, 0, 1, 0, 0, 9, 4, 8, 0, 9, 1, 2, 8, 5, 0, 2, 5, 3, 3
};
int monthNum[ 13 ] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
};void AC(){LL ans = 0;for (int month = 1 ; month <= 12 ; ++month) {for (int day = 1 ; day <= monthNum[ month ] ; ++day ) {int realdate[ 8 ] = {2, 0, 2, 3, month / 10, month % 10, day / 10, day % 10};int k = 0;for (int i = 0; i < 100; ++i) {if ( date[ i ] == realdate[ k ] ) {++k;if ( k == 8 ) {ans++;break;}}}}}cout << ans << endl;
}int main(){ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);int t  = 1 ;//cin >> t ;while( t-- ){AC();}return 0 ;
}

01串的熵

#include<bits/stdc++.h>
typedef  long long LL ;
const int N = 1e5 + 10 , INF = 1e9 + 7 ;
const double ans = 11625907.5798 , eps = 1e-2 ;
using namespace  std ;
int  n , m ;void AC(){n = 23333333 ;for( int i = 0 ; i <= n / 2 ; i ++ ){ // i 对应0的个数double nn = n ; // 强转n的类型double sum = i * ( i / nn ) * log2( i / nn ) + ( nn - i )*( ( nn - i ) / nn ) * log2( ( nn - i ) / nn );sum = -sum ;//cout << "su m= " << sum << endl;if( abs( sum - ans ) <= eps ){cout << i << endl;return ;}}
}int main(){ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);int t  = 1 ;//cin >> t ;while( t-- ){AC();}return 0 ;
}

冶炼金属

#include<bits/stdc++.h>
typedef  long long LL ;
const int N = 1e5 + 10 , INF = 1e9 + 7 ;
const double ans = 11625907.5798 , eps = 1e-2 ;
using namespace  std ;
int  n , m ;void AC(){cin >> n ;int mx = INF , mn = 1 ;for( int i = 1 ; i <= n ; i++ ){int x , y ; cin >> x >> y ;mx = min( mx , x / y ) ;mn = max( mn , ( x / ( y + 1 ) ) + 1 ) ;}cout << mn << " " << mx << endl;
}int main(){ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);int t  = 1 ;//cin >> t ;while( t-- ){AC();}return 0 ;
}

飞机降落

#include<bits/stdc++.h>
typedef  long long LL ;
const int N = 1e5 + 10 , INF = 1e9 + 7 ;
const double ans = 11625907.5798 , eps = 1e-2 ;
using namespace  std ;
int  n , m ;
struct op{int st , ed , cont ;
}f[ 15 ];
bool vis[ 15 ] , fg ;void dfs( int cnt , int now_time ){if( cnt == n || fg ){fg = true ;return ;}for( int i = 1 ; i <= n ; i++ ){if( !vis[ i ] && now_time <= f[ i ].ed ){vis[ i ] = true ;dfs( cnt + 1 , max( now_time , f[ i ].st  ) + f[ i ].cont ) ;vis[ i ] = false ;}}
}void AC(){cin >> n ;for( int i = 1 ; i <= n ; i++ ){cin >> f[ i ].st >> f[ i ].ed >> f[ i ].cont ;f[ i ].ed += f[ i ].st ;}fg = false ;dfs(  0 , 0 ) ;if( fg ){cout << "YES\n";}else{cout << "NO\n";}
}int main(){ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);int t  = 1 ;cin >> t ;while( t-- ){AC();}return 0 ;
}

接龙序列

#include<bits/stdc++.h>
typedef  long long LL ;
const int N = 1e5 + 10 , INF = 1e9 + 7 ;
const double ans = 11625907.5798 , eps = 1e-2 ;
using namespace  std ;
int  n , m ;
int dp[ 15 ] ;
void AC(){cin >> n ;int ans = 0 ; string s ;for( int i = 1 ; i <= n ;i ++ ){cin >> s ;int pre = s[ 0 ] , hou = s[ (int)s.size() - 1 ] ;dp[ hou ] = max( dp[ hou ] , dp[ pre ] + 1 ) ;ans = max( ans , dp[ hou ] ) ;}cout << n - ans << endl ;return ;
}int main(){ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);int t  = 1 ;//cin >> t ;while( t-- ){AC();}return 0 ;
}

岛屿个数

这题不想写,暂时套用别人代码() 。

#include <bits/stdc++.h>
#define MAX 51
using namespace std;
int T,m,n;
int vis[MAX][MAX],used[MAX][MAX];
int dx[]={1,-1,0,0,1,1,-1,-1};
int dy[]={0,0,1,-1,1,-1,1,-1};
string mp[MAX];
void bfs_col(int x,int y){queue<int>qx,qy;qx.push(x);qy.push(y);vis[x][y]=1;while(!qx.empty()){x=qx.front();qx.pop();y=qy.front();qy.pop();for(int i=0;i<4;i++){int nx=x+dx[i];int ny=y+dy[i];if(nx<0||ny<0||nx>m-1||ny>n-1||vis[nx][ny]==1||mp[x][y]=='0') continue;qx.push(nx);qy.push(ny);vis[nx][ny]=1;}}
}
bool bfs_out(int x,int y){for(int i=0;i<m;i++){for(int j=0;j<n;j++){used[i][j]=0;}}queue<int>qx,qy;qx.push(x);qy.push(y);used[x][y]=1;while(!qx.empty()){x=qx.front();qx.pop();y=qy.front();qy.pop();if(x==0||x==m-1||y==0||y==n-1) return true;for(int i=0;i<8;i++){int nx=x+dx[i];int ny=y+dy[i];if(nx<0||ny<0||nx>m-1||ny>n-1||used[nx][ny]==1||mp[nx][ny]=='1') continue;qx.push(nx);qy.push(ny);used[nx][ny]=1;}}return false;
}
void solve(){int ans=0;cin>>m>>n;for(int i=0;i<m;i++){cin>>mp[i];  for(int j=0;j<n;j++){vis[i][j]=0;}}for(int i=0;i<m;i++){for(int j=0;j<n;j++){if(!vis[i][j]&&mp[i][j]=='1'){bfs_col(i,j);if(bfs_out(i,j)) ans++;}}}cout<<ans<<'\n';
}
int main(){ios::sync_with_stdio(0);cin.tie(0);int T;cin>>T;while(T--)    solve();return 0;
}

子串简写

#include<iostream>
#include<cmath>
#include<cstring>
#include<algorithm>
using namespace std;
const int N = 5e5+10;
int k;
int cntb[N]; 
string a;
char x,y;int main()
{int cnta = 0;cin >> k;cin >> a >> x >> y;cntb[a.size()] = 0;for(int i = a.size()-1; i >= 0; i--){cntb[i] = cntb[i+1];        //cntb[i]来统计包括下标i及之后给出字母y的个数if(a[i] == y){cntb[i] ++;}}long long ans = 0;for(int i = 0; i < a.size(); i++){if(a[i] == x && i+k-1 <= a.size()-1 )   //如果这个a[i]==x  那就看它i+k-1及后面有多少个y,及是cntb[i+k-1]。{ans += cntb[i+k-1];}                //还可以统计一下x的个数,如果没有x了,就可以直接跳出循环。}cout << ans <<endl;    //输出结果return 0;
}

整数删除

#include<bits/stdc++.h>
typedef  long long LL ;
const int N = 5e5 + 10 , INF = 1e9 + 7 ;
using namespace  std ;
LL  n , m , k , l[ N ] , r[ N ] , ans[ N ] , ad[ N ] ;
struct op{LL num , pos ;bool operator < ( const op& now )const{if( num == now.num ){return pos > now.pos ;}return num > now.num ;}
};
priority_queue< op > qu;void AC(){cin >> n >> k ;for( int i = 1; i <= n ; i ++ ){int x ; cin >> x ;l[ i ] = i - 1 ; r[ i ] = i + 1 ;qu.push( { x , i } ) ;}while( (int)qu.size() > n - k ){auto [ x , y ] = qu.top() ; qu.pop() ;if( ad[ y ] ){qu.push( { x +ad[ y ] , y } ) ;ad[ y ] = 0 ;}else{LL nl = l[ y ] , nr = r[ y ] ;ad[ nl ] += x ; ad[ nr ] += x ;l[ nr ] = nl , r[ nl ] = nr ;}}while( (int)qu.size() ){auto[ x , y ] = qu.top() ; qu.pop() ;ans[ y ] = x + ad[ y ] ;}for( LL i = 1 ; i <= n ; i++ ){if( ans[ i ] ) cout << ans [ i ] << " " ;}return ;
}int main(){ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);int t  = 1 ;//cin >> t ;while( t-- ){AC();}return 0 ;
}

景区导游(挂)

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
const ll N=1e5+9,P=1e9+7,inf=2e18;
ll n,k,u,v,t,a[N],dep[N],dist[N],fa[N][18],sum;
vector<pair<ll,ll>> g[N];void dfs(ll x,ll p,ll d){fa[x][0]=p;dist[x]=d;for(int i=1;i<=17;++i){fa[x][i]=fa[fa[x][i-1]][i-1];}for(int i=0;i<=g[x].size()-1;++i){if(g[x][i].first==p)continue;dep[g[x][i].first]=dep[x]+1;dfs(g[x][i].first,x,d+g[x][i].second);}
}
ll lca(ll u,ll v){if(dep[u]<dep[v])swap(u,v);for(int i=17;i>=0;--i){if(dep[fa[u][i]]>=dep[v]) u=fa[u][i];}for(int i=17;i>=0;--i){if(fa[u][i]!=fa[v][i])u=fa[u][i],v=fa[v][i];}if(u==v)return u;return fa[u][0];
}
ll getd(ll u,ll v){return dist[u]+dist[v]-dist[lca(u,v)]*2;
}
int main(){ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);cin>>n>>k;for(int i=1;i<=n-1;++i){cin>>u>>v>>t;g[u].push_back({v,t});g[v].push_back({u,t});}dfs(1,0,0);for(int i=1;i<=k;++i)cin>>a[i];//for(int i=1;i<=n;++i){//    cout<<dep[i]<<' '<<dist[i]<<'\n';//}for(int i=1;i<=k-1;++i){sum+=getd(a[i],a[i+1]);}//cout<<sum;for(int i=1;i<=k;++i){ll _sum=sum;if(i!=k)_sum-=getd(a[i],a[i+1]);if(i!=1)_sum-=getd(a[i-1],a[i]);if(i!=1&&i!=k)_sum+=getd(a[i-1],a[i+1]);cout<<_sum<<' ';}return 0;
}

砍树(挂)

#include <bits/stdc++.h>
#define x first
#define y second
using namespace std;typedef long long i64;
typedef array<int, 3> arr;
typedef pair<int, int> PII;const int N = 1e5 + 10;int n, m;
vector<PII> e[N];
int l[N], r[N], id[N];
int sz[N], hs[N], tot, top[N], dep[N], fa[N];
int cnt[N], s[N];// 第一遍DFS,子树大小,重儿子,父亲,深度
void dfs1(int u,int f) {sz[u] = 1;hs[u] = -1;fa[u] = f;dep[u] = dep[f] + 1;for (auto [v, id] : e[u]) {if (v == f) continue;dfs1(v, u);sz[u] += sz[v];if (hs[u] == -1 || sz[v] > sz[hs[u]])hs[u] = v;}
}// 第二遍DFS,每个点DFS序,重链上的链头的元素。
void dfs2(int u, int t) {top[u] = t;l[u] = ++tot;id[tot] = u;if (hs[u] != -1) {dfs2(hs[u], t);}for (auto [v, id] : e[u]) {if (v != fa[u] && v != hs[u]) {dfs2(v, v);}}r[u] = tot;
}int LCA(int u, int v) {while (top[u] != top[v]) {if (dep[top[u]] < dep[top[v]]) v = fa[top[v]];else u = fa[top[u]];}if (dep[u] < dep[v]) return u;else return v;
}void dfs_cal(int u, int f) {for (auto [v, id] : e[u]) if (v != f) {dfs_cal(v, u);cnt[id] = s[v];s[u] += s[v];}
}signed main() {cin.tie(nullptr)->ios::sync_with_stdio(false);cin >> n >> m;for (int i = 1; i < n; i++) {int u, v; cin >> u >> v;e[u].push_back({v, i});e[v].push_back({u, i});}dfs1(1, 0);dfs2(1, 1);for (int i = 1; i <= m; i++) {int u, v; cin >> u >> v;int lca = LCA(u, v);s[u]++, s[v]++, s[lca] -= 2;}dfs_cal(1, 0);int ans = -1;for (int i = 1; i <= n - 1; i++) if (cnt[i] == m) {ans = max(i, ans);}cout << ans << '\n';return 0;    
}

end—

经验总结,注意数据范围,改开longlong就开,不会就暴力,不会就暴力。
希望大家不要收到“喜报”。

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

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

相关文章

Java中的面向对象编程有三个重要的属性:封装(Encapsulation)、继承(Inheritance)和多态(Polymorphism)

封装&#xff08;Encapsulation&#xff09;&#xff1a;封装是面向对象编程的一个基本理念&#xff0c;它将数据和对数据的操作封装在一个类中&#xff0c;并通过类的访问修饰符来控制对数据的访问。封装的目的是隐藏实现细节&#xff0c;使得类的使用者无需关心内部的具体实现…

VUE pc端+移动端上传录音并上传(recorder-core)

首先安装 npm install recorder-core 以下录音组件完整代码可复用 <template><div><div><imgv-if"!isSound"src"/assets/images/mobile/mobileDoWork/answer_question_voice_icon.png"alt""click"recStart"/>…

今天聊聊Docker

在数字化时代&#xff0c;软件应用的开发和部署变得越来越复杂。环境配置、依赖管理、版本控制等问题给开发者带来了不小的挑战。而Docker作为一种容器化技术&#xff0c;正以其独特的优势成为解决这些问题的利器。本文将介绍Docker的基本概念、优势以及应用场景&#xff0c;帮…

1.4.2 练习

一、颠倒三角形 题目&#xff1a;修改顶点着色器让三角形上下颠倒 更改顶点着色器代码如下&#xff1a; #version 330 corelayout (location 0) in vec3 aPos; //位置变量的属性位置值为0 layout (location 1) in vec3 aColor; //颜色变量的属性位置值为1out vec3 ourColo…

项目配置之道:优化Scrapy参数提升爬虫效率

前言 在当今信息时代&#xff0c;数据是无处不在且无比重要的资源。为了获取有效数据&#xff0c;网络爬虫成为了一项至关重要的技术。Scrapy作为Python中最强大的网络爬虫框架之一&#xff0c;提供了丰富的功能和灵活的操作&#xff0c;让数据采集变得高效而简单。本文将以爬…

线程和进程有什么区别?

1、典型回答 进程&#xff08;Process&#xff09;和线程&#xff08;Thread&#xff09;是操作系统中两个重要的概念&#xff0c;都是用来执行任务的&#xff0c;它们的定义如下&#xff1a; 进程是指计算机中正在运行的程序的实例。每个进程都有自己的地址空间、内存、文件…

生成词云...

import wordcloud import jieba import PIL import numpy as np import matplotlib.pyplot as plt import jieba.analyse image_background PIL.Image.open(/home/back/pythonclass/11.jpg) #遮罩 MASK np.array(image_background) txtopen("/home/back/pythoncla…

如何本地部署Imagewheel并实现无公网IP远程连接打造个人云图床

文章目录 1.前言2. Imagewheel网站搭建2.1. Imagewheel下载和安装2.2. Imagewheel网页测试2.3.cpolar的安装和注册 3.本地网页发布3.1.Cpolar临时数据隧道3.2.Cpolar稳定隧道&#xff08;云端设置&#xff09;3.3.Cpolar稳定隧道&#xff08;本地设置&#xff09; 4.公网访问测…

Mysql数据库——数据备份与恢复

目录 一、数据备份的重要性 二、数据库备份的分类 1.从物理与逻辑的角度分类 2.从数据库的备份策略角度&#xff0c;备份可分为 2.1完全备份 2.2差异备份 2.3增量备份 2.4总结 三、常见的备份方法 四、Mysql数据库完全备份 1.完全备份定义 2.优缺点 3.数据库完全备…

2024南京人工智能展会:定于2024年11月份在南京国际博览中心举行

2024南京国际人工智能展览会&#xff0c;拟定于2024年11月份在南京国际博览中心隆重召开。这一盛大的科技盛宴&#xff0c;无疑将为全球人工智能领域注入新的活力&#xff0c;推动科技创新与社会进步。 此次展览会将以“智能未来&#xff0c;共创辉煌”为主题&#xff0c;汇聚全…

Hbase 王者荣耀数据表 HBase常用Shell命令

大数据课本&#xff1a; HBase常用Shell命令 在使用具体的Shell命令操作HBase数据之前&#xff0c;需要首先启动Hadoop&#xff0c;然后再启动HBase&#xff0c;并且启动HBase Shell&#xff0c;进入Shell命令提示符状态&#xff0c;具体命令如下&#xff1a; $ cd /usr/local…

解决论文中插入图片显示不完整

点击图片-开始&#xff0c;找到段落中右下角 将行距改为单倍行距

CDP7 下载安装 Flink Percel 包

下载链接&#xff1a;https://www.cloudera.com/downloads/cdf/csa-trial.html 点击后选择版本&#xff0c; 然后点击download now&#xff0c;会有一个协议&#xff0c;勾选即可&#xff0c;然后就有三个文件列表&#xff0c; 我这里是已经注册登录的状态&#xff0c;如果没…

链式二叉树经典OJ题目(一)

目录 结构体声明&#xff1a; 1.单值二叉树 题目描述&#xff1a; 思路分析&#xff1a; 源码&#xff1a; 2.二叉树最大深度 题目描述&#xff1a; 思路分析&#xff1a; 源码&#xff1a; 3.检查两棵树是否相同 题目描述&#xff1a; 思路分析&#xff1a; 源码…

YOLOv9改进策略:卷积魔改 | SCConv:空间和通道重建卷积,即插即用,助力检测 | CVPR2023

&#x1f4a1;&#x1f4a1;&#x1f4a1;本文改进内容&#xff1a; CVPR2023 SCConv 由两个单元组成&#xff1a;空间重建单元&#xff08;SRU&#xff09;和通道重建单元&#xff08;CRU&#xff09;。 SRU利用分离重建方法来抑制空间冗余&#xff0c;而CRU使用分割-变换-融…

Linux文件系列:磁盘,文件系统,软硬链接

Linux文件系列:磁盘,文件系统,软硬链接 一.磁盘相关知识1.磁盘机械构成2.磁盘物理存储3.磁盘逻辑存储1.LBA地址2.磁盘的分区和分组 二.文件系统和inode1.inode结构体2.文件系统1.Super Block(超级块)2.Group Descriptor Table(块组描述表GDT)3.inode Table4.Data Blocks5.Block…

mysql面试,事务四大特性,mvcc版本控制,3个重要日志,索引结构,索引失效,innodb引擎执行流程,主从复制,锁,page页

大纲 事务4大特性 https://blog.csdn.net/king_zzzzz/article/details/136699546 Mvcc多版本控制 https://blog.csdn.net/king_zzzzz/article/details/136699546 3个重要日志 https://blog.csdn.net/king_zzzzz/article/details/136868343 索引 mysql 索引&#xff08;…

使用Docker搭建Logstash

使用Docker搭建Logstash Logstash是一个开源的服务器端数据处理管道&#xff0c;它能够接收来自多个来源的数据&#xff0c;转换数据&#xff0c;然后将数据发送到您指定的目的地。使用Docker搭建Logstash是一个简单、高效的方式。本教程将分别介绍如何通过Docker CLI和Docker…

家用智能洗地机哪个牌子好?4款型号让你解锁高效省力生活体验

在今天的社会中&#xff0c;随着生活节奏的加快&#xff0c;人们对于家庭清洁的需求不断增加。传统的清洁方法已经无法满足现代家庭的需求。因此&#xff0c;洗地机作为一种高效、方便的清洁工具&#xff0c;已经成为了许多家庭首选的清洁设备。然而&#xff0c;在市场上&#…

富格林:出金不顺谨防虚假受害

富格林悉知&#xff0c;做投资有盈有亏是正常的&#xff0c;投资者需要做的是尽可能降低亏损的风险&#xff0c;警惕虚假出金陷阱&#xff0c;避免造成不必要的亏损。在进入黄金投资市场之前&#xff0c;投资者需学习一定的投资技巧&#xff0c;并且需要采取正规的策略来打击和…