牛客训练营(一)补题

数值膨胀之美

M-数值膨胀之美_2025牛客寒假算法基础集训营1

迭代更新双指针(x、y)的值,从而得出答案。

cpp 复制代码
#include <bits/stdc++.h>
using namespace std;
#define int long long
pair<int,int> a[100005];
int b[100005];
int n;
void slove(){
	cin>>n;
	for(int i=0;i<n;i++){
		cin>>a[i].first;
		a[i].second=i;
		b[i]=a[i].first;
	}
	a[n].first=2e9+5;
	sort(a,a+n);
	int x=a[0].second,y=a[0].second;
	int m=max(a[0].first*2,a[n-1].first);
	int sum=m-min(a[0].first*2,a[1].first);
	for(int i=1;i<n;i++){
		while(a[i].second<x){
			x--;
			m=max(m,b[x]*2);
		}
		while(a[i].second>y){
			y++;
			m=max(m,b[y]*2);
		}
		sum=min(sum,m-min(a[0].first*2,a[i+1].first));
	}
	cout<<sum<<endl;
}

signed main() {
	ios::sync_with_stdio(false);
    std::cin.tie(0);
    cout.tie(0);
    int T=1;
    //cin>>T;
    while(T--){
    	slove();
	}
}

硝基甲苯之袭

J-硝基甲苯之袭_2025牛客寒假算法基础集训营1

在赛时的时候,想过用传暴力去写,但是一定会超时,所以就没交,赛后看了其他人的代码,其实只需要改动一行就可以。(具体看代码)

cpp 复制代码
#include <bits/stdc++.h>
using namespace std;
#define int long long
int a[200005];
int b[200005];
int n;
int sum;
void slove(){
	cin>>n;
	for(int i=1;i<=n;i++){
		cin>>a[i];
		b[a[i]]++;
	}
	for(int i=1;i<=200000;i++){
		for(int j=i;j<=200000;j+=i){//改后的代码每次时+i,而不是+1,会大大提高时间效率
//for(int j=1;j<=200000;j++)这是之前的代码,这样时间复杂度大约在O(1e10)
			int x=i^j;
			if(gcd(x,j)==i&&x<=200000&&j<x){//这个位置就不能是gcd(i,j)而是改成gcd(x,j)
				sum+=b[x]*b[j];
			}
		}
	}
	cout<<sum<<endl;
}
signed main() {
	ios::sync_with_stdio(false);
    std::cin.tie(0);
    cout.tie(0);
    int T=1;
    //cin>>T;
    while(T--){
    	slove();
	}
}
相关推荐
山居秋暝LS24 分钟前
目标跟踪之sort算法(3)
python·算法·目标跟踪·sort
python算法(魔法师版)3 小时前
C++游戏开发深度解析
开发语言·c++·c
siy23335 小时前
[c语言日寄]assert函数功能详解
c语言·开发语言·笔记·学习·算法
不停留5 小时前
贪心算法-跳跃游戏
前端·javascript·数据结构·算法·贪心算法
Ning_.6 小时前
LeetCode 349题解:两个数组的交集
数据结构·算法·leetcode
xiao--xin6 小时前
LeetCode100之全排列(46)--Java
java·算法·leetcode·回溯
滨HI06 小时前
18. 四数之和【力扣】——两层循环后的双指针法
数据结构·c++·算法·leetcode·职场和发展
像污秽一样7 小时前
AI刷题-蛋糕工厂产能规划、优质章节的连续选择
数据结构·c++·算法·dp·队列
_GR8 小时前
2015年蓝桥杯第六届C&C++大学B组真题及代码
c语言·数据结构·c++·算法·贪心算法·蓝桥杯·动态规划
柠石榴8 小时前
【算法】快速排序2
c++·算法·排序算法