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~
  • 相关阅读:
    CSS选择器
    HTML2
    html
    http协议
    python--Selectors模块/队列
    Linux系统管理02----目录和文件管理
    Linux系统管理01-----系统命令
    02作业 linux第一章和第三章命令
    01作业 Linux系统管理应用
    01:计算机硬件组层与基本配置------02计算机系统硬件核心知识
  • 原文地址:https://www.cnblogs.com/Archger/p/12774695.html
Copyright © 2011-2022 走看看