QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#680288 | #5435. Clamped Sequence | zhuge0 | WA | 0ms | 3488kb | C++14 | 1006b | 2024-10-26 20:30:42 | 2024-10-26 20:30:48 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
//typedef __int128 lll;
const int N = 5e6 + 5;
ll n, b, k, m,d;
ll mod = 1e9 + 9;
//ll d[10000005]{},cnt=0;
bool vis[10000005]{};
vector<int> prime;
void pre()
{
cin >> n>>d;
vector<ll> arr(n);
ll ans = 0;
for (int i = 0; i < n; i++)
{
ll l = arr[i], r = arr[i];
for (int i = 1; i < n; i++)
{
auto turn = [&](int x, int l, int r)
{
if (x > r) return r;
else if (x < l) return l;
else return x;
};
ans = max({ ans,(ll)abs(turn(arr[i],l,l + d) - turn(arr[i - 1],l,l + d)),(ll)abs(turn(arr[i],r,r - d) - turn(arr[i - 1],r,r - d)) });
}
}
cout << ans << endl;
}
void solve() {
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
// pre();
int T = 1;
//cin >> T;
while (T--) {
solve();
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3488kb
input:
8 3 3 1 4 1 5 9 2 6
output:
result:
wrong answer Answer contains longer sequence [length = 1], but output contains 0 elements