Acwingf周赛27 B

这篇博客讨论了一种在二维矩阵中寻找第k大数的算法问题。给定矩阵的行数n、列数m和整数k,目标是找到矩阵中第k大的数。博主提出了使用二分查找的方法来解决这个问题,通过计算小于等于目标值的数的个数,最终找到满足条件的最小值。时间复杂度为O(n * (n + m))。代码实现中包含了检查条件和二分查找的过程。
摘要由CSDN通过智能技术生成

B.
题意: 给定n和m,表示矩阵的行和列。矩阵中每个元素的大小为i*j。给定k,输出矩阵中第k大的数。n,m = 5e5
思路: 线性筛(bushi)
二分。找满足条件的最小值,满足有>=k个数比它小,所有满足条件的数中的最小值即是答案。花O(n)的时间check
时间复杂度: O(n) * O(n + m)
代码:

// Problem: 第k个数
// Contest: AcWing
// URL: https://www.acwing.com/problem/content/4083/
// Memory Limit: 256 MB
// Time Limit: 1000 ms
// 
// Powered by CP Editor (https://cpeditor.org)

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<complex>
#include<cstring>
#include<cmath>
#include<vector>
#include<map>
#include<unordered_map>
#include<list>
#include<set>
#include<queue>
#include<stack>
#define OldTomato ios::sync_with_stdio(false),cin.tie(nullptr),cout.tie(nullptr)
#define fir(i,a,b) for(int i=a;i<=b;++i) 
#define mem(a,x) memset(a,x,sizeof(a))
#define p_ priority_queue
// round() 四舍五入 ceil() 向上取整 floor() 向下取整
// lower_bound(a.begin(),a.end(),tmp,greater<ll>()) 第一个小于等于的
// #define int long long //QAQ
using namespace std;
typedef complex<double> CP;
typedef pair<int,int> PII;
typedef long long ll;
// typedef __int128 it;
const double pi = acos(-1.0);
const int INF = 0x3f3f3f3f;
const ll inf = 1e18;
const int N = 2e5+10;
const int M = 1e6+10;
const int mod = 1e9+7;
const double eps = 1e-6;
inline int lowbit(int x){ return x&(-x);}
template<typename T>void write(T x)
{
    if(x<0)
    {
        putchar('-');
        x=-x;
    }
    if(x>9)
    {
        write(x/10);
    }
    putchar(x%10+'0');
}
template<typename T> void read(T &x)
{
    x = 0;char ch = getchar();ll f = 1;
    while(!isdigit(ch)){if(ch == '-')f*=-1;ch=getchar();}
    while(isdigit(ch)){x = x*10+ch-48;ch=getchar();}x*=f;
}
#define int long long
int n,m,k,T;
bool check(int x)
{
	int ans = 0;
	for(int i=1;i<=n;++i)
	{
		ans += min(m,x/i);
	}
	return ans >= k;
}
void solve()
{
   read(n); read(m); read(k);
   // for(int i=1;i<=n;++i)
   // {
   	 // for(int j=1;j<=m;++j)
   	 // {
   	 	// printf("%d ",i*j);
   	 // }
   	 // printf("\n");
   // }
   int l = 0,r = n*m+1;
   while(l < r)
   {
   	 int mid = l+r>>1;
   	 if(check(mid)) r = mid;
   	 else l = mid+1;
   }
   write(l);
}
signed main(void)
{  
   T = 1;
   // OldTomato; cin>>T;
   // read(T);
   while(T--)
   {
   	 solve();
   }
   return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值