zoukankan      html  css  js  c++  java
  • CF 590D Top Secret Task【dp递推+滚动数组】【好题】

    D. Top Secret Task
    time limit per test
    3 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    A top-secret military base under the command of Colonel Zuev is expecting an inspection from the Ministry of Defence. According to the charter, each top-secret military base must include a top-secret troop that should... well, we cannot tell you exactly what it should do, it is a top secret troop at the end. The problem is that Zuev's base is missing this top-secret troop for some reasons.

    The colonel decided to deal with the problem immediately and ordered to line up in a single line all n soldiers of the base entrusted to him. Zuev knows that the loquacity of the i-th soldier from the left is equal to qi. Zuev wants to form the top-secret troop using k leftmost soldiers in the line, thus he wants their total loquacity to be as small as possible (as the troop should remain top-secret). To achieve this, he is going to choose a pair of consecutive soldiers and swap them. He intends to do so no more than s times. Note that any soldier can be a participant of such swaps for any number of times. The problem turned out to be unusual, and colonel Zuev asked you to help.

    Determine, what is the minimum total loquacity of the first k soldiers in the line, that can be achieved by performing no more than s swaps of two consecutive soldiers.

    Input

    The first line of the input contains three positive integers nks (1 ≤ k ≤ n ≤ 1501 ≤ s ≤ 109) — the number of soldiers in the line, the size of the top-secret troop to be formed and the maximum possible number of swap operations of the consecutive pair of soldiers, respectively.

    The second line of the input contains n integer qi (1 ≤ qi ≤ 1 000 000) — the values of loquacity of soldiers in order they follow in line from left to right.

    Output

    Print a single integer — the minimum possible total loquacity of the top-secret troop.

    Examples
    input
    3 2 2
    2 4 1
    
    output
    3
    
    input
    5 4 2
    10 1 6 2 5
    
    output
    18
    
    input
    5 2 3
    3 1 4 2 5
    
    output
    3
    
    Note

    In the first sample Colonel has to swap second and third soldiers, he doesn't really need the remaining swap. The resulting soldiers order is: (214). Minimum possible summary loquacity of the secret troop is 3. In the second sample Colonel will perform swaps in the following order:

    1. (10, 1, 6 — 2, 5)
    2. (10, 1, 2, 6 — 5)

    The resulting soldiers order is (10, 1, 2, 5, 6).

    Minimum possible summary loquacity is equal to 18.


    有n个数,有s此操作,每次操作可以交换两个相邻的数,现在要求前经过s此操作,前k个数的和最小为多少

    则dp[i][j][k]表示前i位中选,放了j个,用了k次操作,递推即可


    注意s超过n(n-1)/2时最后肯定为k个最小的和

    #include <bits/stdc++.h>
    #define INF 0x3f3f3f3f
    #define ms(x,y) memset(x,y,sizeof(x))
    using namespace std;
    
    typedef long long ll;
    
    const double pi = acos(-1.0);
    const int mod = 1e9 + 7;
    const int maxn = 155;
    
    ll dp[2][maxn][maxn*maxn];
    ll a[maxn];
    
    int main()
    {
    	//freopen("in.txt","r",stdin);
    	//freopen("out.txt","w",stdout);
    	int n, k, s;
    	while (~scanf("%d%d%d", &n, &k, &s))
    	{
    		ms(dp, INF);
    		dp[0][0][0] = 0;
    		for (int i = 1; i <= n; ++i)
    		{
    			scanf("%lld", &a[i]);
    		}
    		for (int i = 1; i <= n; ++i)
    		{
    			ms(dp[i & 1][0], 0);
    			for (int j = 1; j <= i; ++j)
    			{
    				for (int k = 0; k <= i*j; ++k)
    				{
    					dp[i & 1][j][k] = dp[(i - 1) & 1][j][k];
    					if (k >= i - j)
    					{
    						dp[i & 1][j][k] = min(dp[i & 1][j][k], dp[(i - 1) & 1][j - 1][k - (i - j)] + a[i]);
    					}
    				}
    			}
    		}
    		ll ans = INF;
    		for (int i = 0; i <= min(s,(n*(n-1)/2)); i++)
    		{
    			ans = min(ans, dp[n & 1][k][i]);
    		}
    		printf("%lld
    ", ans);
    	}
    	return 0;
    }







    Fighting~
  • 相关阅读:
    HDOJ1267 下沙的沙子2[DP或卡特兰数]
    HDOJ1711 Number Sequence[KMP模版]
    HDOJ2546 饭卡[DP01背包问题]
    寻找必败态——一类博弈问题的快速解法
    kmp 模版
    网络流题目
    HDOJ1261 字串数[组合+大数]
    传说中效率最高的最大流算法(Dinic) [转]
    ACM博弈论
    HDOJ1061 Rightmost Digit[简单数学题]
  • 原文地址:https://www.cnblogs.com/Archger/p/12774695.html
Copyright © 2011-2022 走看看