#include "light.h"
#include <bits/stdc++.h>
using namespace std;
using ll=long long;
ll n;
vector<ll> V,R;
void prepare(){
n=1;
V.push_back(1);
}
std::pair<ll, std::vector<ll>> join(ll p){
n+=p;
vector<ll> NV=V;
NV.push_back(1);
NV.push_back(2);
NV.push_back(n);
sort(NV.begin(),NV.end());
NV.resize(unique(NV.begin(),NV.end())-NV.begin());
V.clear();
V.push_back(1);
V.push_back(NV[0]);
V.push_back(NV[1]);
for(int i=2;i<(int)NV.size();i++){
while(NV[i]>V.end()[-1]+V.end()[-2]){
V.push_back(V.end()[-1]+V.end()[-2]);
}
if(i+1<(int)NV.size()&&NV[i+1]<=V.end()[-1]+V.end()[-2]) continue;
V.push_back(NV[i]);
}
reverse(V.begin(),V.end());
V.pop_back();
reverse(V.begin(),V.end());
R=V;
for(ll &x: R) x=n+1-x;
reverse(R.begin(),R.end());
assert(R.size()<=150);
return {5*p,R};
}
std::pair<ll, std::vector<ll>> leave(ll p){
n-=p;
if(n==1){
V=R={1};
return {5*p,R};
}
if(n==2){
V=R={1,2};
return {5*p,R};
}
reverse(V.begin(),V.end());
while(V.back()<=p) V.pop_back();
for(ll &x: V) x-=p;
V.push_back(1);
V.push_back(2);
V.push_back(n);
reverse(V.begin(),V.end());
sort(V.begin(),V.end());
V.resize(unique(V.begin(),V.end())-V.begin());
/*cout<<p<<": ";
for(ll x: V) cout<<x<<" ";
cout<<"\n";*/
vector<ll> NV=V;
V.clear();
V.push_back(1);
V.push_back(NV[0]);
V.push_back(NV[1]);
for(int i=2;i<(int)NV.size();i++){
while(NV[i]>V.end()[-1]+V.end()[-2]){
V.push_back(V.end()[-1]+V.end()[-2]);
}
if(i+1<(int)NV.size()&&NV[i+1]<=V.end()[-1]+V.end()[-2]) continue;
V.push_back(NV[i]);
}
reverse(V.begin(),V.end());
V.pop_back();
reverse(V.begin(),V.end());
R=V;
for(ll &x: R) x=n+1-x;
reverse(R.begin(),R.end());
assert(R.size()<=150);
return {5*p,R};
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
302 ms |
436 KB |
Output is correct |
3 |
Correct |
276 ms |
440 KB |
Output is correct |
4 |
Correct |
311 ms |
436 KB |
Output is correct |
5 |
Correct |
305 ms |
432 KB |
Output is correct |
6 |
Correct |
287 ms |
588 KB |
Output is correct |
7 |
Correct |
284 ms |
600 KB |
Output is correct |
8 |
Correct |
299 ms |
344 KB |
Output is correct |
9 |
Correct |
310 ms |
592 KB |
Output is correct |
10 |
Correct |
304 ms |
344 KB |
Output is correct |
11 |
Correct |
277 ms |
420 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Incorrect |
3 ms |
344 KB |
Not correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Incorrect |
3 ms |
344 KB |
Not correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Incorrect |
3 ms |
344 KB |
Not correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Incorrect |
3 ms |
344 KB |
Not correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Incorrect |
3 ms |
344 KB |
Not correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Partially correct |
0 ms |
344 KB |
Partially correct |
2 |
Partially correct |
276 ms |
440 KB |
Partially correct |
3 |
Partially correct |
294 ms |
436 KB |
Partially correct |
4 |
Partially correct |
307 ms |
452 KB |
Partially correct |
5 |
Partially correct |
281 ms |
432 KB |
Partially correct |
6 |
Partially correct |
302 ms |
432 KB |
Partially correct |
7 |
Partially correct |
312 ms |
432 KB |
Partially correct |
8 |
Partially correct |
300 ms |
432 KB |
Partially correct |
9 |
Partially correct |
306 ms |
432 KB |
Partially correct |
10 |
Partially correct |
284 ms |
344 KB |
Partially correct |
11 |
Partially correct |
298 ms |
412 KB |
Partially correct |
12 |
Incorrect |
3 ms |
344 KB |
Not correct |
13 |
Halted |
0 ms |
0 KB |
- |