P4995 跳跳!

题目链接

https://www.luogu.com.cn/problem/solution/P4995

题目思路

就是一高一低来回跳,由于数据大,所以答案用long long(用int只a一半)

题目代码

#include <iostream>
#include <algorithm>

using namespace std;
typedef long long LL;
const int N = 1010;
int s[N];
int n;


int main()
{
    cin >> n;
    for(int i = 1; i <= n; i ++ )
        cin >> s[i];
    sort(s + 1, s + n + 1);
    LL ans = 0;
    int last = 0, idx = n;
    for(int i = 1; i <= n; i ++ )
    {
        //cout << last << ' ' << idx << endl;
        if(i % 2 == 1)
        {
            ans += (s[idx] - last) * (s[idx] - last);
            last = s[idx], idx = n - idx + 1;
        }
        else
        {
            ans += (s[idx] - last) * (s[idx] - last);
            last = s[idx], idx = n - idx;
        }
    }
    cout << ans << endl;
    return 0;
}
posted @   vacilie  阅读(30)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 25岁的心里话
· 按钮权限的设计及实现
点击右上角即可分享
微信分享提示
主题色彩