QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#266980 | #5435. Clamped Sequence | ucup-team1344 | RE | 0ms | 0kb | C++20 | 1.2kb | 2023-11-26 20:33:10 | 2023-11-26 20:33:11 |
answer
#include<bits/stdc++.h>
using namespace std;
using i128=__int128_t;
#define inf 0x3f3f3f3f
#define quick std::ios::sync_with_stdio(false);std::cin.tie(nullptr);std::cout.tie(nullptr);
typedef long long ll;
typedef pair<ll,ll> PII;
typedef unsigned long long ull;
#define N 1000010
#define M 998244353
// 998244353 1000000007 1073741824
// 无序map unordered_map
ll n,d;
ll a[N],b[N];
void solve(){
cin>>n>>d;
for(int i=1;i<=n;i++)cin>>a[i];
ll ans=-1;
for(int i=1;i<=n;i++){
ll l=a[i]-d,r=a[i];
ll res=0;
for(int j=1;j<=n;j++){
if(a[j]<l)b[j]=l;
else if(a[j]>r)b[j]=r;
else b[j]=a[j];
}
for(int j=1;j<n;j++){
res+=abs(b[j]-b[j+1]);
}
ans=max(ans,res);
res=0;
l=a[i],r=a[i]+d;
for(int j=1;j<=n;j++){
if(a[j]<l)b[j]=l;
else if(a[j]>r)b[j]=r;
else b[j]=a[j];
}
for(int j=1;j<n;j++){
res+=abs(b[j]-b[j+1]);
}
ans=max(ans,res);
}
cout<<ans<<endl;
}
int main(){ quick
int t=1;
// cin>>t;
while(t--){
solve();
}
system("pause");
return 0;
}
詳細信息
Test #1:
score: 0
Dangerous Syscalls
input:
8 3 3 1 4 1 5 9 2 6
output:
15