-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathDSA01016 - PHÂN TÍCH SỐ 1
106 lines (106 loc) · 3.33 KB
/
DSA01016 - PHÂN TÍCH SỐ 1
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#include <bits/stdc++.h>
#define endl "\n"
using namespace std;
struct data
{
int d[10];
};
bool cmp(struct data a, struct data b)
{
for (int i = 0; i < 10; i++)
{
if (a.d[i] != b.d[i])
return a.d[i] > b.d[i];
}
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
int t;
cin >> t;
while (t--)
{
int n, x = 0;
cin >> n;
struct data c[50];
for (int i = 0; i < 50; i++)
{
for (int j = 0; j < 10; j++)
{
c[i].d[j] = 0;
}
}
for (int i = 1; i <= n; i++)
{
int a[i];
for (int j = 0; j < i; j++)
a[j] = n - i + 1;
while (1)
{
int s = 0, ok = 0;
for (int j = 0; j < i; j++)
s += a[j];
if (s == n)
{
for (int j = 0; j < i; j++)
c[x].d[j] = a[j];
x++;
}
for (int j = i - 1; j >= 0; j--)
{
if (a[j] != 1)
{
ok = 1;
a[j]--;
for (int jj = j + 1; jj < i; jj++)
a[jj] = a[j];
break;
}
}
if (ok == 0)
break;
}
}
sort(c, c + x, cmp);
for (int i = 0; i < x; i++)
{
cout << "(" << c[i].d[0];
for (int j = 1; j < 10; j++)
{
if (c[i].d[j] == 0)
break;
cout << " " << c[i].d[j];
}
cout << ") ";
}
cout << endl;
}
}
/* Do Xuan Huong
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@##################@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@#############################@@@@@@@@@@@@@@@@
@@@@@@@@@@@@&####################################@@@@@@@@@@@@
@@@@@@@@@@##########################################@@@@@@@@@
@@@@@@@@##############################################@@@@@@@
@@@@@@#################################################@@@@@@
@@@@@####################################################@@@@
@@@%#####################@@@@@@@@@@@######################@@@
@@@###################@@@@@@@@@@@@@@@@@####################@@
@@##################@@@@@@ @@@@@@##################@@
@@#################@@@@@ @@@@###################@
@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@
@ &@@@@ @@@@ .......@@
@@ @@@@@@ @@@@@@ .......@@
@@ @@@@@@@@@@@@@@@@@ .......@@@
@@@ @@@@@@@@@@@ ......@@@@
@@@@ ......@@@@@
@@@@@@ ......@@@@@@
@@@@@@@ .....@@@@@@@@
@@@@@@@@@ .....@@@@@@@@@@
@@@@@@@@@@@@ ....@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@ ....@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@% .@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
*/