zoukankan      html  css  js  c++  java
  • Codeforces 433 C. Ryouko's Memory Note


    C. Ryouko's Memory Note
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Ryouko is an extremely forgetful girl, she could even forget something that has just happened. So in order to remember, she takes a notebook with her, called Ryouko's Memory Note. She writes what she sees and what she hears on the notebook, and the notebook became her memory.

    Though Ryouko is forgetful, she is also born with superb analyzing abilities. However, analyzing depends greatly on gathered information, in other words, memory. So she has to shuffle through her notebook whenever she needs to analyze, which is tough work.

    Ryouko's notebook consists of n pages, numbered from 1 to n. To make life (and this problem) easier, we consider that to turn from page x to page y|x - y| pages should be turned. During analyzing, Ryouko needs m pieces of information, the i-th piece of information is on page ai. Information must be read from the notebook in order, so the total number of pages that Ryouko needs to turn is .

    Ryouko wants to decrease the number of pages that need to be turned. In order to achieve this, she can merge two pages of her notebook. If Ryouko merges page x to page y, she would copy all the information on page x to y (1 ≤ x, y ≤ n), and consequently, all elements in sequence a that was x would become y. Note that x can be equal to y, in which case no changes take place.

    Please tell Ryouko the minimum number of pages that she needs to turn. Note she can apply the described operation at most once before the reading. Note that the answer can exceed 32-bit integers.

    Input

    The first line of input contains two integers n and m (1 ≤ n, m ≤ 105).

    The next line contains m integers separated by spaces: a1, a2, ..., am (1 ≤ ai ≤ n).

    Output

    Print a single integer — the minimum number of pages Ryouko needs to turn.

    Sample test(s)
    input
    4 6
    1 2 3 4 3 2
    
    output
    3
    
    input
    10 5
    9 4 3 8 8
    
    output
    6
    
    Note

    In the first sample, the optimal solution is to merge page 4 to 3, after merging sequence a becomes {1, 2, 3, 3, 3, 2}, so the number of pages Ryouko needs to turn is |1 - 2| + |2 - 3| + |3 - 3| + |3 - 3| + |3 - 2| = 3.

    In the second sample, optimal solution is achieved by merging page 9 to 4.



    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <algorithm>
    #include <vector>
    
    using namespace std;
    
    const int maxn=100100;
    
    typedef long long int LL;
    
    int n,m;
    LL a[maxn];
    vector<int> near[maxn];
    
    int main()
    {
        cin>>n>>m;
        for(int i=0;i<m;i++)
        {
            cin>>a[i];
        }
        LL cur=0,orz;
        for(int i=0;i<m-1;i++)
        {
            cur+=abs(a[i+1]-a[i]);
        }
        orz=cur;
        for(int i=0;i<m;i++)
        {
            if(i-1>=0&&a[i-1]!=a[i])
            {
                near[a[i]].push_back(a[i-1]);
            }
            if(i+1<m&&a[i]!=a[i+1])
            {
                near[a[i]].push_back(a[i+1]);
            }
        }
        for(int i=1;i<=n;i++)
        {
            int sz=near[i].size();
            if(sz)
            {
                sort(near[i].begin(),near[i].end());
                LL change=0;int mid=near[i][sz/2];
                for(int j=0;j<sz;j++)
                {
                    change+=abs(near[i][j]-mid)-abs(near[i][j]-i);
                }
                cur=min(cur,orz+change);
            }
        }
        cout<<cur<<endl;
        return 0;
    }
    



  • 相关阅读:
    Java8 lambda表达式10个示例
    我和阿里云RDS的故事
    Spring Mvc 传递参数要controller出现了400,日期参数全局处理,格式化yyyy-MM-dd 和yyyy-MM-dd HH:mm:ss
    剑指Offer_36_两个链表的第一个公共结点
    剑指Offer_35_数组中的逆序对
    剑指Offer_34_找出字符串中第一个只出现一次的字符
    剑指Offer_33_丑数
    剑指Offer_32_把数组排成最小的数
    剑指Offer_31_整数中1出现的次数(从1到n整数中1出现的次数)
    剑指Offer_30_连续子数组的最大和
  • 原文地址:https://www.cnblogs.com/mengfanrong/p/3825175.html
Copyright © 2011-2022 走看看