2024牛客寒假算法基础集训营4(视频讲解题目)

2024牛客寒假算法基础集训营4(视频讲解题目)

  • 视频链接
  • A
  • B
  • C
  • D
  • E
  • F
  • G、H(下面是hard版本的代码两个都可以过)

视频链接

2024牛客寒假算法基础集训营4(视频讲解题目)
在这里插入图片描述

A

#include<bits/stdc++.h>
#define endl '\n'
#define deb(x) cout << #x << " = " << x << '\n';
#define INF 0x3f3f3f3f
using namespace std;void solve()
{int a, b ,k;cin >> a >> b >> k;if(a >= k * b){cout << "good" << endl;}else{cout << "bad" << endl;}}signed main()
{ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);int t;t = 1;//cin >> t;while(t--)solve();
}

B

#include<bits/stdc++.h>
#define endl '\n'
#define deb(x) cout << #x << " = " << x << '\n';
#define INF 0x3f3f3f3f
using namespace std;void solve()
{int n; cin >> n;vector<int>a(n);int x = 0;for(int i = 0; i < n; i ++){cin >> a[i];x += (a[i] - 1);}if(x % 2){cout << "gui" << endl;}else{cout << "sweet" << endl;}}signed main()
{ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);int t;t = 1;// cin >> t;while(t--)solve();
}

C

#include<bits/stdc++.h>
#define endl '\n'
#define deb(x) cout << #x << " = " << x << '\n';
#define INF 0x3f3f3f3f
using namespace std;
typedef pair<int,int> pii;
void solve()
{int n, m, x, y;cin >> n >> m >> x >> y;x -- ,y --;vector<string> g(n + 10);for(int i = 0; i < n; i ++){cin >> g[i];}int p, q; cin >> p >> q;vector<pii>ops(q);for(int i = 0; i < q; i ++){cin >> ops[i].first >> ops[i].second;}while(p--){for(int j = 0; j < q; j ++){int op = ops[j].first, z = ops[j].second - 1;if(op == 1){char s = g[z][m - 1];for(int i = m - 1; i >= 1; i --){g[z][i] = g[z][i - 1];}g[z][0] = s;}else{char s = g[n - 1][z];for(int i = n - 1; i >= 1; i --){g[i][z] = g[i - 1][z];}g[0][z] = s;}}}cout << g[x][y] << endl;
}signed main()
{ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);int t;t = 1;// cin >> t;while(t--)solve();
}

D

#include<bits/stdc++.h>
#define endl '\n'
#define deb(x) cout << #x << " = " << x << '\n';
#define INF 0x3f3f3f3f
#define int long long
using namespace std;void solve()
{int n; cin >> n;vector<int>a(n);for(int i = 0; i < n; i ++){cin >> a[i];}if(n == 1){cout << 1 << endl;return;}int s = 0;for(int i = 0; i < n; i ++){s += a[i];}int ans = 0;for(int i = 1; i <= s / i; i ++){if(s % i){continue;}int a = i, b = s / i;if(s / a >= n){ans ++;}if(a != b and s / b >= n){ans ++;}}cout << ans << endl;
}signed main()
{ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);int t;t = 1;//cin >> t;while(t--)solve();
}

E

#include<bits/stdc++.h>
#define endl '\n'
#define deb(x) cout << #x << " = " << x << '\n';
#define INF 0x3f3f3f3f
#define int long long
using namespace std;void solve()
{int n, k; cin >> n >> k;vector<int>a(n + 1), s(n + 1);for(int i = 1; i <= n; i ++){cin >> a[i];s[i] = s[i - 1] + a[i];}int ans = 0;map<int,int>st;st[0] = 1;for(int i = 1; i <= n; i ++){int p = s[i] % k;if(st[p]){ans += st[p];st.clear();}st[p] ++;}cout << ans << endl;
}signed main()
{ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);int t;t = 1;//cin >> t;while(t--)solve();
}

F

#include<bits/stdc++.h>
#define endl '\n'
#define deb(x) cout << #x << " = " << x << '\n';
#define INF 0x3f3f3f3f3f3f3f3f
#define int long long 
using namespace std;
const int N = 1e3 + 10;
int a[N];
int f[N][10], g[N][10], dp[N];
int has[N][N][2];
int cal(int x, int y){if(y - x + 1 < 6){return 0;}if(has[x][y - 1][0] != INF and has[x][y - 1][1] != INF){int res = max(has[x][y - 1][1], has[x][y - 1][0] - a[y]);return res;}for(int i = x; i <= y + 1; i ++){for(int j = 0; j <= 6; j ++){f[i][j] = -INF;g[i][j] = INF;}}for(int i = x; i <= y; i ++){if(i != x){f[i][1] = max(f[i - 1][1], a[i]);g[i][1] = min(g[i - 1][1], a[i]);}else{f[i][1] = a[i];g[i][1] = a[i];}if(i - x + 1 >= 2){g[i][2] = min(g[i - 1][2], g[i - 1][1] - a[i]);f[i][2] = max(f[i - 1][2], f[i - 1][1] - a[i]);}elsecontinue;if(i - x + 1 >= 3){if(g[i - 1][2] != INF){f[i][3] = max(f[i - 1][3], max(g[i - 1][2] * a[i], f[i - 1][2] * a[i]));}else{f[i][3] = max(f[i - 1][3], f[i - 1][2] * a[i]);}if(f[i - 1][2] != -INF)g[i][3] = min(g[i - 1][3], min(g[i - 1][2] * a[i], f[i - 1][2] * a[i]));elseg[i][3] = min(g[i - 1][3], g[i - 1][2] * a[i]);}elsecontinue;if(i - x + 1 >= 4){f[i][4] = max(f[i - 1][4], f[i - 1][3] - a[i]);g[i][4] = min(g[i - 1][4], g[i - 1][3] - a[i]);}elsecontinue;if(i - x + 1 >= 5){if(g[i - 1][4] != INF)f[i][5] = max(f[i - 1][5], max(g[i - 1][4] * a[i], f[i - 1][4] * a[i]));elsef[i][5] = max(f[i - 1][5], f[i - 1][4] * a[i]);if(f[i - 1][4] != -INF)g[i][5] = min(g[i - 1][5], min(g[i - 1][4] * a[i], f[i - 1][4] * a[i]));elseg[i][5] = min(g[i - 1][5], g[i - 1][4] * a[i]);}elsecontinue;if(i - x + 1 >= 6)f[i][6] = max(f[i - 1][6], f[i - 1][5] - a[i]);}int res = 0;int xx = 0;for(int i = x; i <= y; i ++){res = max(res, f[i][6]);xx = max(xx, f[i][5]);}has[x][y][1] = res;//选6个数字的最大值has[x][y][0] = xx;//选5个数字的最大值return res;
}
void solve()
{int n; scanf("%lld", & n);for(int i = 1; i <= n; i ++){scanf("%lld", a + i);}for(int i = 1; i <= n; i ++){for(int j = 1; j <= n; j ++){has[i][j][0] = has[i][j][1] = INF;}}for(int i = 1; i <= n; i ++){dp[i] = dp[i - 1];for(int j = 1; j <= i; j ++){dp[i] = max(dp[i], dp[j - 1] + cal(j, i));}}printf("%lld", dp[n]);
}signed main()
{int t = 1;while(t--)solve();
}

G、H(下面是hard版本的代码两个都可以过)

#include<bits/stdc++.h>
#define endl '\n'
#define deb(x) cout << #x << " = " << x << '\n';
#define INF 0x3f3f3f3f
using namespace std;
const int N = 3e3 + 10;
char g[N][N];
int ul[N][N], ur[N][N], ls[N][N], rs[N][N];class BIT{
private:vector<long long>tre;int n;
public:BIT(int size): n(size), tre(size + 1, 0) {};public:int lowbit(int x){return x & -x;}void add(int pos, long long x){for(int i = pos; i <= n; i += lowbit(i))tre[i] = tre[i] + x;}long long sum(int pos){long long res = 0;for(int i = pos; i; i -= lowbit(i))res = res + tre[i];return res;}};
void solve()
{int n, m; cin >> n >> m;for(int i = 1; i <= n; i ++){string s; cin >> s;for(int j = 1; j <= m; j ++){g[i][j] = s[j - 1];}}for(int i = n; i >= 1; i --){for(int j = 1; j <= m; j ++){if(g[i][j] == '*'){ul[i][j] = ul[i + 1][j - 1] + 1;ur[i][j] = ur[i + 1][j + 1] + 1;ls[i][j] = ls[i][j - 1] + 1;}else{ul[i][j] = ur[i][j] = ls[i][j] = 0;}}for(int j = m; j >= 1; j --){if(g[i][j] == '*'){rs[i][j] = rs[i][j + 1] + 1;}else{rs[i][j] = 0;}}}long long ans = 0;for(int j = 1; j <= m; j ++){BIT t(n);//记录合法点的个数vector<vector<int>>del(n + 1);//记录在v这个点需要删除的点。for(int i = n; i >= 1; i --){if(g[i][j] == '*'){int v = i - min(ls[i][j], rs[i][j]) + 1;if(v >= 1){del[v].push_back(i);}int low = i + min(ul[i][j], ur[i][j]) - 1;ans += t.sum(low);t.add(i, 1);}for(auto x: del[i]){t.add(x, -1);}}}cout << ans << endl;
}signed main()
{ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);int t;t = 1;// cin >> t;while(t--)solve();
}

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

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

相关文章

C++:C++入门基础

创作不易&#xff0c;感谢三连 &#xff01;&#xff01; 一、什么是C C语言是结构化和模块化的语言&#xff0c;适合处理较小规模的程序。对于复杂的问题&#xff0c;规模较大的程序&#xff0c;需要高度的抽象和建模时&#xff0c;C语言则不合适。为了解决软件危机&#xff…

第100讲:MHA+Atlas实现MySQL主从复制读写分离分布式集群

文章目录 1.Atlas读写分离简介2.搭建MHA高可用MySQL主从复制集群3.部署配置Atlas读写分离中间件3.1.安装Atlas读写分离中间件3.2.配置读写分离3.3.启动Atlas读写分离 4.读写分离集群测试5.生产环境中创建一个用户通过Atlas使用6.Atlas通过管理接口实现在线管理7.Atlas自动分表 …

华为OD机试真题-开源项目热榜-2023年OD统一考试(C卷)---python免费

题目&#xff1a; 考察内容&#xff1a; 理解题目双排序 代码&#xff1a; """ 题目分析&#xff1a; 计算热度值&#xff0c;进行降序排序&#xff0c;热度值一样&#xff0c;字母小写&#xff0c;字典排序输入&#xff1a; 项目个数N, int 0-100 权重列表…

快速部署华为云WAF实现Web应用安全防护

通常&#xff0c;用户将web应用暴露在公网上&#xff0c;不做任何准备或者安全措施可能会受到黑客的注入入侵攻击导致网站核心数据被脱库泄露。以及木马上传网页篡改&#xff0c;导致网站公信力受到影响。本文九河云将为您介绍如何通过华为云WAF应用防火墙实现web应用安全防护&…

解锁创意灵感,探索FlutterExampleApps项目的奥秘

解锁创意灵感&#xff0c;探索FlutterExampleApps项目的奥秘 项目简介 FlutterExampleApps项目是一个包含各种示例应用链接的仓库&#xff0c;旨在演示Flutter应用开发中的各种功能、特性和集成。 项目包含了以下几个部分&#xff0c;每个部分都涵盖了不同的内容和主题&…

Day23--learning English

一、积累 1.straw 2.umami | tangy | bland 3.lactose dairy 4.fatigue 5.stumble | curb 6.pore 7.toll 8.arrear 9.robe 10.stylish 11.dash 12.mischief 13.ranch 14.sponsorship 15.podcast 16.villian 17.clutch 18.envision 二、练习 1.牛津原译 1.straw /strɔː/ 1…

pytorch数学运算

目录 1. pytorch的数学运算包括2. 基本运算3. matmul4. power sqrt rsqrt5. exp log6. 近似值7. clamp 1. pytorch的数学运算包括 ▪Add/minus/multiply/divide ▪Matmul ▪Pow ▪Sqrt/rsqrt ▪Round 2. 基本运算 、-、*、/ 也可以使用函数add sub mul div 3. matmul 矩阵…

ipad作为扩展屏的最简单方式(无需数据线)

ipad和win都下载安装toDesk&#xff0c;并且都处于同一局域网下 连接ipad&#xff0c;在ipad中输入win设备的设备密码和临时密码&#xff0c;连接上后可以看到ipad会是win屏幕的镜像&#xff0c;此时退出连接&#xff0c;准备以扩展模式再次连接。 注意&#xff0c;如果直接从…

keepalived双活互备模式测试

文章目录 环境准备部署安装keepavlived配置启动测试模拟Nginx宕机重新启动问题分析 环境准备 测试一下keepalived的双主模式&#xff0c;所谓双主模式就是两个keepavlied节点各持有一个/组虚IP&#xff0c;默认情况下&#xff0c;二者互为主备&#xff0c;同时对外提供服务&am…

【GameFramework框架内置模块】2、数据节点(Data Node)

推荐阅读 CSDN主页GitHub开源地址Unity3D插件分享简书地址 大家好&#xff0c;我是佛系工程师☆恬静的小魔龙☆&#xff0c;不定时更新Unity开发技巧&#xff0c;觉得有用记得一键三连哦。 一、前言 【GameFramework框架】系列教程目录&#xff1a; https://blog.csdn.net/q7…

2024年2月中国数据库排行榜:PolarDB夺魁首登顶,TiDB攀升回探花

银装素裹覆大地&#xff0c;春意初醒待来临。2024年2月墨天轮中国数据库流行度榜单出炉&#xff0c;表现最亮眼的无疑是PolarDB&#xff0c;其自23年7月以来一路高歌猛进&#xff0c;此次更是一举夺魁&#xff0c;彰显了云原生数据库的蓬勃发展态势&#xff0c;OceanBase、TiDB…

神经网络基础——激活函数的选择、参数初始化

一、神经网络 1、神经网络 人工神经网络&#xff08;Artificial Neural Network&#xff0c;即ANN&#xff09;也简称为神经网络&#xff08;NN&#xff09;是一种模仿生物神经网络结构 和功能的计算模型。 2、基本部分 输入层&#xff1a;输入 x 输出层&#xff1a;输出 y 隐…

国际章真厉害,离婚后仍带汪峰继女小苹果赴日滑雪。

♥ 为方便您进行讨论和分享&#xff0c;同时也为能带给您不一样的参与感。请您在阅读本文之前&#xff0c;点击一下“关注”&#xff0c;非常感谢您的支持&#xff01; 文 |猴哥聊娱乐 编 辑|徐 婷 校 对|侯欢庭 在如今这个纷繁复杂的社会中&#xff0c;家庭关系和亲子关系的…

给定n个结点m条边的简单无向图,判断该图是否存在鱼形状的子图:有一个环,其中有一个结点有另外两条边,连向不在环内的两个结点。若有,输出子图的连边

题目 思路&#xff1a; #include <bits/stdc.h> using namespace std; #define int long long #define pb push_back #define fi first #define se second #define lson p << 1 #define rson p << 1 | 1 const int maxn 1e6 5, inf 1e18 * 3, maxm 4e4 …

开源CMS Drupal本地快速部署并实现无公网ip环境远程访问

文章目录 前言1. Docker安装Drupal2. 本地局域网访问3 . Linux 安装cpolar4. 配置Drupal公网访问地址5. 公网远程访问Drupal6. 固定Drupal 公网地址 前言 Dupal是一个强大的CMS&#xff0c;适用于各种不同的网站项目&#xff0c;从小型个人博客到大型企业级门户网站。它的学习…

Masonry源码

浅谈 这篇文章是 Masonry 框架源码的解析和笔记。学习Masonry之前&#xff0c;先了解这个框架设计的初衷—传统的利用系统API进行纯代码布局的不足。然后&#xff0c;根据Masonry常见的几个链式语法中&#xff0c;顺藤摸瓜地了解Masonry的调用栈。最后&#xff0c;学习并思考这…

Qt的跨平台开发

自从最初发布以来&#xff0c;Qt就以其跨平台的能力而闻名——这是创建这个框架背后的主要愿景。您可以在自己喜欢的桌面平台(如Windows、Linux和mac OS)上使用Qt Creator&#xff0c;并使用相同的代码库或稍加修改&#xff0c;创建流畅、现代、触摸友好的图形用户界面(GUI)和桌…

MySql重要知识梳理

文章目录 一.索引1.索引概述2.索引优缺点3. 索引结构为什么InnoDB存储引擎选择使用Btree索引结构? 4.索引分类思考InnoDB主键索引的Btree高度为多高? 5. 索引语法1.索引语法2.sql性能分析1.SQL执行频率2.慢查询日志3.explain执行计划 3.索引使用规则1.最左前缀法则2.索引失效…

把excel模版保存到文件夹里不走接口进行下载的方法

把excel保存到文件夹不走接口进行下载&#xff0c;一定要注意&#xff0c;需要放到public下的static文件夹下&#xff0c;如果没有static文件夹&#xff0c;就新建一个 &#xff01;&#xff01;&#xff01;不放在static文件夹下可能会报错&#xff0c;提示&#xff1a;无法从…

MyBatis-获取参数

1. 创建MyBatis配置文件模板 编辑完Mybatis核心配置文件和properties文件后&#xff0c;打开IDEA的设置界面&#xff0c;找到Editor中的File and Code Templates&#xff0c;点击加号新增模板。接着将编辑好的核心配置文件中的内容复制粘贴到空白框中&#xff0c;设置好模板名…