zoukankan      html  css  js  c++  java
  • upc组队赛6 Odd Gnome【枚举】

    Odd Gnome

    题目描述

    According to the legend of Wizardry and Witchcraft, gnomes live in burrows underground, known as gnome holes. There they dig
    up and eat the roots of plants, creating little heaps of earth around gardens, causing considerable damage to them.
    Mrs. W, very annoyed by the damage, has to regularly de-gnome her garden by throwing the gnomes over the fence. It is a lot of work to throw them one by one because there are so many. Fortunately, the species is so devoted to their kings that each group always follows its king no matter what. In other words, if she were to throw just the king over the fence, all the other gnomes in that group would leave.
    So how does Mrs. W identify the king in a group of gnomes? She knows that gnomes travel in a certain order, and the king, being special, is always the only gnome who does not follow that order.
    Here are some helpful tips about gnome groups:
    • There is exactly one king in a group.
    • Except for the king, gnomes arrange themselves in strictly increasing ID order.
    • The king is always the only gnome out of that order.
    • The king is never the first nor the last in the group, because kings like to hide themselves.
    Help Mrs. W by finding all the kings!

    输入

    The input starts with an integer n, where 1 ≤ n ≤ 100, representing the number of gnome groups. Each of the n following lines contains one group of gnomes, starting with an integer g, where 3 ≤ g ≤ 1 000,representing the number of gnomes in that group. Following on the same line are g space-separated integers, representing the gnome ordering. Within each group all the integers (including the king) are unique and in the range [0, 10 000]. Excluding the king, each integer is exactly one more than the integer preceding it.

    输出

    For each group, output the king’s position in the group (where the first gnome in line is number one).

    样例输入

    3
    7 1 2 3 4 8 5 6
    5 3 4 5 2 6
    4 10 20 11 12
    

    样例输出

    5
    4
    2
    

    题解

    给出一个序列,序列中有一个King,除了King其他都是递增的,找出King的位置
    King不会在第一个和最后一个的位置
    那很明显就是枚举2--n-1的位置,找出满足以下两个条件的位置
    1.a[i-1] < a[i+1]
    2.a[i] > a[i + 1] && a[i] > a[i - 1] 或者 a[i - 1] < a[i + 1]&& a[i] < a[i + 1]

    代码

    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    #include<string>
    #include<iostream>
    using namespace std;
    const int maxn = 1000005;
    int a[maxn];
    int n;
    int main() {
        int t;
        scanf("%d", &t);
        while (t--) {
            scanf("%d", &n);
            for (int i = 1; i <= n; i++) {
                scanf("%d", &a[i]);
            }
            for (int i = 2; i < n; i++) 
                if ((a[i] > a[i + 1] && a[i] > a[i - 1] && a[i - 1] < a[i + 1] )
                  ||( a[i - 1] < a[i + 1]&& a[i] < a[i + 1] && a[i] < a[i - 1])) {
                    printf("%d
    ", i);
                    break;
                }
        }
        return 0;
    }
    
  • 相关阅读:
    docker 报错 Error response from daemon: error while validating Root CA Certificate: x509: certificate has expired or is not yet valid
    Python list 与 str 互转
    小程序 url传参 参数值过长 接收时候 内容不全的问题
    es6新增对象字面量语法
    Squid Proxy
    常见开发工具安装方法
    批判世界之前先清理你的房间
    windows的双网卡问题
    SSH
    【逆向】Yara规则编写安装与使用教程
  • 原文地址:https://www.cnblogs.com/llke/p/10800072.html
Copyright © 2011-2022 走看看