Codeforces 456 A. Laptops
Posted ITAK
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces 456 A. Laptops相关的知识,希望对你有一定的参考价值。
题目链接: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;
以上是关于Codeforces 456 A. Laptops的主要内容,如果未能解决你的问题,请参考以下文章
Codeforces Round #260 (Div. 2) A
Codeforces 456C - Boredom(简单DP)