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;
#define int long long
#define FOR(i, a, b) for (int i = (a); i <= (b); i++)
#define FORD(i, a, b) for (int i = (b); i >= (a); i --)
#define REP(i, a) for (int i = 0; i < (a); ++i)
#define REPD(i, a) for (int i = (a) - 1; i >= 0; --i)
#define MASK(i) (1LL << (i))
#define BIT(x, i) (((x) >> (i)) & 1)
constexpr ll LINF = (1ll << 60);
constexpr int INF = (1ll << 30);
constexpr int Mod = 1e9 + 7;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
/*
Phu Trong from Nguyen Tat Thanh High School for gifted student
*/
template <class X, class Y>
bool minimize(X &x, const Y &y){
X eps = 1e-9;
if (x > y + eps) {x = y; return 1;}
return 0;
}
template <class X, class Y>
bool maximize(X &x, const Y &y){
X eps = 1e-9;
if (x + eps < y) {x = y; return 1;}
return 0;
}
#define MAX 1000005
#define LOG 21
int nArr, nShield;
long long radian;
long long dist[MAX], value[MAX], sum[MAX];
int to[MAX];
int jmp[MAX][LOG];
int jump(int u, int dis){
REP(i, LOG) if(BIT(dis, i)){
u = jmp[u][i] + 1;
if(u == nArr + 1) break;
}
return u - 1;
}
void process(void){
cin >> nArr >> nShield >> radian;
for (int i = 2; i <= nArr; ++i){
cin >> dist[i];
sum[i] = sum[i - 1] + dist[i];
}
for (int i = 1; i <= nArr; ++i) cin >> value[i], value[i] += value[i - 1];
int j = 1;
for (int i = 1; i <= nArr; ++i){
maximize(j, i);
while (j <= nArr and sum[j] - sum[i] <= radian) ++j;
to[i] = j - 1;
}
for (int i = 1; i <= nArr; ++i){
jmp[i][0] = to[to[i]];
}
for (int i = 1; i < LOG; ++i){
for (int u = 1; u <= nArr; ++u){
jmp[u][i] = jmp[min(jmp[u][i - 1], nArr)][i - 1];
}
}
long long ans = 0, pos = 0;
for (int l = 1; l <= nArr; ++l){
int r = jump(l, nShield);
if(maximize(ans, value[r] - value[l - 1])){
pos = l;
}
}
// cout << ans << '\n';
vector<int> res;
for (int i = 1; i <= nShield; ++i){
if(pos <= nArr)
res.emplace_back(to[pos]);
pos = jmp[pos][0] + 1;
}
cout << (int)res.size() << '\n';
for (int&v : res) cout << v << " ";
}
signed main(){
#define name "Whisper"
cin.tie(nullptr) -> sync_with_stdio(false);
//freopen(name".inp", "r", stdin);
//freopen(name".out", "w", stdout);
process();
return (0 ^ 0);
}
# | 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... |