![]() |
![]() |
#1 |
"Robert Gerbicz"
Oct 2005
Hungary
31438 Posts |
![]()
The new Ibm puzzle is out:
https://www.research.ibm.com/haifa/p...ruary2017.html |
![]() |
![]() |
![]() |
#2 |
"Robert Gerbicz"
Oct 2005
Hungary
3×5×109 Posts |
![]()
The official solution is here: https://www.research.ibm.com/haifa/p...ruary2017.html
Just a small note: since the total search space (2^42) is not that large, semi-bruteforce routine with a sample c code (without dirty optimizations, avx2 etc.) is possible: use the mod 7 trick, precompute 6+s*(5+s*s*s*(2+s*(3+s))) + b*(5+s*(5+s*(6+s*s*(3+s*6)))) for b=0..1,s=0..6, then the problem is solvable in roughly 3 days on a a fast i7 using 1 core, or in say a week on a slow core i3. Ofcourse the distribution of the problem to all cores/threads is trivial if you want a faster (bruteforce) solution. My sent solution (not for the star): The answer is: 3271652365264 A dynamic programming solution in PARI-GP: Code:
fun(L)={A=matrix(7,2*L+1,i,j,0);A[2,L+1]=1; for(i=1,L,B=matrix(7,2*L+1,i,j,0); for(b=0,1,for(k=1,7,for(l=1,2*L+1,if(A[k,l]!=0, s=k%7;r=l-(L+1); if(s==b,r=r+2*b-1); s=(6+s*(5+s*s*s*(2+s*(3+s)))+b*(5+s*(5+s*(6+s*s*(3+s*6)))))%7; k2=s%7;if(k2==0,k2=7); l2=r+(L+1); B[k2,l2]+=A[k,l]))));A=B); return(2^L-sum(i=1,7,A[i,L+1]))} The complexity of the above algorithm is O(L^2) for L bits, much faster then the almost trivial O(2^L*L) algorithm. In general if we need the answer for L bits, then for every sequence and in each step r will be in [-L,L] interval and it is enough to know s mod 7. For a given v if we know r and (s mod 7) when we process the bit's of v, then we can get the value of r at the end of the function. So count only the number of possible sequences of length i bits for that we have r and (s mod 7), for the next bit we have 2 possibilities b=0 or 1, for all these sequences we have the same new r2 and (s2 mod 7) values if we fix the bit. After i=L we get the number of sequences with L bits for each (possible) r and (s mod 7). In the code: we store the number of sequences in the matrix A, in A[k,l] we see the number of sequences that has s=k mod 7 and r=l-(L+1), in this way the size of matrix is 7X(2*L+1). At the end, after we processed all L bits, the number of sequences that return a zero value is just sum(i=1,7,A[i,L+1]), so the number of sequences for a non-zero return value is just 2^L-sum(i=1,7,A[i,L+1]). |
![]() |
![]() |
![]() |
Thread Tools | |
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
February 2018 | Xyzzy | Puzzles | 27 | 2018-03-08 06:31 |
May 2017 | R. Gerbicz | Puzzles | 42 | 2017-06-06 02:23 |
February 2016 | Xyzzy | Puzzles | 1 | 2016-03-07 02:48 |
February 2015 | Xyzzy | Puzzles | 1 | 2015-03-02 19:01 |
P95v238 - anyone else notice the new version Dated February 17, 2004. | robreid | Software | 2 | 2004-03-02 12:40 |