Cycles on the torusDecompose a permutation into cyclesMoore IterationGoogle Code Jam - New Lottery GameCo-primality and the number piRotate every row and column in a matrixNumber of cycles of a permutationFire propagation simulator2D Array Middle PointPrint a Quinella TablePartitioning the grid into triangles

If nine coins are tossed, what is the probability that the number of heads is even?

Was it really inappropriate to write a pull request for the company I interviewed with?

What is the oldest European royal house?

Are brahmins allowed to drink alcohol?

Why do we call complex numbers “numbers” but we don’t consider 2-vectors numbers?

Limpar string com Regex

Is divide-by-zero a security vulnerability?

Who has more? Ireland or Iceland?

After Brexit, will the EU recognize British passports that are valid for more than ten years?

Does the US political system, in principle, allow for a no-party system?

The (Easy) Road to Code

Why do phishing e-mails use faked e-mail addresses instead of the real one?

Short story about cities being connected by a conveyor belt

I am the person who abides by rules but breaks the rules . Who am I

Why does a car's steering wheel get lighter with increasing speed

Was this cameo in Captain Marvel computer generated?

Is it a Cyclops number? "Nobody" knows!

How can I portion out frozen cookie dough?

What should I do when a paper is published similar to my PhD thesis without citation?

ESPP--any reason not to go all in?

Where is the License file location for Identity Server in Sitecore 9.1?

Help! My Character is too much for her story!

Is there a logarithm base for which the logarithm becomes an identity function?

Will the concrete slab in a partially heated shed conduct a lot of heat to the unconditioned area?



Cycles on the torus


Decompose a permutation into cyclesMoore IterationGoogle Code Jam - New Lottery GameCo-primality and the number piRotate every row and column in a matrixNumber of cycles of a permutationFire propagation simulator2D Array Middle PointPrint a Quinella TablePartitioning the grid into triangles













8












$begingroup$


Challenge



This challenge will have you write a program that takes in two integers n and m and outputs the number non-intersecting loops on the n by m torus made by only taking steps up and to the right. You can think of torus as the grid with wraparound both at the top and the bottom.



This is code-golf so fewest bytes wins.



Example



For example, if the input is n=m=5, one valid walk is



(0,0) -> (0,1) -> (0,2) -> (1,2) -> (2,2) -> (2,3) -> (2,4) -> 
(2,0) -> (3,0) -> (4,0) -> (4,1) -> (4,2) -> (4,3) ->
(0,3) -> (1,3) -> (1,4) ->
(1,0) -> (1,1) -> (2,1) -> (3,1) -> (3,2) -> (3,3) -> (3,4) -> (4,4) -> (0,4) -> (0,0)


as shown in the graphic.



A loop on the torus.



Some example input/outputs



f(1,1) = 2 (up or right)
f(1,2) = 2 (up or right-right)
f(2,2) = 4 (up-up, up-right-up-right, right-right, right-up-right-up)
f(2,3) = 7
f(3,3) = 22
f(2,4) = 13
f(3,4) = 66
f(4,4) = 258









share|improve this question









$endgroup$
















    8












    $begingroup$


    Challenge



    This challenge will have you write a program that takes in two integers n and m and outputs the number non-intersecting loops on the n by m torus made by only taking steps up and to the right. You can think of torus as the grid with wraparound both at the top and the bottom.



    This is code-golf so fewest bytes wins.



    Example



    For example, if the input is n=m=5, one valid walk is



    (0,0) -> (0,1) -> (0,2) -> (1,2) -> (2,2) -> (2,3) -> (2,4) -> 
    (2,0) -> (3,0) -> (4,0) -> (4,1) -> (4,2) -> (4,3) ->
    (0,3) -> (1,3) -> (1,4) ->
    (1,0) -> (1,1) -> (2,1) -> (3,1) -> (3,2) -> (3,3) -> (3,4) -> (4,4) -> (0,4) -> (0,0)


    as shown in the graphic.



    A loop on the torus.



    Some example input/outputs



    f(1,1) = 2 (up or right)
    f(1,2) = 2 (up or right-right)
    f(2,2) = 4 (up-up, up-right-up-right, right-right, right-up-right-up)
    f(2,3) = 7
    f(3,3) = 22
    f(2,4) = 13
    f(3,4) = 66
    f(4,4) = 258









    share|improve this question









    $endgroup$














      8












      8








      8





      $begingroup$


      Challenge



      This challenge will have you write a program that takes in two integers n and m and outputs the number non-intersecting loops on the n by m torus made by only taking steps up and to the right. You can think of torus as the grid with wraparound both at the top and the bottom.



      This is code-golf so fewest bytes wins.



      Example



      For example, if the input is n=m=5, one valid walk is



      (0,0) -> (0,1) -> (0,2) -> (1,2) -> (2,2) -> (2,3) -> (2,4) -> 
      (2,0) -> (3,0) -> (4,0) -> (4,1) -> (4,2) -> (4,3) ->
      (0,3) -> (1,3) -> (1,4) ->
      (1,0) -> (1,1) -> (2,1) -> (3,1) -> (3,2) -> (3,3) -> (3,4) -> (4,4) -> (0,4) -> (0,0)


      as shown in the graphic.



      A loop on the torus.



      Some example input/outputs



      f(1,1) = 2 (up or right)
      f(1,2) = 2 (up or right-right)
      f(2,2) = 4 (up-up, up-right-up-right, right-right, right-up-right-up)
      f(2,3) = 7
      f(3,3) = 22
      f(2,4) = 13
      f(3,4) = 66
      f(4,4) = 258









      share|improve this question









      $endgroup$




      Challenge



      This challenge will have you write a program that takes in two integers n and m and outputs the number non-intersecting loops on the n by m torus made by only taking steps up and to the right. You can think of torus as the grid with wraparound both at the top and the bottom.



      This is code-golf so fewest bytes wins.



      Example



      For example, if the input is n=m=5, one valid walk is



      (0,0) -> (0,1) -> (0,2) -> (1,2) -> (2,2) -> (2,3) -> (2,4) -> 
      (2,0) -> (3,0) -> (4,0) -> (4,1) -> (4,2) -> (4,3) ->
      (0,3) -> (1,3) -> (1,4) ->
      (1,0) -> (1,1) -> (2,1) -> (3,1) -> (3,2) -> (3,3) -> (3,4) -> (4,4) -> (0,4) -> (0,0)


      as shown in the graphic.



      A loop on the torus.



      Some example input/outputs



      f(1,1) = 2 (up or right)
      f(1,2) = 2 (up or right-right)
      f(2,2) = 4 (up-up, up-right-up-right, right-right, right-up-right-up)
      f(2,3) = 7
      f(3,3) = 22
      f(2,4) = 13
      f(3,4) = 66
      f(4,4) = 258






      code-golf combinatorics grid






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 4 hours ago









      Peter KageyPeter Kagey

      888518




      888518




















          1 Answer
          1






          active

          oldest

          votes


















          4












          $begingroup$


          Python 2, 87 bytes





          f=lambda m,n,z=0,l=[]:z==0if z in l else sum(f(m,n,(z+d)%m%(n*1j),l+[z])for d in(1,1j))


          Try it online!



          The interesting thing here is using a complex number z to store the coordinate of the current position. We can move up by adding 1 and move right by adding 1j. To my surprise, modulo works on complex numbers in a way that lets us handle the wrapping for each dimension separately: doing %m acts on the real part, and %(n*1j) acts on the imaginary part.






          share|improve this answer









          $endgroup$












            Your Answer





            StackExchange.ifUsing("editor", function ()
            return StackExchange.using("mathjaxEditing", function ()
            StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
            StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["\$", "\$"]]);
            );
            );
            , "mathjax-editing");

            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "200"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodegolf.stackexchange.com%2fquestions%2f181203%2fcycles-on-the-torus%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            4












            $begingroup$


            Python 2, 87 bytes





            f=lambda m,n,z=0,l=[]:z==0if z in l else sum(f(m,n,(z+d)%m%(n*1j),l+[z])for d in(1,1j))


            Try it online!



            The interesting thing here is using a complex number z to store the coordinate of the current position. We can move up by adding 1 and move right by adding 1j. To my surprise, modulo works on complex numbers in a way that lets us handle the wrapping for each dimension separately: doing %m acts on the real part, and %(n*1j) acts on the imaginary part.






            share|improve this answer









            $endgroup$

















              4












              $begingroup$


              Python 2, 87 bytes





              f=lambda m,n,z=0,l=[]:z==0if z in l else sum(f(m,n,(z+d)%m%(n*1j),l+[z])for d in(1,1j))


              Try it online!



              The interesting thing here is using a complex number z to store the coordinate of the current position. We can move up by adding 1 and move right by adding 1j. To my surprise, modulo works on complex numbers in a way that lets us handle the wrapping for each dimension separately: doing %m acts on the real part, and %(n*1j) acts on the imaginary part.






              share|improve this answer









              $endgroup$















                4












                4








                4





                $begingroup$


                Python 2, 87 bytes





                f=lambda m,n,z=0,l=[]:z==0if z in l else sum(f(m,n,(z+d)%m%(n*1j),l+[z])for d in(1,1j))


                Try it online!



                The interesting thing here is using a complex number z to store the coordinate of the current position. We can move up by adding 1 and move right by adding 1j. To my surprise, modulo works on complex numbers in a way that lets us handle the wrapping for each dimension separately: doing %m acts on the real part, and %(n*1j) acts on the imaginary part.






                share|improve this answer









                $endgroup$




                Python 2, 87 bytes





                f=lambda m,n,z=0,l=[]:z==0if z in l else sum(f(m,n,(z+d)%m%(n*1j),l+[z])for d in(1,1j))


                Try it online!



                The interesting thing here is using a complex number z to store the coordinate of the current position. We can move up by adding 1 and move right by adding 1j. To my surprise, modulo works on complex numbers in a way that lets us handle the wrapping for each dimension separately: doing %m acts on the real part, and %(n*1j) acts on the imaginary part.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 3 hours ago









                xnorxnor

                91.8k18187444




                91.8k18187444



























                    draft saved

                    draft discarded
















































                    If this is an answer to a challenge…



                    • …Be sure to follow the challenge specification. However, please refrain from exploiting obvious loopholes. Answers abusing any of the standard loopholes are considered invalid. If you think a specification is unclear or underspecified, comment on the question instead.


                    • …Try to optimize your score. For instance, answers to code-golf challenges should attempt to be as short as possible. You can always include a readable version of the code in addition to the competitive one.
                      Explanations of your answer make it more interesting to read and are very much encouraged.


                    • …Include a short header which indicates the language(s) of your code and its score, as defined by the challenge.


                    More generally…



                    • …Please make sure to answer the question and provide sufficient detail.


                    • …Avoid asking for help, clarification or responding to other answers (use comments instead).




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodegolf.stackexchange.com%2fquestions%2f181203%2fcycles-on-the-torus%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Mobil Contents History Mobil brands Former Mobil brands Lukoil transaction Mobil UK Mobil Australia Mobil New Zealand Mobil Greece Mobil in Japan Mobil in Canada Mobil Egypt See also References External links Navigation menuwww.mobil.com"Mobil Corporation"the original"Our Houston campus""Business & Finance: Socony-Vacuum Corp.""Popular Mechanics""Lubrite Technologies""Exxon Mobil campus 'clearly happening'""Toledo Blade - Google News Archive Search""The Lion and the Moose - How 2 Executives Pulled off the Biggest Merger Ever""ExxonMobil Press Release""Lubricants""Archived copy"the original"Mobil 1™ and Mobil Super™ motor oil and synthetic motor oil - Mobil™ Motor Oils""Mobil Delvac""Mobil Industrial website""The State of Competition in Gasoline Marketing: The Effects of Refiner Operations at Retail""Mobil Travel Guide to become Forbes Travel Guide""Hotel Rankings: Forbes Merges with Mobil"the original"Jamieson oil industry history""Mobil news""Caltex pumps for control""Watchdog blocks Caltex bid""Exxon Mobil sells service station network""Mobil Oil New Zealand Limited is New Zealand's oldest oil company, with predecessor companies having first established a presence in the country in 1896""ExxonMobil subsidiaries have a business history in New Zealand stretching back more than 120 years. We are involved in petroleum refining and distribution and the marketing of fuels, lubricants and chemical products""Archived copy"the original"Exxon Mobil to Sell Its Japanese Arm for $3.9 Billion""Gas station merger will end Esso and Mobil's long run in Japan""Esso moves to affiliate itself with PC Optimum, no longer Aeroplan, in loyalty point switch""Mobil brand of gas stations to launch in Canada after deal for 213 Loblaws-owned locations""Mobil Nears Completion of Rebranding 200 Loblaw Gas Stations""Learn about ExxonMobil's operations in Egypt""Petrol and Diesel Service Stations in Egypt - Mobil"Official websiteExxon Mobil corporate websiteMobil Industrial official websiteeeeeeeeDA04275022275790-40000 0001 0860 5061n82045453134887257134887257

                    Frič See also Navigation menuinternal link

                    Identify plant with long narrow paired leaves and reddish stems Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?What is this plant with long sharp leaves? Is it a weed?What is this 3ft high, stalky plant, with mid sized narrow leaves?What is this young shrub with opposite ovate, crenate leaves and reddish stems?What is this plant with large broad serrated leaves?Identify this upright branching weed with long leaves and reddish stemsPlease help me identify this bulbous plant with long, broad leaves and white flowersWhat is this small annual with narrow gray/green leaves and rust colored daisy-type flowers?What is this chilli plant?Does anyone know what type of chilli plant this is?Help identify this plant