题目链接:http://codeforces.com/contest/456/problem/A
提示:一共有n个数,而且a[i],b[i]都<=n;所以我们只需要找当a!=b的时候就行了,代码如下:
#include <cstdio>
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
bool ok=0;
int m,a,b;
cin>>m;
for(int i=0; i<m; i++)
{
cin>>a>>b;
if(a!=b)
{
ok=1;
break;
}
}
if(ok)
puts("Happy Alex");
else
puts("Poor Alex");
return 0;
}