Jerrlee✅
2022-05-15 14:40:29
如果满足以下两个条件,则数组是美丽的:
数组中至少有
数组中至少有
求这个数组内包含的元素数量的最小值。
观察样例,发现当
当
#include<iostream>
using namespace std;
int main(){
int t;
cin>>t;
while(t--){
int a,b,c,d;
cin>>a>>b>>c>>d;
if(a>=c&&a<=d) cout<<a;
else if(c>=a&&c<=b) cout<<c;
else cout<<a+c;
cout<<endl;
}
}
AC 记录(洛谷)
AC 记录(CF)