#include "bits/stdc++.h"
using namespace std;
#define FAST ios_base::sync_with_stdio(false); cin.tie(0);
#define pb push_back
#define eb emplace_back
#define ins insert
#define ph push
#define f first
#define s second
#define cbr cerr << "hi\n"
#define mmst(x, v) memset((x), v, sizeof ((x)))
#define siz(x) ll(x.size())
#define all(x) (x).begin(), (x).end()
#define lbd(x, y) lower_bound(all(x), y)
#define ubd(x, y) upper_bound(all(x), y)
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count()); //can be used by calling rng() or shuffle(A, A+n, rng)
inline long long rand(long long x, long long y) { return (rng() % (y+1-x)) + x; } //inclusivesss
string inline to_string(char c) {string s(1,c);return s;} template<typename T> inline T gcd(T a,T b){ return a==0?llabs(b):gcd(b%a,a); }
typedef long long ll;
typedef long double ld;
#define FOR(i,s,e) for(ll i=s;i<=ll(e);++i)
#define DEC(i,s,e) for(ll i=s;i>=ll(e);--i)
typedef pair<ll,ll>pi; typedef pair<ll,pi>spi; typedef pair<pi,pi>dpi;
#define LLINF ((long long)1e18)
#define INF int(1e9+1e6)
#define MAXN (300006)
bool state[MAXN];
void solve(){
mmst(state,0);
ll n,q;cin>>n>>q;
FOR(i,0,q-1){
ll a; cin>>a;
state[a]=1;
}
vector<ll> comp;
vector<vector<bool>> dp(2,vector<bool>(n+4,0));
vector<ll> moves, ans, re;
auto gogo=[&](){
if(comp.empty())return 1;
vector<vector<ll>> came(siz(comp), vector<ll>());
FOR(i,0,siz(comp)-1){
came[i].resize(comp[i]+3);
FOR(j,0,comp[i]+2) dp[i&1][j]=0, came[i][j]=-1;
if(i) for(ll j=1;j<=min(comp[i-1],comp[i]);++j) if(dp[(i-1)&1][j]) {
dp[i&1][comp[i]-j]=1, came[i][comp[i]-j]=j;
}
if(comp[i]>2){
DEC(j,comp[i]-1,0){
if(dp[i&1][j+2]){
came[i][j]=came[i][j+2];
}
dp[i&1][j]=dp[i&1][j]|dp[i&1][j+2];
}
}
if(i==0||dp[(i-1)&1][0]){
dp[i&1][comp[i]]=1, came[i][comp[i]]=0;
DEC(j,comp[i]-1,1){
if(dp[i&1][j+2]){
came[i][j]=came[i][j+2];
}
dp[i&1][j]=dp[i&1][j]|dp[i&1][j+2];
}
}
}
if(dp[(siz(comp)-1)&1][0]){
ll x=siz(comp)-1, y=0;
moves.pb(0);
while(x){
moves.pb(came[x][y]), y=came[x][y], -- x;
}
reverse(all(moves));
assert(moves.size()==comp.size());
re.clear(), re.resize(moves.size(),0);
FOR(i,0,siz(moves)-1){
if(i==0) {
re[i]=moves[i], moves[i]=comp[i]-moves[i];
}else{
re[i]=moves[i], moves[i]=comp[i]-re[i-1]-moves[i];
}
}
return 1;
}
cout<<"-1\n";
return 0;
};
ll past=0;
auto get_move=[&](){
assert(moves.size()==comp.size());
ll opast=past;
FOR(i,0,siz(comp)-1){
ll to_bye=moves[i];
assert(to_bye%2==0);
to_bye/=2;
while(to_bye--){
ans.pb(past+2);
}
past += comp[i] + 1;
}
past=opast;
FOR(i,0,siz(comp)-1){
past+=comp[i]+1;
moves[i]=re[i];
while(moves[i]--)ans.pb(past);
}
};
FOR(i,1,n){
if(state[i]==0){
if(i>1&&state[i-1]==0) {
++ comp.back();
}else{
comp.pb(1);
}
}else{
if(i>1&&state[i-1]==1){
if(!gogo())return;
get_move();
comp.clear();
moves.clear(), re.clear();
++ past;
}else { past+=(i==1); assert(i==1||comp.size()); }
}
}
if(!gogo())return;
get_move();
cout<<ans.size()<<'\n';
for(auto i:ans)cout<<i<<' ';cout<<'\n';
}
int main(){
FAST
ll t; cin>>t;
while(t--)solve();
}
Compilation message
del13.cpp: In function 'void solve()':
del13.cpp:129:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(auto i:ans)cout<<i<<' ';cout<<'\n';
^~~
del13.cpp:129:30: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
for(auto i:ans)cout<<i<<' ';cout<<'\n';
^~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
10 ms |
640 KB |
Output is partially correct |
2 |
Correct |
9 ms |
640 KB |
Output is partially correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
10 ms |
640 KB |
Output is partially correct |
2 |
Correct |
9 ms |
640 KB |
Output is partially correct |
3 |
Correct |
35 ms |
768 KB |
Output is partially correct |
4 |
Correct |
34 ms |
640 KB |
Output is partially correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
18 ms |
768 KB |
Output is partially correct |
2 |
Correct |
10 ms |
1336 KB |
Output is partially correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
10 ms |
640 KB |
Output is partially correct |
2 |
Correct |
9 ms |
640 KB |
Output is partially correct |
3 |
Correct |
35 ms |
768 KB |
Output is partially correct |
4 |
Correct |
34 ms |
640 KB |
Output is partially correct |
5 |
Correct |
6 ms |
640 KB |
Output is partially correct |
6 |
Correct |
7 ms |
640 KB |
Output is partially correct |
7 |
Correct |
6 ms |
640 KB |
Output is partially correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
10 ms |
640 KB |
Output is partially correct |
2 |
Correct |
9 ms |
640 KB |
Output is partially correct |
3 |
Correct |
35 ms |
768 KB |
Output is partially correct |
4 |
Correct |
34 ms |
640 KB |
Output is partially correct |
5 |
Correct |
6 ms |
640 KB |
Output is partially correct |
6 |
Correct |
7 ms |
640 KB |
Output is partially correct |
7 |
Correct |
6 ms |
640 KB |
Output is partially correct |
8 |
Correct |
16 ms |
1408 KB |
Output is partially correct |
9 |
Correct |
17 ms |
1528 KB |
Output is partially correct |
10 |
Correct |
16 ms |
1408 KB |
Output is partially correct |
11 |
Correct |
24 ms |
1556 KB |
Output is partially correct |