zoukankan      html  css  js  c++  java
  • [leetcode-658-Find K Closest Elements]

    Given a sorted array, two integers k and x, find the k closest elements to x in the array. The result should also be sorted in ascending order. If there is a tie, the smaller elements are always preferred.

    Example 1:

    Input: [1,2,3,4,5], k=4, x=3
    Output: [1,2,3,4]
    

    Example 2:

    Input: [1,2,3,4,5], k=4, x=-1
    Output: [1,2,3,4]
    

    Note:

    1. The value k is positive and will always be smaller than the length of the sorted array.
    2. Length of the given array is positive and will not exceed 104
    3. Absolute value of elements in the array and x will not exceed 104

    思路:

    用一个map记录数组中的值距离x的大小,利用map有序的特性。

            int SIZE = arr.size();
            map<int, vector<int>> m;
            for(int i = 0; i < SIZE; ++i) {
                int val = arr[i];
                m[abs(val - x)].push_back(val);
            }
            vector<int> ans;
            auto it = m.begin();
            while(ans.size() < k) {
                vector<int> &v = it->second;
                sort(v.begin(), v.end());
                int i = 0;
                while(i < v.size() && k > ans.size()) {
                    ans.push_back(v[i++]);
                }
                ++it;
            }
            sort(ans.begin(), ans.end());
            return ans;
    vector<int> findClosestElements(vector<int>& arr, int k, int x)
    {
        vector< int > ret;
        vector< int > cur;
        auto it = lower_bound( arr.begin(), arr.end(), x );////cout << *it << endl;
    
        long long sum = 0;
        long long min_val = 0xc0c0c0c0;
        auto it_start = ( it - k < arr.begin() ) ? arr.begin() : it-k;
        auto it_end = ( it > arr.end() - k ) ? arr.end() - k : it;
    
        //cout << *it_start << endl;
        //cout << *it_end << endl;
    
        for( auto it_cur = it_start; it_cur <= it_end; it_cur++ )
        {
            sum = 0;
            cur.clear();
            for( int i = 0; i < k; i++ )
            {
                cur.push_back( *(it_cur+i) );
                sum += abs( ( *(it_cur+i) - x ) );
            }
            if( sum < min_val )
            {
                min_val = sum;
                swap( ret, cur );
            }
        }
    
        return ret;
    }
  • 相关阅读:
    phpmyadmin设置密码,不用登录直接进入
    如何将本地文件复制到远程服务器听语音
    win7 64位wamp2.5无法启动MSVCR110.DLL丢失听语音
    最大连接数:60 iops:150 什么概念?
    北京可以备案什么域名
    远程桌面命令是什么 如何使用命令连接远程桌面
    如何知道电脑是几核?
    nohup命令与&区别,jobs,fg,bg,Ctrl-Z、Ctrl-C、Ctrl-D
    Shell 文件包含
    Shell 输入/输出重定向
  • 原文地址:https://www.cnblogs.com/hellowooorld/p/7352757.html
Copyright © 2011-2022 走看看