From e0cb0735bd404500f9fba24d86dbf70ae99a97f8 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Sun, 23 Jul 2017 20:10:22 +0200 Subject: fixed it --- cpp/lswf.cpp | 98 ++++++++++++++++++++++++++++-------------------------------- 1 file changed, 46 insertions(+), 52 deletions(-) (limited to 'cpp') diff --git a/cpp/lswf.cpp b/cpp/lswf.cpp index dcf1b13..e2acb3d 100644 --- a/cpp/lswf.cpp +++ b/cpp/lswf.cpp @@ -1,7 +1,4 @@ -/* INPUT: - * 19 - * - * OUTPUT: +UTPUT: * 1000101 */ #include @@ -11,63 +8,60 @@ int fibonacci(int* fib, int N) { - fib[0] = 1; fib[1] = 1; - int lst; + fib[0] = 1; fib[1] = 1; + int lst; - for(int i = 2; i < N; i++) { - fib[i] = fib[i-1] + fib[i-2]; - lst = i; - if(fib[i] > N) break; - } + for(int i = 2; i < N; i++) { + fib[i] = fib[i-1] + fib[i-2]; + lst = i; + if(fib[i] > N) break; + } - return lst; + return lst; } int main() { - std::ifstream in("input.txt"); - std::ofstream out("output.txt"); - std::list seq; - std::list::iterator j; + std::ifstream in("input.txt"); + std::ofstream out("output.txt"); + std::list seq; + std::list::iterator j; - int N, i; - in >> N; - int caracts[MAXG], somma = 0, potSomma; - int lastc; + int N, i; + in >> N; + int caracts[MAXG], somma = 0, potSomma; + int lastc; - if(N > 4) - lastc = fibonacci(caracts, N); - else { - caracts[0] = 1; - for(i = 1; i < 4; i++) - caracts[i] = i; + if(N > 4) + lastc = fibonacci(caracts, N); + else { + caracts[0] = 1; + for(i = 1; i < 4; i++) + caracts[i] = i; - switch (N) { - case 1: - lastc = 1; - break; - case 2: - lastc = 2; - break; - case 3: - lastc = 3; - break; - default: - lastc = 4; - } - } + switch (N) { + case 1: + case 2: + case 3: + lastc = N; + break; + default: + lastc = 4; + } + } - for(i = lastc; i > 0; i--) { - potSomma = somma + caracts[i]; - if(potSomma < N) { - somma = potSomma; - seq.push_front(1); - } else seq.push_front(0); - } - seq.push_front(1); - for(j = seq.begin(); j != seq.end(); j++) out << *j; + for(i = lastc; i > 0; i--) { + potSomma = somma + caracts[i]; + if(potSomma < N) { + somma = potSomma; + seq.push_front(1); + } else seq.push_front(0); + } + seq.push_front(1); + for(j = seq.begin(); j != seq.end(); j++) out << *j; - in.close(); - out.close(); - return 0; + in.close(); + out.close(); + return 0; } + -- cgit v1.2.3-18-g5258