蓝桥杯刷题(二分)

前言:

最近学校的学业有点重,好多课的作业一下布置导致我时间紧张,今天好不容易找到了整块的时间来刷刷题,不过有几道题难度对我来说有一点大了,所以到现在为止也没做几道,希望自己在后面能更勤奋一点吧。

正文:

1、分巧克力:

cpp 复制代码
#include<bits/stdc++.h>
using namespace std;
const int N=1e5+9;
int n,k,h[N],w[N],ans;
bool check(int x){
	int num=0;
	for(int i=1;i<=n;i++){
		num+=(h[i]/x)*(w[i]/x);
		if(num>=k)return 1;
	}
	return 0;
}
int main(){
	cin>>n>>k;
	for(int i=1;i<=n;i++)cin>>h[i]>>w[i];
	long long l=1,r=1e5,mid;
	while(l<r){
		mid=(l+r+1)/2;
		if(check(mid))l=mid;
		else r=mid-1;
	}
	cout<<r<<endl;
	return 0;
}

2、管道:

cpp 复制代码
#include<bits/stdc++.h>
#define x first
#define y second
using namespace std;
const int N=1e5+10;
typedef long long ll;
int n,m;
pair<int,int>w[N],q[N];
bool check(int mid){
	int cnt=0;
	for(int i=1;i<=n;i++){
		int L=w[i].x,S=w[i].y;
		if(mid>=S){
			int t=mid-S;
			int l=max(1,L-t),r=min((ll)m,(ll)L+t);
			q[cnt++]={l,r};
		}
	}
	sort(q,q+cnt);
	int st = -1, ed = -1;
    for(int i=0;i<cnt;i++){
        if (q[i].x <= ed + 1) ed = max(ed, q[i].y);
        else st = q[i].x, ed = q[i].y;
    }
    return st==1&ed==m;
}
int main(){
	cin>>n>>m;
	for(int i=1;i<=n;i++){
		cin>>w[i].x>>w[i].y;
	}
	ll l=0,r=2e9;
	while(l<r){
		ll mid=l+r>>1;
		if(check(mid))r=mid;
		else l=mid+1;
	}
	cout<<r<<endl;
	return 0;
}

3、技能升级:

cpp 复制代码
#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
const int N = 100010;
int n, m;
int a[N], b[N];
bool check(int mid)
{
    LL res = 0;
    for (int i = 0; i < n; i ++ )
        if (a[i] >= mid)
            res += (a[i] - mid) / b[i] + 1;
    return res >= m;
}
int main()
{
    scanf("%d%d", &n, &m);
    for (int i = 0; i < n; i ++ ) scanf("%d%d", &a[i], &b[i]);
    int l = 0, r = 1e6;
    while (l < r)
    {
        int mid = l + r + 1 >> 1;
        if (check(mid)) l = mid;
        else r = mid - 1;
    }
    LL res = 0, cnt = 0;
    for (int i = 0; i < n; i ++ )
        if (a[i] >= r)
        {
            int c = (a[i] - r) / b[i] + 1;
            int end = a[i] - (c - 1) * b[i];
            cnt += c;
            res += (LL)(a[i] + end) * c / 2;
        }
    printf("%lld\n", res - (cnt - m) * r);
    return 0;
}

后记:

之后要开会,不知道大学怎么这么多破事。

相关推荐
X journey5 小时前
机器学习进阶(13):支持向量机SVM
算法·机器学习·支持向量机
洛水水5 小时前
【力扣100题】30.二叉树的直径
算法·leetcode·职场和发展
REDcker6 小时前
C++变量存储与ELF段布局详解 从const全局到rodata与nm_readelf验证实践
java·c++·面试
gihigo19986 小时前
Bezier曲线曲面生成算法
算法
平行侠7 小时前
024多精度大整数 - 突破硬件精度限制的任意精度运算
数据结构·算法
IronMurphy7 小时前
【算法四十五】139. 单词拆分
算法
王老师青少年编程8 小时前
csp信奥赛C++高频考点专项训练之字符串 --【字符串排序】:合并序列
c++·字符串·csp·高频考点·信奥赛·字符串排序·合并序列
洛水水8 小时前
【力扣100题】32.将有序数组转换为二叉搜索树
数据结构·算法·leetcode
handler018 小时前
UDP协议与网络通信知识点
c语言·网络·c++·笔记·网络协议·udp
如竟没有火炬9 小时前
用队列实现栈
开发语言·数据结构·python·算法·leetcode·深度优先