zoukankan      html  css  js  c++  java
  • CF Covered Path (贪心)

    Covered Path
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    The on-board computer on Polycarp's car measured that the car speed at the beginning of some section of the path equals v1 meters per second, and in the end it is v2 meters per second. We know that this section of the route took exactly t seconds to pass.

    Assuming that at each of the seconds the speed is constant, and between seconds the speed can change at most by d meters per second in absolute value (i.e., the difference in the speed of any two adjacent seconds does not exceed d in absolute value), find the maximum possible length of the path section in meters.

    Input

    The first line contains two integers v1 and v2 (1 ≤ v1, v2 ≤ 100) — the speeds in meters per second at the beginning of the segment and at the end of the segment, respectively.

    The second line contains two integers t (2 ≤ t ≤ 100) — the time when the car moves along the segment in seconds, d (0 ≤ d ≤ 10) — the maximum value of the speed change between adjacent seconds.

    It is guaranteed that there is a way to complete the segment so that:

    • the speed in the first second equals v1,
    • the speed in the last second equals v2,
    • the absolute value of difference of speeds between any two adjacent seconds doesn't exceed d.
    Output

    Print the maximum possible length of the path segment in meters.

    Sample test(s)
    input
    5 6
    4 2
    output
    26
    input
    10 10
    10 0
    output
    100





    哈哈,终于可以完全理解的A出一道贪心题了。假设每个点的速度是V,剩余的时间是T_S,加速量是X,那么需要满足 V + X <= V_2 + T_S * d,以此来更新每个点的速度就行。
     1 #include <iostream>
     2 #include <cstdio>
     3 using    namespace    std;
     4 
     5 int    main(void)
     6 {
     7     int    v_1,v_2,t,d;
     8     int    sum = 0;
     9 
    10     cin >> v_1 >> v_2;
    11     cin >> t >> d;
    12     sum += v_1;
    13 
    14     int    v = v_1;
    15     for(int i = 2;i <= t;i ++)
    16         for(int j = d;j >= -d;j --)
    17             if(v + j <= v_2 + (t - i) * d)
    18             {
    19                 v += j;
    20                 sum += v;
    21                 break;
    22             }
    23     cout << sum << endl;
    24 
    25     return    0;
    26 }
  • 相关阅读:
    上传预览图片
    css3图片3D翻转效果
    获取新浪天气api显示天气情况(转)
    matlab添加M_map工具箱(转 http://blog.sina.com.cn/s/blog_491b86bf0100srt9.html)
    Matlab read_grib.r4 安装新方法(转自:http://blog.sina.com.cn/s/blog_9f36648b010179s7.html)
    grb文件的读取
    Windows 7 防火墙对Virtualbox guest的影响
    Virtualbox修改bios信息安装Windows XP OEM
    Wordpress编辑器(Tinymce)在Chrome中动态修改图片大小
    Android流行的框架整理
  • 原文地址:https://www.cnblogs.com/xz816111/p/4442864.html
Copyright © 2011-2022 走看看