2024.3.1 训练记录(5)

昨晚cf上大分了开心捏,三月了得想想新的高效一点的训练方法了不能再像个无头苍蝇乱撞了

目前的想法是1700-2000板刷cf,遇到不会的算法就学,思维还需要再提升一下,暑假开始补没有接触过的算法

文章目录

  • CF 1937D Pinball
  • CF 1916D Mathematical Problem
  • CF 1906M Triangle Construction
  • CF 1893B Neutral Tonality
  • CF 1889B Doremy's Connecting Plan
  • CF 1881F Minimum Maximum Distance

CF 1937D Pinball

题目链接

手动模拟一下差不多就有思路了

如果当前是<,那么向左碰到>就会转换方向,向右碰到<就会转换方向,用pre记录下标前缀和,cnt[i]记录第i个符号的下标,sum[i]记录到第i个位置为止的符号个数,分类讨论一下,具体看代码吧

#include <bits/stdc++.h>using namespace std;#define int long long
using i64 = long long;typedef pair<int, int> PII;
typedef pair<double, double> PDD;
typedef pair<int, PII> PIII;const int N = 10;
const int mod = 1e9 + 7;
const int maxn = 1e6 + 10;
const int mod1 = 954169327;
const int mod2 = 906097321;
const int INF = 0x3f3f3f3f3f3f3f3f;void solve()
{int n;cin >> n;string s;cin >> s;s = " " + s;// pre下标前缀和 cnt[i]第i个符号的下标 sum[i]到第i个位置为止的符号个数vector<int> prel(n + 1), prer(n + 1), cntl(1), cntr(1), suml(n + 1), sumr(n + 1);for (int i = 1; i <= n; i ++ ){if (s[i] == '<'){cntl.push_back(i);suml[i] = suml[i - 1] + 1;sumr[i] = sumr[i - 1];prel[i] = prel[i - 1] + i;prer[i] = prer[i - 1];}else{cntr.push_back(i);suml[i] = suml[i - 1];sumr[i] = sumr[i - 1] + 1;prel[i] = prel[i - 1];prer[i] = prer[i - 1] + i;}}for (int i = 1; i <= n; i ++ ){int ans = 0;if (s[i] == '<'){int left = sumr[i]; // 左侧的>个数int right = suml[n] - suml[i]; // 右侧的<个数if (left <= right) // 从左侧出{right = left;if (left) ans = (left * i - prer[i]) * 2;int tmp = right + suml[i];int pos = cntl[tmp];if (right) ans += (prel[pos] - prel[i] - right * i) * 2;ans += i;}else // 从右侧出{left = right + 1;int tmp = suml[i] + right;int pos = cntl[tmp];if (right) ans = (prel[pos] - prel[i] - i * right) * 2;ans += n - i + 1;tmp = sumr[i] - left + 1;pos = cntr[tmp];if (left) ans += (left * i - (prer[i - 1] - prer[pos - 1])) * 2;}}else if (s[i] == '>'){int left = sumr[i - 1]; // 左侧的>int right = suml[n] - suml[i]; // 右侧的<if (left >= right) // 从右侧出{	left = right;if (right) ans = (prel[n] - prel[i] - i * right) * 2;ans += n - i + 1;int tmp = sumr[i] - left;int pos = cntr[tmp];if (left) ans += (left * i - (prer[i - 1] - prer[pos - 1])) * 2;}else // 从左侧出{right = left + 1;if (left) ans = (left * i - prer[i - 1]) * 2;int tmp = right + suml[i];int pos = cntl[tmp];if (right) ans += (prel[pos] - prel[i] - right * i) * 2;ans += i;}}cout << ans << ' ';}cout << '\n';
}signed main()
{ios::sync_with_stdio(false);cin.tie(0), cout.tie(0);int t = 1;cin >> t;while (t -- ){solve();}
}

CF 1916D Mathematical Problem

题目链接

goodbye2023的一道题,弱智打表

打表可以发现,包含了{1, 6, 9, 0, 0, …}的集合每次都能成立

看这些集合里组成的数:

  • 第一类:16900… 19600… 96100…
  • 第二类:1060900… 1006009 9060100… ……

根据这个特点取数即可

#include <bits/stdc++.h>using namespace std;#define int long long
using i64 = long long;typedef pair<int, int> PII;
typedef pair<double, double> PDD;
typedef pair<int, PII> PIII;const int N = 10;
const int mod = 1e9 + 7;
const int maxn = 1e6 + 10;
const int mod1 = 954169327;
const int mod2 = 906097321;
const int INF = 0x3f3f3f3f3f3f3f3f;void solve()
{int n;cin >> n;if (n == 1) cout << 1 << '\n';else if (n == 3) cout << 169 << '\n' << 196 << '\n' << 961 << '\n';else{cout << 169;for (int i = 0; i < n - 3; i ++ ) cout << 0;cout << '\n' << 196;for (int i = 0; i < n - 3; i ++ ) cout << 0;cout << '\n' << 961;for (int i = 0; i < n - 3; i ++ ) cout << 0;cout << '\n';for (int i = 1; i * 2 <= n - 3; i ++ ){cout << 1;for (int j = 0; j < i; j ++ ) cout << 0;cout << 6;for (int j = 0; j < i; j ++ ) cout << 0;cout << 9;for (int j = 0; j < n - 3 - 2 * i; j ++ ) cout << 0;cout << '\n';cout << 9;for (int j = 0; j < i; j ++ ) cout << 0;cout << 6;for (int j = 0; j < i; j ++ ) cout << 0;cout << 1;for (int j = 0; j < n - 3 - 2 * i; j ++ ) cout << 0;cout << '\n';} }
}signed main()
{ios::sync_with_stdio(false);cin.tie(0), cout.tie(0);int t = 1;cin >> t;while (t -- ){solve();}
}

CF 1906M Triangle Construction

题目链接

简单思维还想了很久 不太应该

最好的情况就是所有点都能成为三角形的一个顶点,这样答案是sum/3

但是如果一条边的点数maxx太多,在同一条边的三个点不能组成三角形,所以组成三角形的个数就是sum-maxx

#include <bits/stdc++.h>using namespace std;#define int long long
using i64 = long long;typedef pair<int, int> PII;
typedef pair<double, double> PDD;
typedef pair<int, PII> PIII;const int N = 10;
const int mod = 1e9 + 7;
const int maxn = 1e6 + 10;
const int mod1 = 954169327;
const int mod2 = 906097321;
const int INF = 0x3f3f3f3f3f3f3f3f;void solve()
{int n;cin >> n;vector<int> a(n);int sum = 0;for (int i = 0; i < n; i ++ ) cin >> a[i], sum += a[i];sort(a.begin(), a.end());cout << min(sum / 3, sum - a[n - 1]) << '\n';
}signed main()
{ios::sync_with_stdio(false);cin.tie(0), cout.tie(0);int t = 1;// cin >> t;while (t -- ){solve();}
}

CF 1893B Neutral Tonality

题目链接

我一开始的想法是,把a按从小到大排序,b按从大到小排序,遍历b,在a中找到第一个小于等于b[i]的位置,然后把b[i]放到这个位置前面(这个思路有问题但是我没想明白哪里有问题)

正解思路是:b从大到小排序,双指针,遍历a,每次把大于等于当前a的b放在当前a前面

#include <bits/stdc++.h>using namespace std;#define int long long
using i64 = long long;typedef pair<int, int> PII;
typedef pair<double, double> PDD;
typedef pair<int, PII> PIII;const int N = 10;
const int mod = 1e9 + 7;
const int maxn = 1e6 + 10;
const int mod1 = 954169327;
const int mod2 = 906097321;
const int INF = 0x3f3f3f3f3f3f3f3f;void solve()
{int n, m;cin >> n >> m;vector<int> a(n), b(m);for (int i = 0; i < n; i ++ ) cin >> a[i];for (int i = 0; i < m; i ++ ) cin >> b[i];sort(b.begin(), b.end(), greater<int>());int j = 0;for (int i = 0; i < n; i ++ ){while (j < m && b[j] >= a[i]){cout << b[j] << ' ';j ++ ;}cout << a[i] << ' ';}while (j < m){cout << b[j] << ' ';j ++ ;}cout << '\n';
}signed main()
{ios::sync_with_stdio(false);cin.tie(0), cout.tie(0);int t = 1;cin >> t;while (t -- ){solve();}
}

CF 1889B Doremy’s Connecting Plan

题目链接

带点trick的一题

首先可以确定的是,每次连的点 i,j 一定有一个是 1(感性理解一下,证明的话反证法也很容易)

那要想连边,必须满足 a[i] + sum[1] >= i * c (sum[1]是1所在连通块包含的a之和)

由 i 决定的就是 a[i] - i * c

因此把除了1以外的所有 a[i] - i * c 从大到小排序,每次加一个,看能不能满足要求

#include <bits/stdc++.h>using namespace std;#define int long long
using i64 = long long;typedef pair<int, int> PII;
typedef pair<double, double> PDD;
typedef pair<int, PII> PIII;const int N = 10;
const int mod = 1e9 + 7;
const int maxn = 1e6 + 10;
const int mod1 = 954169327;
const int mod2 = 906097321;
const int INF = 0x3f3f3f3f3f3f3f3f;void solve()
{int n, c;cin >> n >> c;vector<int> a(n + 1);for (int i = 1; i <= n; i ++ ) cin >> a[i];vector<PII> v;for (int i = 2; i <= n; i ++ ){v.push_back({a[i] - i * c, a[i]});}sort(v.begin(), v.end(), greater<PII>());int sum = a[1];for (int i = 0; i < n - 1; i ++ ) {if (sum + v[i].first >= 0) sum += v[i].second;else{cout << "NO\n";return;}}cout << "YES\n";return;
}signed main()
{ios::sync_with_stdio(false);cin.tie(0), cout.tie(0);int t = 1;cin >> t;while (t -- ){solve();}
}

CF 1881F Minimum Maximum Distance

题目链接

这题先要把题意转换成:找到两个距离最远的标记点

想到这里之后,我联想到树的直径,于是可以先以任意一个标记点为起点,跑最短路,然后找到距离这个起点最远的点,以这个点为起点再跑最短路,此时最远的距离就是两个标记点之间的最远距离了

最小的f值取中点就行

#include <bits/stdc++.h>using namespace std;#define int long long
using i64 = long long;typedef pair<int, int> PII;
typedef pair<double, double> PDD;
typedef pair<int, PII> PIII;const int N = 10;
const int mod = 1e9 + 7;
const int maxn = 1e6 + 10;
const int mod1 = 954169327;
const int mod2 = 906097321;
const int INF = 0x3f3f3f3f3f3f3f3f;void solve()
{int n, k;cin >> n >> k;vector<int> a(n);for (int i = 0; i < k; i ++ ) cin >> a[i];vector<vector<int>> g(n + 1);for (int i = 1; i < n; i ++ ){int u, v;cin >> u >> v;g[u].push_back(v);g[v].push_back(u);}vector<int> dist(n + 1, INF);vector<bool> st(n + 1);queue<int> q;dist[a[0]] = 0;q.push(a[0]);while (q.size()){auto t = q.front();q.pop();if (st[t]) continue;st[t] = true;for (int i = 0; i < g[t].size(); i ++ ){int j = g[t][i];if (dist[j] > dist[t] + 1){dist[j] = dist[t] + 1;q.push(j);}}}int maxx = -INF, pos;for (int i = 0; i < k; i ++ ){if (dist[a[i]] > maxx){maxx = dist[a[i]];pos = a[i];}}for (int i = 1; i <= n; i ++ ) {dist[i] = INF;st[i] = false;}dist[pos] = 0;q.push(pos);while (q.size()){auto t = q.front();q.pop();if (st[t]) continue;st[t] = true;for (int i = 0; i < g[t].size(); i ++ ){int j = g[t][i];if (dist[j] > dist[t] + 1){dist[j] = dist[t] + 1;q.push(j);}}}maxx = -INF;for (int i = 0; i < k; i ++ ){if (dist[a[i]] > maxx) {maxx = dist[a[i]];pos = a[i];}}cout << (maxx + 1) / 2 << '\n';
}signed main()
{ios::sync_with_stdio(false);cin.tie(0), cout.tie(0);int t = 1;cin >> t;while (t -- ){solve();}
}

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

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

相关文章

十四经脉最全总结(什么是经脉、十二经脉动态图、经脉走向、人体和手足哪面为阳,哪面为阴?)

目录 一.什么是经脉二.人体和手足哪面为阳&#xff1f;哪面为阴&#xff1f;三.任督二脉3.1 任脉3.2 督脉 四.十二经脉4.1 什么是 厥阴&#xff0c;少阴&#xff0c;太阴&#xff1b;少阳&#xff0c;阳明&#xff0c;太阳&#xff1f;4.2 十二经脉总分布4.3 手三阴经1.手厥阴心…

4、pod运维replicationCtroller、replicaSet、DeamonSet、Job、Cronjob

1、kubenetes 会自动重新运行失败的pod应用 pod运行失败&#xff0c;会自动重启&#xff0c;但是节点失败&#xff0c;pod会被移除&#xff0c; 除非配置了relicationController来管理资源 2、保持pod的健康存活 配置探针&#xff0c;发送http请求 3、查看前一个pod的运行日…

mysql-视图,创建表,存储过程,循环,判断实操命令

数据库操作命令在IDEA工具database的console命令 数据库表结构与视图 -- 查询隔离级别 select transaction_isolation;-- 设置隔离级别 set session transaction isolation level read committed ; set session transaction isolation level REPEATABLE READ ;start transacti…

蚂蚁感冒c++

题目 思路 “两蚂蚁碰面会掉头&#xff0c;若其中一只蚂蚁感冒了&#xff0c;会把感冒传染给碰到的蚂蚁”&#xff0c;这句话看作是“两蚂蚁碰面会互相穿过&#xff0c;只是把感冒的状态传给了另一只蚂蚁”&#xff0c;因为哪只蚂蚁感冒了并不是题目的重点&#xff0c;重点是有…

unity中摄像机跟随

Vector3 desiredPosition circle.position; Vector3 smoothedPosition Vector3.Lerp(mCamera.transform.position, desiredPosition, smoothSpeed); mCamera.transform.position smoothedPosition;

如何在Word里一次性给全部汉字加拼音?

word是大家日常使用频率较高的工作软件&#xff0c;功能性很强&#xff0c;有上乘的文档格式设置工具&#xff0c;利用它可更轻松、高效地组织和编写文档&#xff0c;熟练运用word&#xff0c;在职场上很重要。那么word如何添加拼音呢?下面给大家介绍一下吧。 方法一&#xf…

Frida实战:Java、Native、SO层面的Hook与主动调用详解

引言 Frida是一款强大的动态代码插桩工具&#xff0c;支持对Android和iOS应用进行实时调试和注入。本文将通过实例详细解析如何在Frida中实现对Java层、Native层&#xff08;JNI&#xff09;以及.so库内函数的Hook与主动调用。 一、Hook Java层函数 首先&#xff0c;我们展示…

线性dp P4310-绝世好题/P4933 大师【日记】

1.绝世好题&#xff08;P4310&#xff09; 绝世好题https://www.luogu.com.cn/problem/P4310 比较考验思维的一道题目&#xff0c;码量和理解难度都不大&#xff0c;重在思维。 一开始看错题&#xff0c;以为是求子串&#xff08;还在想为啥考的纯位运算枚举&#xff0c;whe…

vue iis 配置

下载安装两个IIS模块 1). 传送门&#xff1a;URL Rewrite 2). 传送门&#xff1a;Application Request Routing 注 : 只有在 服务器的主页 有Application Request Routing 部署VUE网站 生成网站 在VUE项目打包生成出发布文件,即文件夹 dist,此处忽略 复制到你需要存放网站的…

Skywalking官方的实战模拟项目Live-Demo

Skywalking 官方的实战模拟项目Live-Demo Live-Demo 是 Skywalking 官方的实战模拟项目&#xff0c;其中包含4个子模块项目 projectA访问projectB、projectC两个SpringBoot项目 projectB访问本地的H2数据库 projectC访问www.baidu.com并同时向一台Kafka消息队列写入数据 proje…

入门指南:使用uni-app构建跨平台应用

入门指南&#xff1a;使用uni-app构建跨平台应用 &#x1f31f; 前言 欢迎来到我的小天地&#xff0c;这里是我记录技术点滴、分享学习心得的地方。&#x1f4da; &#x1f6e0;️ 技能清单 编程语言&#xff1a;Java、C、C、Python、Go前端技术&#xff1a;Jquery、Vue.js、R…

六、软考-系统架构设计师笔记-软件工程基础知识

1、软件工程 软件工程是将系统化的、严格约束的、可量化的方法应用于软件的开发、运行和维护&#xff0c;即将工程化应用于软件并对上述方法的研究。 软件要经历从需求分析、软件设计、软件开发、运行维护&#xff0c;直至被淘汰这样的全过程&#xff0c;这个过程称为软件的生…

Android使用OpenGL和FreeType绘制文字

Open GL主要是渲染图形的&#xff0c;有时候需要绘制文字&#xff0c;网上搜了一下&#xff0c;基本思路都是把文字转成位图&#xff0c;再使用Open GL纹理进行渲染。加载纹理在特定阶段才能成功&#xff08;在onSurfaceCreated中加载&#xff09;&#xff0c;这样就无法动态的…

[论文笔记] Open-Sora 1、sora复现方案概览

GitHub - hpcaitech/Open-Sora: Unofficial implementation of OpenAIs Sora Open-Sora已涵盖: 提供完整的Sora复现架构方案,包含从数据处理到训练推理全流程。 支持动态分辨率,训练时可直接训练任意分辨率的视频,无需进行缩放。 支持多种模型结构。由于Sora实际模型结构未…

部署LVS负载均衡架构

目录 一、ipvsadm 工具 二、NAT模式下部署LVS负载均衡 1、部署NFS共享存储服务器 1.1 安装NFS软件 1.2 新建共享目录和站点文件 1.3 设置共享策略 2、部署节点服务器1 2.1 安装并启动nginx软件 2.2 挂载共享目录到网页站点目录 2.3 修改网关 3、部署节点服务器2 3.…

Python爬虫入门教程

一、爬虫的概念 爬虫是模拟浏览器发送请求&#xff0c;获取响应 二、爬虫的流程 url—>发送请求&#xff0c;获取响应—>提取数据—》保存发送请求&#xff0c;获取响应—>提取url 爬虫要根据当前url地址对应的响应为准 &#xff0c;当前url地址的elements的内容和…

在ABAP中创建一个简单的守护进程

原文地址&#xff1a;Create a simple Daemon in ABAP 目录 一、ABAP语言中的守护进程是什么&#xff1f;二、ABAP 守护进程框架 (ADF)三、ABAP 守护进程类四、创建一个简单的ABAP守护进程步骤1&#xff1a;创建一个新的ABAP Daemon类步骤2&#xff1a;实现ON_ACCEPT方法第三步…

「滚雪球学Java」:GUI编程(章节汇总)

咦咦咦&#xff0c;各位小可爱&#xff0c;我是你们的好伙伴——bug菌&#xff0c;今天又来给大家普及Java SE相关知识点了&#xff0c;别躲起来啊&#xff0c;听我讲干货还不快点赞&#xff0c;赞多了我就有动力讲得更嗨啦&#xff01;所以呀&#xff0c;养成先点赞后阅读的好…

Kosmos-1: 通用接口架构下的多模态大语言模型

Kosmos-1: 通用接口架构下的多模态大语言模型 FesianXu 20230513 at Baidu Search Team 前言 在大规模语言模型&#xff08;Large Language Model, LLM&#xff09;看似要带来新一番人工智能变革浪潮之际&#xff0c;越来越多尝试以LLM作为通用接口去融入各种任务的工作&#…

【vue】ant-design弹出框无法关闭和runtimecore提示isFucntion is not function的问题修复

【vue】ant-design弹出框无法关闭和runtimecore提示isFucntion is not function的问题修复&#xff0c;初步分析是vue发布3.4版本以后引起的兼容性问题。 问题截图&#xff1a; 1.isFucntion is not function&#xff0c;是由于vue升级后众多插件版本不匹配造成的问题 2.弹框…