20240528训练题目(2022 国际大学生程序设计竞赛亚洲区域赛 (南京站))

D题

题目描述

You’re the researcher of the International Chat Program Company (ICPC). Today, you discover the following chat history when reviewing some research data.

SUA (2022/12/04 23:01:25)

I’m out of ideas for competitive programming problems! Please give me a problem about sequences.

BOT (2022/12/04 23:01:27)

Sure. Here is a competitive programming problem about sequences.

Given an integer sequence a 1 , a 2 , ⋯ , a n a_1, a_2, \cdots, a_n a1,a2,,an of length n n n and four other integers k k k, m m m, c c c and d d d, your goal is to maximize the k k k-th largest element in the sequence.

To achieve the goal, you can perform the following operation at most once: select a continuous sub-array of length m m m and add an arithmetic sequence with length m m m, initial term c c c and common difference d d d to the sub-array.

More formally, you can select an integer p p p satisfying 1 ≤ p ≤ n − m + 1 1 \le p \le n - m + 1 1pnm+1 and add ( c + d i ) (c + di) (c+di) to a p + i a_{p + i} ap+i for all KaTeX parse error: Expected 'EOF', got '&' at position 9: 0 \le i &̲lt; m.

Calculate the largest possible value of the k k k-th largest element in the sequence after at most one operation.

The k k k-th largest element in the sequence is the k k k-th element in the sorted sequence after sorting all elements from the largest to the smallest. For example, the 3 3 3rd largest element in sequence { 5 , 7 , 1 , 9 } \{5, 7, 1, 9\} {5,7,1,9} is 5 5 5, while the 3 3 3rd largest element in sequence { 9 , 7 , 5 , 9 } \{9, 7, 5, 9\} {9,7,5,9} is 7 7 7.

SUA (2022/12/05 00:15:17)

This problem seems difficult! Please teach me the solution.

BOT (2022/12/05 00:15:30)

Sure. Firstly, we can…

[DATA EXPUNGED]

Unfortunately, parts of the chat history are lost due to a disk failure. You’re amazed at how a chat program can create a competitive programming problem. To verify whether the chat program can create valid problems, you decide to try on this problem.

Input

There is only one test case in each test file.

The first line contains five integers n n n, k k k, m m m, c c c and d d d ( 1 ≤ k , m ≤ n ≤ 2 × 1 0 5 1 \le k, m \le n \le 2 \times 10^5 1k,mn2×105, 0 ≤ c , d ≤ 1 0 9 0 \le c, d \le 10^9 0c,d109) indicating the length of the sequence, your goal, the length, initial term and common difference of the arithmetic sequence.

The second line contains n n n integers a 1 , a 2 , ⋯ , a n a_1, a_2, \cdots, a_n a1,a2,,an ( 0 ≤ a i ≤ 1 0 9 0 \le a_i \le 10^9 0ai109) indicating the sequence.

Output

Output one line containing one integer indicating the largest possible value of the k k k-th largest element in the sequence after at most one operation.

AC代码

//二分
#include<bits/stdc++.h>
using namespace std;
#define int long long
const int N = 2e5+100;
int n,k,m,c,d,a[N],f[N];
bool check(int x) {memset(f,0,sizeof(f));int cnt=0;for(int i=1; i<=n; i++) {if(a[i]>=x)cnt++;}if(cnt>=k)return true; for(int i=1; i<=n; i++) {if(a[i]<x){int l,r,p,maxx,minn;l=max(i-m+1,0ll);maxx=a[i]+c+d*(i-l);if(maxx<x)continue; minn=a[i]+c;if(d==0)p=0;else p=(x-minn-1)/d+1;p=max(p,0ll);r=i-p;f[l]++;f[r+1]--;}}int res=0;for(int i=1; i<=n; i++) {f[i]+=f[i-1];res=max(res,f[i]);}return res+cnt>=k;
}
signed main() {ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);cin>>n>>k>>m>>c>>d;for(int i=1; i<=n; i++)cin>>a[i];int l=0,r=1e18,mid;while(l<=r) {mid=(l+r)/2;if(check(mid))l=mid+1;else r=mid-1;}cout<<r<<'\n';return 0;
}

G题

题目描述

You are lost deep in the forest. The only thing that is still accompanying you is your stoat. It has an initial attack of 1 1 1. It is your only Beast at the beginning.

A single path revealed itself before you. On the path are n n n event marks. Every event mark falls into one of the following:

  • Card Choice: A dentizen of the forest shall grace your caravan. You will gain an additional Beast. It will always have an initial attack of 1 1 1.
  • Mysterious Stone: You will be compelled to make a worthy sacrifice. Two Beasts from your caravan of your choice will perform the ritual: one to be lost forever, adding its attack onto the other. Failure to perform the ritual will forbid you to go on.
  • Fork in the Road: You will choose to trigger either a Card Choice or a Mysterious Stone. You can’t choose to do nothing.

When you walk through the winding road, the event marks will be triggered in order. Find out the maximum average of attack for your Beasts you can achieve after all event marks are completed.

Input

There are multiple test cases. The first line of the input contains an integer T T T indicating the number of test cases. For each test case:

The first line contains one integer n n n ( 1 ≤ n ≤ 1 0 6 1 \le n \le 10^6 1n106) indicating the number of event marks.

The second line contains n n n integers a 1 , a 2 , ⋯ , a n a_1, a_2, \cdots, a_n a1,a2,,an ( − 1 ≤ a i ≤ 1 -1 \le a_i \le 1 1ai1) where a i a_i ai indicates the type of the i i i-th event mark: 1 1 1 means a Card Choice, − 1 -1 1 means a Mysterious Stone and 0 0 0 means a Fork in the Road.

It’s guaranteed that the sum of n n n over all test cases does not exceed 1 0 6 10^6 106.

Output

For each test case output one line.

If it is impossible to complete all event marks, output one integer − 1 -1 1.

Otherwise it can be proven that the answer is a rational number p ′ q ′ \frac{p'}{q'} qp. Output two integers p p p and q q q where p q \frac{p}{q} qp is the simplest fraction representation of p ′ q ′ \frac{p'}{q'} qp.

p q \frac{p}{q} qp is the simplest fraction representation of p ′ q ′ \frac{p'}{q'} qp if p q = p ′ q ′ \frac{p}{q} = \frac{p'}{q'} qp=qp and the greatest common divisor of p p p and q q q is 1 1 1.

AC代码

#include<bits/stdc++.h>
using namespace std;
#define int long long
const int N=1e6+10;
int a[N];
void solve()
{int n;cin>>n;for(int i=0;i<n;i++)	cin>>a[i];int p=1,q=1,c=0;for(int i=0;i<n;i++){if(a[i]==1){p++;q++;}else if(a[i]==-1){q--;if(q<1){if(c<=0){cout<<"-1"<<'\n';return;}else//不合理时返回时,将0转成”-1“使用{c--;p++;q+=2;}}}else if(a[i]==0){if(q<2)	q++,p++;//不合理时返回时,将0转成”1“使用else	c++,q--;//0用来趋向最大值,将0转成”-1“使用}}cout<<p/__gcd(q,p)<<' '<<q/__gcd(p,q)<<'\n';
}
signed main()
{ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);int t;cin>>t;while(t--)	solve();return 0; 
}

I题

题目描述

Given a string S = s 0 s 1 ⋯ s n − 1 S = s_0s_1\cdots s_{n-1} S=s0s1sn1 of length n n n, let f ( S , d ) f(S, d) f(S,d) be the string obtained by shifting S S S to the left d d d times. That is f ( S , d ) = s ( d + 0 ) m o d n s ( d + 1 ) m o d n ⋯ s ( d + n − 1 ) m o d n f(S, d) = s_{(d+0)\bmod n}s_{(d+1)\bmod n}\cdots s_{(d+n-1)\bmod n} f(S,d)=s(d+0)modns(d+1)modns(d+n1)modn. We say S S S is a perfect palindrome if for all non-negative integer d d d, f ( S , d ) f(S, d) f(S,d) is a palindrome.

You’re now given a string A = a 0 a 1 ⋯ a n − 1 A = a_0a_1\cdots a_{n-1} A=a0a1an1 of length n n n consisting only of lower-cased English letters. You can perform the following operation on A A A any number of times (including zero times): Choose an integer i i i such that KaTeX parse error: Expected 'EOF', got '&' at position 9: 0 \le i &̲lt; n and change a i a_i ai to any lower-cased English letter.

Calculate the minimum number of operations needed to change A A A into a perfect palindrome.

We say a string P = p 0 p 1 ⋯ p n − 1 P = p_0p_1\cdots p_{n-1} P=p0p1pn1 of length n n n is a palindrome, if p i = p n − 1 − i p_i = p_{n-1-i} pi=pn1i for all KaTeX parse error: Expected 'EOF', got '&' at position 9: 0 \le i &̲lt; n.

Input

There are multiple test cases. The first line of the input contains an integer T T T indicating the number of test cases. For each test case:

The first and only line contains a string a 0 a 1 ⋯ a n − 1 a_0a_1\cdots a_{n-1} a0a1an1 ( 1 ≤ n ≤ 1 0 5 1 \le n \le 10^5 1n105) consisting only of lower-cased English letters.

It is guaranteed that the total length of strings of all test cases will not exceed 1 0 6 10^6 106.

Output

For each test case output one line containing one integer indicating the minimum number of operations needed to change A A A into a perfect palindrome.

AC代码

//签到题
#include<bits/stdc++.h>
using namespace std;
int v[27];
void solve()
{memset(v,0,sizeof(v));string s;cin>>s;int ma=0;for(int i=0;i<s.size();i++)	ma=max(ma,++v[s[i]-'a']);cout<<s.size()-ma<<'\n';
}
int main()
{ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);int t;cin>>t;while(t--)	solve();return 0;
}

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

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

相关文章

【TC8】如何测试IOP中PHY芯片的Llink-up time

在TC8一致性测试用例中,物理层的测试用例分为两个部分:IOP和PMA。其中IOP中对PHY芯片的Link-up时间的测试,又包含三个测试用例。它们分别是: OABR_LINKUP_01: Link-up time - Trigger: Power on Link PartnerOABR_LINKUP_02: Link-up time - Trigger: Power on DUTOABR_LIN…

qt把虚拟键盘部署到arm开发板上(imx6ull)

分为了qt官方配置的虚拟键盘以及各路大神自己开源的第三方键盘&#xff0c;我本来想尝试利用官方键盘结果一直失败&#xff0c;最后放弃了&#xff0c;后面我用的第三方键盘参考了如下文章&#xff1a; https://blog.csdn.net/2301_76250105/article/details/136441243 https…

算法基础之台阶-Nim游戏

台阶-Nim游戏 核心思想&#xff1a;博弈论 可以看作第i阶台阶上有i个含有i个石子的堆这样所有台阶上一共n!个堆就变成了经典Nim优化&#xff1a;发现偶数阶台阶上2n堆异或 0 , 奇数阶台阶异或 原本石子数量 因此 当遍历到奇数阶时异或一下就行 #include <iostream>…

git 学习随笔

git 学习随笔 基本概念 git 对待数据类似快照流的形式而不是类似 cvs 那样的纪录文件随时间逐步积累的差异 git 中所有数据在存储钱都会计算校验和&#xff08;hash) 三种状态&#xff1a;已提交(committed)&#xff0c;已修改(modified)&#xff0c;已暂存(staged)。 add…

二叉树习题精讲-单值二叉树

单值二叉树 965. 单值二叉树 - 力扣&#xff08;LeetCode&#xff09;https://leetcode.cn/problems/univalued-binary-tree/description/ 判断这里面的所有数值是不是一样 方案1&#xff1a;遍历 方案2&#xff1a;拆分子问题 /*** Definition for a binary tree node.* struc…

AcWing 835. Trie字符串统计——算法基础课题解

AcWing 835. Trie 字符串统计 题目描述 维护一个字符串集合&#xff0c;支持两种操作&#xff1a; I x 向集合中插入一个字符串 &#x1d465;&#xff1b;Q x 询问一个字符串在集合中出现了多少次。 共有 &#x1d441; 个操作&#xff0c;所有输入的字符串总长度不超过 1…

k8s群集调度之 pod亲和 node亲和 标签指定

目录 一 调度约束 1.1K8S的 List-Watch 机制 ⭐⭐⭐⭐⭐ 1.1.1Pod 启动典型创建过程 二、调度过程 2.1Predicate&#xff08;预选策略&#xff09; 常见的算法 2.2priorities&#xff08;优选策略&#xff09;常见的算法 三、k8s将pod调度到指定node的方法 3.1指…

Python并发编程 06 进程、协程

文章目录 一、多进程调用二、Process类1、主要参数2、实例方法3、属性4、代码示例 三、进程通讯1、进程队列通讯2、管道通讯3、Manager对象 四、进程同步五、进程池六、协程1、协程简述2、用greenlet库实现协程3、用gevent库实现协程 一、多进程调用 与多线程调用相似 from m…

最强端侧多模态模型MiniCPM-V 2.5,8B 参数,性能超越 GPT-4V 和 Gemini Pro

前言 近年来&#xff0c;人工智能领域掀起了一股大模型热潮&#xff0c;然而大模型的巨大参数量级和高昂的算力需求&#xff0c;限制了其在端侧设备上的应用。为了打破这一局限&#xff0c;面壁智能推出了 MiniCPM 模型家族&#xff0c;致力于打造高性能、低参数量的端侧模型。…

leetcode 802.找到最终的安全状态

思路&#xff1a;拓补排序 其实这道题只要把顺序倒过来就行了&#xff0c;我们首先看到没有出度的反而是终端点&#xff0c;我们不如让它反过来成为没有入度的点是终端店&#xff0c;这样的话我们用度的个数来找到终端点就很容易了。 那么这样的话&#xff0c;题目中说若点满…

微信小程序 蓝牙打印esc编码格式

esc.js var encode require("./encoding.js") var app getApp(); var jpPrinter {    createNew: function() {      var jpPrinter {};var data [];var bar ["UPC-A", "UPC-E", "EAN13", "EAN8", "C…

【深度学习】xformers与pytorch的版本对应关系

https://github.com/facebookresearch/xformers/tree/v0.0.23 找tag&#xff1a; tag下面写了对应关系&#xff1a; 安装指令就是&#xff1a; pip install xformers0.0.23 --no-deps -i https://download.pytorch.org/whl/cu118

react ant 表格实现 拖拽排序和多选

项目背景 : react ant 要实现 : 有多选功能(实现批量删除 , 也可以全选) 可以拖拽(可以复制 , 方便顶部的搜索功能) 要实现效果如下 1 这是最初的拖拽功能实现 , 不能复制表格里的内容 , 不符合要求 2 更改了ROW的内容 , 实现了可以复制表格内容 代码 //控制是否可以选中表格…

Unity中自动生成地图(代完善)

地图中有水果、房子、树木和道路。道路能通到水果旁。 代码&#xff1a; using UnityEngine; using System.Collections.Generic; using System.Text;public class TilemapGenerator : MonoBehaviour {public int mapWidth 30;public int mapHeight 20;private int[,] map;…

基于粒子群算法的网络最优节点部署优化matlab仿真

目录 1.程序功能描述 2.测试软件版本以及运行结果展示 3.核心程序 4.本算法原理 5.完整程序 1.程序功能描述 基于粒子群算法的网络最优节点部署优化,实现WSN网络的节点覆盖最大化。 2.测试软件版本以及运行结果展示 MATLAB2022A版本运行 3.核心程序 .................…

Golang | Leetcode Golang题解之第118题杨辉三角

题目&#xff1a; 题解&#xff1a; func generate(numRows int) [][]int {ans : make([][]int, numRows)for i : range ans {ans[i] make([]int, i1)ans[i][0] 1ans[i][i] 1for j : 1; j < i; j {ans[i][j] ans[i-1][j] ans[i-1][j-1]}}return ans }

安装WordPress

第 1 步&#xff1a;下载并解压 wget https://wordpress.org/latest.tar.gz 然后使用以下命令提取包&#xff1a; tar -xzvf latest.tar.gz 第 2 步&#xff1a;创建数据库 比如数据库名称为wordpress&#xff0c;编码格式为 utf8mb4_general_ci 第 3 步&#xff1a;设置wp-con…

Notes for video: EDC-Con 2022/01 - EDC Conceptual Overview and Architecture

Eclipse Dataspace Connector 中文概念 Eclipse Dataspace Connector (EDC) 是一个开源项目&#xff0c;旨在提供一种标准化的方法来连接和共享数据空间中的数据。它是 Eclipse Foundation 下的一个项目&#xff0c;目标是促进数据共享和数据交换的互操作性。以下是 EDC 的一些…

【STL库源码剖析】list 简单实现

从此音尘各悄然 春山如黛草如烟 目录 list 的结点设计 list 的迭代器 list 的部分框架 迭代器的实现 容量相关相关函数 实现 insert 在指定位置插入 val 实现 push_back 在尾部进行插入 实现 erase 在指定位置删除 实现 pop_back 在尾部进行删除 实现 list 的头插、头删 实现…

代码质量与可维护性提升

代码质量和可维护性的提升是一个持续的过程&#xff0c;需要在开发过程中采取一系列的措施。下面是一些可以提高代码质量和可维护性的方法&#xff1a; 使用清晰的命名&#xff1a;使用有意义且易于理解的变量名、函数名和类名。这样可以增加代码的可读性和可理解性。 遵循编码…