zoukankan      html  css  js  c++  java
  • C

    It is winter now, and Max decided it’s about time he watered the garden.

    The garden can be represented as n consecutive garden beds, numbered from 1 to n. k beds contain water taps (i-th tap is located in the bed xi), which, if turned on, start delivering water to neighbouring beds. If the tap on the bed xi is turned on, then after one second has passed, the bed xi will be watered; after two seconds have passed, the beds from the segment [xi - 1, xi + 1] will be watered (if they exist); after j seconds have passed (j is an integer number), the beds from the segment [xi - (j - 1), xi + (j - 1)] will be watered (if they exist). Nothing changes during the seconds, so, for example, we can’t say that the segment [xi - 2.5, xi + 2.5] will be watered after 2.5 seconds have passed; only the segment [xi - 2, xi + 2] will be watered at that moment.

    The garden from test 1. White colour denotes a garden bed without a tap, red colour — a garden bed with a tap.
    The garden from test 1 after 2 seconds have passed after turning on the tap. White colour denotes an unwatered garden bed, blue colour — a watered bed.
    Max wants to turn on all the water taps at the same moment, and now he wonders, what is the minimum number of seconds that have to pass after he turns on some taps until the whole garden is watered. Help him to find the answer!

    Input
    The first line contains one integer t — the number of test cases to solve (1 ≤ t ≤ 200).

    Then t test cases follow. The first line of each test case contains two integers n and k (1 ≤ n ≤ 200, 1 ≤ k ≤ n) — the number of garden beds and water taps, respectively.

    Next line contains k integers xi (1 ≤ xi ≤ n) — the location of i-th water tap. It is guaranteed that for each condition xi - 1 < xi holds.

    It is guaranteed that the sum of n over all test cases doesn’t exceed 200.

    Note that in hacks you have to set t = 1.

    Output
    For each test case print one integer — the minimum number of seconds that have to pass after Max turns on some of the water taps, until the whole garden is watered.

    Example
    Input
    3
    5 1
    3
    3 3
    1 2 3
    4 1
    1
    Output
    3
    1
    4
    Note
    The first example consists of 3 tests:

    There are 5 garden beds, and a water tap in the bed 3. If we turn it on, then after 1 second passes, only bed 3 will be watered; after 2 seconds pass, beds [1, 3] will be watered, and after 3 seconds pass, everything will be watered.
    There are 3 garden beds, and there is a water tap in each one. If we turn all of them on, then everything will be watered after 1 second passes.
    There are 4 garden beds, and only one tap in the bed 1. It will take 4 seconds to water, for example, bed 4.

    #include <iostream>
    #include <cstring>
    #include <cstdio>
    #include <cmath>
    #include <algorithm>
    using namespace std;
    int t,n,k,x;
    int a[210];
    int cnt;
    int main()
    {
        ios::sync_with_stdio(0);
        cin.tie(0);
        cout.tie(0);
        //freopen("in","r",stdin);
        cin >> t;
        while(t--){
            cnt = 0;
            cin >> n >> k;
            int i;
            for(i = 1; i <= k; i++)
                cin >> a[i];
            cnt = max(a[1]-1,n - a[k]);//两边水龙头据边界花费的时间
            for(int i = 1; i < k; i++){
                int juli = a[i + 1] - a[i] - 1;//水龙头中间的距离
                if(juli & 1)
                    juli = juli / 2 + 1;
                else juli = juli / 2;
                cnt = max(cnt,juli);
            }
            cout << cnt + 1 << endl;
        }
        return 0;
    }
    

    找花费的时间,
    1,找边界,取最大值
    2中间两个水龙头的距离,分奇偶,偶/=2;奇/=2 + 1;
    3不要忘记加1,本身

    我也不知道为什么当时不会哎

  • 相关阅读:
    学习篇之函数就是对象
    @Controller和@RestController的区别
    maven 阿里云 国内镜像 中央仓库
    IntelliJ IDEA使用教程
    解决“无法从套接字读取更多数据”
    at java.util.Arrays.copyOfRange(Arrays.java:3209)导致的java.lang.OutOfMemoryError: Java heap space 错误的解决办法
    maven中引入ojdbc包
    Oralce增加表空间
    Web服务框架发展与REST服务开发
    Oralce解锁表
  • 原文地址:https://www.cnblogs.com/xcfxcf/p/12301617.html
Copyright © 2011-2022 走看看