Selection Contest for Rookies 4 E Polycarp's New Job

Posted chinakevin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Selection Contest for Rookies 4 E Polycarp's New Job相关的知识,希望对你有一定的参考价值。

考虑这样一个事实:较小边与较小边比较,较大边与较大边比较一定最优

不然,较大边与较小边比较有可能不能塞入,较小边与较大边比较有可能浪费,不更优,或者说,后者能够塞入的前者一定能塞入,前者能塞入的后者不一定能塞入

考虑每次维护当前较小边的最大值和当前较大边的最大值即可

时间复杂度:O(n)

#include<bits/stdc++.h>

using namespace std;

int n, x, y, a, b;
char c;

int main (void)
{
	scanf("%d",&n);
	for (; n; n--) {
		c=getchar(); scanf("%c%d%d",&c,&x,&y);
		if (x>y) swap(x,y);
		if (c==‘+‘) {
		    a=max(a,x);
			b=max(b,y);
		}
		else {
			if (a<=x&&b<=y) puts("YES");
			else puts("NO");
		}
	}
	return 0;
}

 

以上是关于Selection Contest for Rookies 4 E Polycarp's New Job的主要内容,如果未能解决你的问题,请参考以下文章

841. Keys and Rooms —— weekly contest 86

为啥在 Eclipse IDE for Enterprise Java Developers 2020-09 (4.17.0) 上安装 Roo 支持失败 内部版本 ID:20200910-1200 与

Testing for diversifying selection for two clades with a background clade

java.sql.SQLException: Access denied for user 'roo'@'localhost' (using password: YES

Codeforces Round #646 (Div. 2) A. Odd Selection(数学)

Codeforces Round #646 (Div. 2) A. Odd Selection(数学)