zoukankan      html  css  js  c++  java
  • codeforces472B

    Design Tutorial: Learn from Life

     CodeForces - 472B 

    One way to create a task is to learn from life. You can choose some experience in real life, formalize it and then you will get a new task.

    Let's think about a scene in real life: there are lots of people waiting in front of the elevator, each person wants to go to a certain floor. We can formalize it in the following way. We have n people standing on the first floor, the i-th person wants to go to the fi-th floor. Unfortunately, there is only one elevator and its capacity equal to k (that is at most k people can use it simultaneously). Initially the elevator is located on the first floor. The elevator needs |a - b| seconds to move from the a-th floor to the b-th floor (we don't count the time the people need to get on and off the elevator).

    What is the minimal number of seconds that is needed to transport all the people to the corresponding floors and then return the elevator to the first floor?

    Input

    The first line contains two integers n and k (1 ≤ n, k ≤ 2000) — the number of people and the maximal capacity of the elevator.

    The next line contains n integers: f1, f2, ..., fn (2 ≤ fi ≤ 2000), where fi denotes the target floor of the i-th person.

    Output

    Output a single integer — the minimal time needed to achieve the goal.

    Examples

    Input
    3 2
    2 3 4
    Output
    8
    Input
    4 2
    50 100 50 100
    Output
    296
    Input
    10 3
    2 2 2 2 2 2 2 2 2 2
    Output
    8

    Note

    In first sample, an optimal solution is:

    1. The elevator takes up person #1 and person #2.
    2. It goes to the 2nd floor.
    3. Both people go out of the elevator.
    4. The elevator goes back to the 1st floor.
    5. Then the elevator takes up person #3.
    6. And it goes to the 2nd floor.
    7. It picks up person #2.
    8. Then it goes to the 3rd floor.
    9. Person #2 goes out.
    10. Then it goes to the 4th floor, where person #3 goes out.
    11. The elevator goes back to the 1st floor

    sol:一种较为显然的贪心就是按楼层排序后从高到低从客人,应该是最优的了

    #include <bits/stdc++.h>
    using namespace std;
    typedef int ll;
    inline ll read()
    {
        ll s=0;
        bool f=0;
        char ch=' ';
        while(!isdigit(ch))
        {
            f|=(ch=='-'); ch=getchar();
        }
        while(isdigit(ch))
        {
            s=(s<<3)+(s<<1)+(ch^48); ch=getchar();
        }
        return (f)?(-s):(s);
    }
    #define R(x) x=read()
    inline void write(ll x)
    {
        if(x<0)
        {
            putchar('-'); x=-x;
        }
        if(x<10)
        {
            putchar(x+'0'); return;
        }
        write(x/10);
        putchar((x%10)+'0');
        return;
    }
    #define W(x) write(x),putchar(' ')
    #define Wl(x) write(x),putchar('
    ')
    const int N=2005;
    int n,K,A[N];
    int main()
    {
        int i,ans=0;
        R(n); R(K);
        for(i=1;i<=n;i++) R(A[i]);
        sort(A+1,A+n+1);
        for(i=n;i>=1;i-=K)
        {
            int j=max(1,i-K+1);
            ans+=(A[i]-1)*2;
        }
        Wl(ans);
        return 0;
    }
    /*
    input
    3 2
    2 3 4
    output
    8
    
    input
    4 2
    50 100 50 100
    output
    296
    
    input
    10 3
    2 2 2 2 2 2 2 2 2 2
    output
    8
    */
    View Code
  • 相关阅读:
    进程池线程池
    线程与其操作方法
    生产者消费者模型
    Java反射机制详解
    ajax跨域原理以及解决方案
    数据库连接池的选择 Druid
    新目标
    让webstorm支持avalon语法自动补全
    使用IDEA和gradle搭建Spring MVC和MyBatis开发环境
    使用IDEA自带的rest client参数传递乱码问题
  • 原文地址:https://www.cnblogs.com/gaojunonly1/p/10585175.html
Copyright © 2011-2022 走看看