#include<bits/stdc++.h>
using namespace std;
int rez[400005];
int krez;
/**
n = 4
m = 11
1 1 1 -4 1 1 1 -4 1 2
*/
void solve(int n, int m)
{
if(n==m)
{
krez=0;
return;
}
if(m%n==0)
{
krez=m-1;
for(int i=1;i<m;i++)
rez[i]=-1;
return;
}
krez=m;
int ult=n;
for(int i=n;i<=m;i+=n)
{
for(int j=i-n+1;j<i;j++)
rez[j]=1;
rez[i]=-n;
ult=i;
}
rez[m]=n-1;
for(int j=ult+1;j<m;j++)
{
rez[j]=1;
rez[m]--;
}
}
signed main()
{
ios_base::sync_with_stdio(0);cin.tie(0);
int t;
cin>>t;
while(t--)
{
int n,m;
cin>>n>>m;
bool bl=0;
if(n>m)
{
swap(n,m);
bl=1;
}
solve(n,m);
cout<<krez<<"\n";
for(int i=1;i<=krez;i++)
{
if(!bl)
cout<<rez[i]<<" ";
else
cout<<-rez[i]<<" ";
}
cout<<"\n";
}
return 0;
}
/**
pref[i] - pref[i-n] < 0
pref[i] - pref[i-m] > 0
pref[i-n] > pref[i]
pref[i-m] < pref[i]
n = 4
m = 11
1 1 1 -4 1 1 1 -4 1 1 1
*/
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Ok |
2 |
Correct |
0 ms |
348 KB |
Ok |
3 |
Incorrect |
0 ms |
348 KB |
Jury has the better answer : jans = 93, pans = 0 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Jury has the better answer : jans = 1, pans = 0 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
348 KB |
there is incorrect sequence |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
there is incorrect sequence |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Ok |
2 |
Correct |
0 ms |
348 KB |
Ok |
3 |
Incorrect |
0 ms |
348 KB |
Jury has the better answer : jans = 93, pans = 0 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Ok |
2 |
Correct |
0 ms |
348 KB |
Ok |
3 |
Incorrect |
0 ms |
348 KB |
Jury has the better answer : jans = 93, pans = 0 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Ok |
2 |
Correct |
0 ms |
348 KB |
Ok |
3 |
Incorrect |
0 ms |
348 KB |
Jury has the better answer : jans = 93, pans = 0 |
4 |
Halted |
0 ms |
0 KB |
- |