Advertisement
GAMELASTER

Untitled

Apr 27th, 2016
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.41 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace ConsoleApplication1
  7. {
  8.     class Program
  9.     {
  10.         static bool fillUtil(int[] res, int curr, int n)
  11.         {
  12.             if (curr == 0) return true;
  13.             int i;
  14.             for (i = 0; i < 2 * n - curr - 1; i++)
  15.             {
  16.                 if (res[i] == 0 && res[i + curr + 1] == 0)
  17.                 {
  18.                     res[i] = res[i + curr + 1] = curr;
  19.                     if (fillUtil(res, curr - 1, n))
  20.                         return true;
  21.  
  22.                     res[i] = res[i + curr + 1] = 0;
  23.                 }
  24.             }
  25.             return false;
  26.         }
  27.         static void fill(int n)
  28.         {
  29.             int[] res = new int[2 * n];
  30.                
  31.             int i;
  32.             for (i = 0; i < 2 * n; i++)
  33.                 res[i] = 0;
  34.             if (fillUtil(res, n, n))
  35.             {
  36.                 for (i = 0; i < 2 * n; i++)
  37.                     Console.Write(res[i]);
  38.             }
  39.             else
  40.                 Console.Write("Not Possible");
  41.         }
  42.  
  43.         static void Main(string[] args)
  44.         {
  45.             Console.Write("3: ");
  46.             fill(3);
  47.             Console.Write("\n\n2: ");
  48.             fill(2);
  49.             Console.Write("\n4: ");
  50.             fill(4);
  51.             Console.Write("\n\n");
  52.             Console.ReadKey();
  53.         }
  54.     }
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement