-
Notifications
You must be signed in to change notification settings - Fork 0
/
1166 - Torre de Hanoi, Novamente!.c
66 lines (55 loc) · 1.94 KB
/
1166 - Torre de Hanoi, Novamente!.c
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
#include <stdio.h>
#include <math.h>
#include <stdbool.h>
// Função que verifica se a soma de dois números é um quadrado perfeito
bool ehQuadradoPerfeito(int x) {
int raiz = sqrt(x);
return raiz * raiz == x;
}
int main() {
int T;
scanf("%d", &T); // Leitura do número de casos de teste
// Para cada caso de teste
for (int i = 0; i < T; i++) {
int N;
scanf("%d", &N); // Leitura do número de hastes
int hastes[N][50]; // N hastes, cada uma pode conter até 50 bolas
int topo[N]; // Armazena a posição do topo de cada haste
// Inicializa as hastes como vazias
for (int j = 0; j < N; j++) {
topo[j] = 0;
}
int bola = 1; // Inicia com a bola 1
int count = 0; // Conta o número total de bolas colocadas
bool flag = true; // Controla se ainda podemos colocar bolas
while (flag) {
bool colocada = false;
// Tentar colocar a bola em uma das N hastes
for (int j = 0; j < N; j++) {
// Se a haste estiver vazia, colocar a bola
if (topo[j] == 0) {
hastes[j][topo[j]++] = bola;
count++;
bola++;
colocada = true;
break;
}
// Se não estiver vazia, verificar se a soma é quadrado perfeito
else if (ehQuadradoPerfeito(hastes[j][topo[j] - 1] + bola)) {
hastes[j][topo[j]++] = bola;
count++;
bola++;
colocada = true;
break;
}
}
// Se a bola não foi colocada em nenhuma haste, o jogo termina
if (!colocada) {
flag = false;
}
}
// Imprime o número máximo de bolas colocadas
printf("%d\n", count);
}
return 0;
}