疯狂队列-网易2018校招内推

问题

题目:[疯狂队列]

思路

这种题目应该算是所谓的找规律题目,找到了之后,两边分别开始放。其实,规律背后应该是有数学证明的,但是这个暂时先省略。笔试的时候没时间,拿到了只能去试了。
这个题我觉得值得一说是,利用deque能稍微快点搞定。
对于最后一个元素位置的选择要判断。

代码

#include 
#include 
#include 
#include 
int main( void ){
    int n = 0;
    while(std::cin >> n){
        std::vector<int> arr;
        for(int i = 0; i < n; ++i){
            int t = 0;
            std::cin >> t;
            arr.push_back(t);
        }
        std::sort(arr.begin(), arr.end());
        std::deque<int> que;
        que.push_back(arr[n-1]);

        int ans = 0;
        int i = 0;
        int j = n-2;
        int flag = 1;
        while(i<=j){
            if(flag == 1){
                flag = 2; // for next loop
                que.push_front( arr[i] );
                ++i;
                if(i <= j){
                    que.push_back(arr[i]);
                    ++i;
                }
            }
            else{
                flag = 1;
                que.push_front( arr[j] );
                --j;
                if(i <= j){
                    que.push_back(arr[j]);
                    --j;
                }
            }
        }
        // 检查最后的元素是否放置合理,不是左侧就是右侧
        int sz = que.size();
        if( abs( que[sz-1] - que[sz-2] ) < abs( que[sz-1] - que[0] ) ){
            que.push_front(que[sz-1]);
            que.pop_back();
        }
        for( int i = 0; i < que.size() - 1; ++i ){
            ans += abs( (que[i+1] - que[i]) );
        }
        std::cout << ans << std::endl;
    }
    return 0;
}

你可能感兴趣的:(ACM-数据结构,校招)