A. Laptops1100 / 排序
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Laptops1100 / 排序相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/456/A
#include<bits/stdc++.h>
using namespace std;
const int N=1e5+10;
vector<pair<int,int>>ve;
int n;
int main(void)
{
cin>>n;
for(int i=0;i<n;i++)
{
int a,b; cin>>a>>b;
ve.push_back({a,b});
}
sort(ve.begin(),ve.end());
bool flag=0;
for(int i=0;i<ve.size()-1;i++)
{
if(ve[i].first<=ve[i+1].first&&ve[i].second>=ve[i+1].second) flag=1;
}
if(flag) puts("Happy Alex");
else puts("Poor Alex");
return 0;
}
以上是关于A. Laptops1100 / 排序的主要内容,如果未能解决你的问题,请参考以下文章
初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段
初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段