-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCTDL018.cpp
45 lines (39 loc) · 941 Bytes
/
CTDL018.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
// Cho dãy số A[] gồm n số nguyên dương. Tam giác đặc biệt của dãy số A[] là tam giác được tạo ra bởi n hàng, trong đó hàng thứ 1 là dãy số A[], hàng i là tổng hai phần tử liên tiếp của hàng i-1 (2≤i≤n)
/*
1
5
1 2 3 4 5
[1 2 3 4 5]
[3 5 7 9]
[8 12 16]
[20 28]
[48]
*/
#include <bits/stdc++.h>
using namespace std;
void check(vector<int> &temp){
cout<<'[';
for (int i = 0; i < temp.size() - 1; i++){
cout<<temp[i]<<" ";
}
cout<<temp[temp.size() - 1]<<']'<<endl;
if (temp.size() == 1){
return;
}
vector<int> mid;
for (int i = 0; i < temp.size() - 1; i++){
mid.push_back(temp[i] + temp[i+1]);
}
check(mid);
}
int main(){
int t; cin >> t;
while(t--){
int n; cin >> n;
vector<int> temp(n);
for (int i = 0; i < n; i++){
cin >> temp[i];
}
check(temp);
}
}