zoukankan      html  css  js  c++  java
  • Codeforces 456A

    题目链接:http://codeforces.com/problemset/problem/456/A

    One day Dima and Alex had an argument about the price and quality of laptops. Dima thinks that the more expensive a laptop is, the better it is. Alex disagrees. Alex thinks that there are two laptops, such that the price of the first laptop is less (strictly smaller) than the price of the second laptop but the quality of the first laptop is higher (strictly greater) than the quality of the second laptop.

    Please, check the guess of Alex. You are given descriptions of n laptops. Determine whether two described above laptops exist.

    Input

    The first line contains an integer n (1 ≤ n ≤ 105) — the number of laptops.

    Next n lines contain two integers each, ai and bi (1 ≤ ai, bi ≤ n), where ai is the price of the i-th laptop, and bi is the number that represents the quality of the i-th laptop (the larger the number is, the higher is the quality).

    All ai are distinct. All bi are distinct.

    Output

    If Alex is correct, print "Happy Alex", otherwise print "Poor Alex" (without the quotes).

    Examples
    Input
    2
    1 2
    2 1
    Output
    Happy Alex

    题解:水水
     1 #include <iostream>
     2 #include <string>
     3 #include <cstring>
     4 #include <algorithm>
     5 #include <cmath>
     6 #include <map>
     7 #include <set>
     8 using namespace std;
     9 #define N 100010
    10 struct com
    11 {
    12     int x,y;
    13 }a[N];
    14 bool cmp(com l,com m){
    15     if(l.x==m.x) return l.y>m.y;
    16     else return l.x<m.x;
    17 }
    18 int main()
    19 {
    20     int n;
    21     while(cin>>n){
    22         for(int i=0;i<n;i++){
    23             cin>>a[i].x>>a[i].y;
    24         }
    25         sort(a,a+n,cmp);
    26         int flag=0;
    27         for(int i=1;i<n;i++){
    28             if(a[i].x>a[i-1].x&&a[i].y<a[i-1].y){
    29                 flag=1;
    30             }
    31             if(flag) break;
    32         }
    33         if(flag) cout<<"Happy Alex"<<endl;
    34         else cout<<"Poor Alex"<<endl;
    35     }
    36     return 0;
    37 }
  • 相关阅读:
    DELPHI 表格控件 DBGridEh 属性设置详解
    Delphi保存网页中的图片
    Delphi 文件转换Base64
    CEF 各个版本适应的平台参考表
    让dcef3支持mp3和h.264 mp4解码播放
    Cef 重写alert与confirm弹窗
    dcef3 基本使用经验总结
    CEF3 命令行 CefCommandLine 所有选项 与 开发中使用的测试网址
    php连接sql server(win10+phpstudy+navicat+php+sql server)
    C语言随机数
  • 原文地址:https://www.cnblogs.com/wydxry/p/7475490.html
Copyright © 2011-2022 走看看