-
Notifications
You must be signed in to change notification settings - Fork 0
/
1166.cpp
45 lines (41 loc) · 1.02 KB
/
1166.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
#include <iostream>
#include <cmath>
// over //
using namespace std;
int array[51];
int total, N; //contador_steps=0;
void calcula(int v, int p){
//contador_steps++;
if(p == N) return;
if(array[p] == 0){
array[p] = v;
total++;
// contador_steps++;
return calcula(v+1, p);
}
for(int i = 0; i <= p; i++){
int raiz = (int) sqrt(array[i] + v); // verifica se a soma das bolas formam um numero de quadrado perfeito//
if(pow(raiz,2) == array[i] + v){
array[i] = v;
total++;
// contador_steps++;
return calcula(v+1, p);
}
}
calcula(v, p + 1);
}
int main() {
int testes;
cin>> testes;
for (int i=0; i<testes; i++){
cin>> N;
for(int i=0; i<50; i++)
array[i]= 0; //preenche o vetor 'array' com o valor 0//
total = 0;
// contador_steps=0;
calcula(1, 0);
cout << total <<endl;
// cout <<"Execucoes: "<< contador_steps<<endl;
}
return 0;
}