aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbigail <abigail@abigail.be>2020-09-23 00:01:48 +0200
committerAbigail <abigail@abigail.be>2020-09-23 00:01:48 +0200
commit1105830edcaaf9ed8924920a0da6128e7873b43f (patch)
tree666924b742d8986fafdf7de87856d3867678f55d
parent1bfecfb5e62e598d8caeeb10630af5c02313ea88 (diff)
downloadperlweeklychallenge-club-1105830edcaaf9ed8924920a0da6128e7873b43f.tar.gz
perlweeklychallenge-club-1105830edcaaf9ed8924920a0da6128e7873b43f.tar.bz2
perlweeklychallenge-club-1105830edcaaf9ed8924920a0da6128e7873b43f.zip
Week 79, part 1, AWK solution.
-rw-r--r--challenge-079/abigail/awk/ch-1.awk33
1 files changed, 33 insertions, 0 deletions
diff --git a/challenge-079/abigail/awk/ch-1.awk b/challenge-079/abigail/awk/ch-1.awk
new file mode 100644
index 0000000000..56abe1a74d
--- /dev/null
+++ b/challenge-079/abigail/awk/ch-1.awk
@@ -0,0 +1,33 @@
+#
+# Challenge:
+#
+# You are given a positive number $N.
+#
+# Write a script to count the total numbrer of set bits of the binary
+# representations of all numbers from 1 to $N and return
+# $total_count_set_bit % 1000000007.
+#
+# https://perlweeklychallenge.org/blog/perl-weekly-challenge-079/
+#
+
+#
+# This is A000778 (https://oeis.org/A000788). There's a recursive formala
+# for the number of bits in the binary representation of 0 .. $N:
+#
+# bits (0) = 0
+# bits (2 * N) = bits (N) + bits (N - 1) + N
+# bits (2 * N + 1) = 2 * bits (N) + N + 1
+#
+
+function f(nn, n) {
+ if (nn == 0) {return (0);}
+ if (nn % 2 == 1) {
+ n = (nn - 1) / 2;
+ return 2 * f(n) + n + 1;
+ }
+ n = nn / 2;
+ return f(n) + f(n - 1) + n;
+}
+
+BEGIN {bignum = 1000000007;}
+ {print f($1) % bignum;}