QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#691971#5435. Clamped Sequencexzin#RE 0ms0kbC++14771b2024-10-31 13:33:172024-10-31 13:33:18

Judging History

你现在查看的是最新测评结果

  • [2024-10-31 13:33:18]
  • 评测
  • 测评结果:RE
  • 用时:0ms
  • 内存:0kb
  • [2024-10-31 13:33:17]
  • 提交

answer

#include <bits/stdc++.h>

#define N 5100
#define ll long long
using namespace std;

ll n, d, a[N], b[N], c[N];
ll sum, ans;
int main() {
    cin>>n>>d;
    for(ll i = 1;i <= n; i++) cin>>a[i], b[i] = a[i];
    sort(b + 1, b + n + 1);
    for(ll i = 1; i <= n; i++) {
        ll low = i, hig = 0, l = i, r = n;
        sum = 0;
        while (l <= r)  {
            ll mid = (l + r) / 2;
            if(b[mid] - b[low] <= d) hig = mid, l = mid + 1;
            else r = mid - 1;
        }
        for(ll i = 1; i <= n; i++) {
            c[i] = max(a[i], b[low]);
            c[i] = min(c[i], b[hig]);
            sum += abs(c[i] - c[i - 1]);
        }
        ans = max(ans, sum - abs(c[1]));
    }
    cout<<ans<<endl;
    system("pause");
}

詳細信息

Test #1:

score: 0
Dangerous Syscalls

input:

8 3
3 1 4 1 5 9 2 6

output:

15

result: