-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdifferent_differences.cpp
47 lines (47 loc) · 978 Bytes
/
different_differences.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include <bits/stdc++.h>
using namespace std;
int main()
{
int cases;
cin>>cases;
vector<int> difs;
vector<int> origs;
for(int i=0; i<cases; i++)
{
int a, b;
cin>>a>>b;
origs.push_back(a);
int diff = a-1;
int sum = (diff*a/2)+1;
if(sum<=b) difs.push_back(diff);
else
{
int j;
for(j=diff-1; j>0; j--)
{
if(sum>b) sum -= j;
else break;
}
difs.push_back(j+1);
}
}
vector<int> nw;
for(int i=0; i<difs.size(); i++)
{
nw.clear();
nw.push_back(1);
for(int k=0; k<difs[i]; k++)
{
nw.push_back(nw[k]+k+1);
}
for(int k=0; k<origs[i]-difs[i]-1; k++)
{
nw.push_back(nw.back()+1);
}
for(int k=0; k<nw.size(); k++)
{
cout<<nw[k]<<" ";
}
cout<<endl;
}
}