1619D - New Year‘s Problem

1619D - New Year‘s Problem,第1张

1619D - New Year‘s Problem
#include
#include
#include
#include
using namespace std;
const int N = 1e3 + 10;
#define int long long

int n, m;
vector> p;
bool check (int tar) {
	vector abl(m);
	bool pair = 0;
	for (int i = 0; i < n; i ++) {
		int c = 0;
		 for(int j = 0; j < m; ++j){
            if(p[i][j] >= tar){
                abl[j] = true;
                c++;
            }
        }
		if (c > 1) pair = 1;
	}
	if (!pair && m > 1) return 0;
	bool ans = 1;
	for (bool t : abl) ans = ans && t;
	return ans;
}
signed main() {
    int _;
    cin >> _;
    while (_ --) {
    cin >> n >> m;
    p.assign(n, vector(m));
	for (int i = 0;  i< n; i ++) {
		for (int j = 0; j < m; j ++)
		{
		    cin >> p[i][j];
		}
	}	
    	int l = 1, r = 1e9;
    	while(l < r) {
    		int mid = (l + r  + 1)/ 2;
    		if (check(mid)) l = mid;
    		else r = mid - 1;
    	}
    	cout << l << endl;
    }
	return 0;
} 

首先如果能够至少达到x,那么一定至少能够达到x - 1,否则如果不能达到x,那么也不能够达到x + 1

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5690909.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存