This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pi = pair<int, int>;
using pl = pair<ll, ll>;
using vi = vector<int>;
using vl = vector<ll>;
using vpi = vector<pi>;
using vpl = vector<pl>;
#define fur(i, a, b) for(ll i = a; i <= (ll) b; ++i)
#define ruf(i, a, b) for(ll i = a; i >= (ll) b; --i)
#define fr first
#define sc second
#define mp make_pair
#define pb push_back
#define eb emplace_back
#define all(x) (x).begin(),(x).end()
#define rall(x) (x).rbegin(),(x).rend()
#define nl "\n"
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
ll n, s, k;
cin >> n >> s >> k;
ll d[n];
fur(i, 1, n - 1) {
cin >> d[i];
}
ll v[n + 1];
fur(i, 1, n) {
cin >> v[i];
}
ll x[n + 1];
x[1] = 0;
fur(i, 2, n) {
x[i] = x[i - 1] + d[i - 1];
}
// fur(i, 1, n) {
// cout << x[i] << ' ';
// }
// cout << nl;
// fur(i, 1, n) {
// cout << v[i] << ' ';
// }
// cout << nl;
ll res = 0;
ll best = 0;
ll sum[n + 1];
sum[0] = 0;
fur(i, 1, n) {
sum[i] = v[i] + sum[i - 1];
}
fur(i, 1, n) {
ll r = upper_bound(x + 1, x + n + 1, x[i] + k) - x - 1;
ll l = lower_bound(x + 1, x + n + 1, x[i] - k) - x - 1;
if(sum[r] - sum[l] > res) {
res = sum[r] - sum[l];
best = i;
}
}
cout << 1 << nl << best << nl;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |