使其爆炸!


33

以正整数矩阵作为输入,使其爆炸!


爆炸矩阵的方法是在每个元素(包括外部边界)周围简单地添加零。

输入/输出格式一如既往是可选的!

测试用例:

1
-----
0 0 0
0 1 0
0 0 0
--------------

1 4
5 2
-----
0 0 0 0 0
0 1 0 4 0
0 0 0 0 0
0 5 0 2 0
0 0 0 0 0
--------------

1 4 7
-----
0 0 0 0 0 0 0
0 1 0 4 0 7 0
0 0 0 0 0 0 0
--------------

6
4
2
-----
0 0 0
0 6 0
0 0 0
0 4 0
0 0 0
0 2 0
0 0 0

Answers:


59

操作Flashpoint脚本语言,182字节

f={t=_this;c=count(t select 0);e=[0];i=0;while{i<c*2}do{e=e+[0];i=i+1};m=[e];i=0;while{i<count t}do{r=+e;j=0;while{j<c}do{r set[j*2+1,(t select i)select j];j=j+1};m=m+[r,e];i=i+1};m}

取消高尔夫:

f=
{
  // _this is the input matrix. Let's give it a shorter name to save bytes.
  t = _this;
  c = count (t select 0);

  // Create a row of c*2+1 zeros, where c is the number of columns in the
  // original matrix.
  e = [0];
  i = 0;
  while {i < c*2} do
  {
    e = e + [0];
    i = i + 1
  };

  m = [e]; // The exploded matrix, which starts with a row of zeros.
  i = 0;
  while {i < count t} do
  {
    // Make a copy of the row of zeros, and add to its every other column 
    // the values from the corresponding row of the original matrix.
    r = +e;
    j = 0;
    while {j < c} do
    {
      r set [j*2+1, (t select i) select j];
      j = j + 1
    };

    // Add the new row and a row of zeroes to the exploded matrix.
    m = m + [r, e];
    i = i + 1
  };

  // The last expression is returned.
  m
}

致电:

hint format["%1\n\n%2\n\n%3\n\n%4",
    [[1]] call f,
    [[1, 4], [5, 2]] call f,
    [[1, 4, 7]] call f,
    [[6],[4],[2]] call f];

输出:

本着挑战的精神:


6
未知; 男人; 一千。
MooseBoys

2
现在我很困惑
Grajdeanu Alex。

@MrGrj该命令字面上使事情变得

1
为第二个gif +1,“ 迎接挑战 ”!:)
Kevin Cruijssen

10

果冻 12  11 字节

-1个字节,感谢Outgolfer的Erik(无需为连接使用交换参数)

j00,0jµ€Z$⁺

在线尝试!或查看测试套件

接受和返回列表列表的单子链接。

怎么样?

j00,0jµ€Z$⁺ - Link: list of lists, m
          ⁺ - perform the link to the left twice in succession:
         $  -   last two links as a monad
      µ€    -     perform the chain to the left for €ach row in the current matrix:
j0          -       join with zeros                [a,b,...,z] -> [a,0,b,0,...,0,z]
  0,0       -       zero paired with zero = [0,0]
     j      -       join                     [a,0,b,0,...,0,z] -> [0,a,0,b,0,...,0,z,0]
        Z   -     and then transpose the resulting matrix

您可以保存一个字节:j00,0jµ€Z$⁺
越野选手埃里克(Erik the Outgolfer)

哦,当然,谢谢!
乔纳森·艾伦,


6

MATL,12字节

FTXdX*0JQt&(

输入是带有;行分隔符的矩阵。

在线尝试!

说明

FT     % Push [0 1]
Xd     % Matrix with that diagonal: gives [0 0; 0 1]
X*     % Implicit input. Kronecker product
0      % Push 0
JQt    % Push 1+j (interpreted as "end+1" index) twice
&(     % Write a 0 at (end+1, end+1), extending the matrix. Implicit display

5

Japt,18个字节

Ov"y ®î íZ c p0Ã"²

在线测试!(使用-Q标志,因此输出更易于理解。)

与果冻的答案类似,但更长的时间...

说明

代码的外部只是一种模拟Jelly的解决方法

  "             "²   Repeat this string twice.
Ov                   Evaluate it as Japt.

代码本身是:

y ®   î íZ c p0Ã
y mZ{Zî íZ c p0}   Ungolfed
y                  Transpose rows and columns.
  mZ{          }   Map each row Z by this function:
     Zî              Fill Z with (no argument = zeroes).
        íZ           Pair each item in the result with the corresponding item in Z.
           c         Flatten into a single array.
             p0      Append another 0.

重复两次,此过程将提供所需的输出。结果被隐式打印。


5

外壳,12个字节

₁₁
Tm»o:0:;0

获取并返回一个2D整数数组。在线尝试!

说明

与其他许多答案中的想法相同:将零添加到每一行并转置两次。行操作通过折叠实现。

₁₁         Main function: apply first helper function twice
Tm»o:0:;0  First helper function.
 m         Map over rows:
  »         Fold over row:
   o         Composition of
      :       prepend new value and
    :0        prepend zero,
       ;0    starting from [0].
            This inserts 0s between and around elements.
T          Then transpose.

5

Mathematica,39个字节

r=Riffle[#,0,{1,-1,2}]&/@Thread@#&;r@*r

在Wolfram沙箱中尝试!像“ r=Riffle[#,0,{1,-1,2}]&/@Thread@#&;r@*r@{{1,2},{3,4}}” 那样称呼它。

像许多其他答案一样,这可以通过对每一行中的零进行转置和修饰来进行,然后再次执行相同的操作。受到乔纳森·艾伦(Jonathan Allan)的果冻(Jelly)答案的特别启发,但这只是因为我碰巧首先看到了该答案。


4

Dyalog APL,24个字节

@ZacharyT节省了4个字节

@KritixiLithos节省了5个字节

{{⍵↑⍨-1+⍴⍵}⊃⍪/,/2 2∘↑¨⍵}

在线尝试!


您不需要在周围加上括号1,1,⍴⍵,对吗?
扎卡里


@KritixiLithos很好用1 1+
Uriel 2015年

APL面向阵列,这样1+行得通吗?
扎卡里

@ZacharyT我刚刚意识到,在看到您的答案之后……
Kritixi Lithos


3

Python 3中104个101 97 93 86字节

  • @Zachary T保存了3个字节:w删除了未使用的变量和一个不需要的空间
  • @Zachary T又保存了4个字节:[a,b]正好a,b附加到列表中
  • @nore保存了4个字节:使用切片
  • @Zachary T和@ovs帮助节省了7个字节:将语句压缩在for循环中
def f(a):
 m=[(2*len(a[0])+1)*[0]]
 for i in a:r=m[0][:];r[1::2]=i;m+=r,m[0]
 return m

在线尝试!


1
您可以删除w并保存2个字节:repl.it/JBPE –Zacharý2015
6

1
哦,你也行后不需要的空间m+=[r,w]
扎卡里

1
此外,您可以通过更改保存4个字节[j,0]j,0[r,m[0]r,m[0]
扎卡里

1
您可以使用数组切片保存另外4个字节。
诺雷

1
您可以通过转换为python2并将for循环缩进更改为单个选项卡来节省三个字节。
扎卡里

3

Python 3,118个字节

def a(b):
    z='00'*len(b[0])+'0'
    r=z+'\n'
    for c in b:
        e='0'
        for d in c:e+=str(d)+'0'
        r+=e+'\n'+z+'\n'
    return r

第一次打高尔夫球!不是最好的,但是我自己能这么说我感到很骄傲!

  • 小麦评论的-17个字节
  • 内联第二个for循环中的-4个字节

您好,欢迎来到该网站。您似乎在这里有很多空白。例如,您的+==中的一些被空格包围,可以将其删除。另外+=,可以将连续执行两次简化为一个语句,例如e+=str(d)+'0'
Wheat Wizard

@WheatWizard:谢谢,谢谢。保存了17个字节:)
Liren

我现在注意到,您可以将您的内部for循环折叠到一行上for d in c:e+=str(d)+'0',但是您可能想完全使用join map(str,d))+' , in which case it becomes pointless to define 0'e`。
小麦巫师

1
啊,只是想到我自己!嗯,我必须学习.join和map()首先是我猜到的。我会回来的!
Liren

1
你可以把的定义z,并r在同一行(与;它们之间),节省了压痕的一个字节。
诺雷

3

R,65个字节

感谢Jarko Dubbeldam和Giuseppe的宝贵意见!

f=function(x){a=dim(x);y=array(0,2*a+1);y[2*1:a[1],2*1:a[2]]=x;y}

该函数的输入必须是矩阵或二维数组。

测试

f(matrix(1))
f(matrix(c(1,5,4,2),2))
f(matrix(c(1,4,7),1))
f(matrix(c(6,4,2)))

输出量

> f(matrix(1))
     [,1] [,2] [,3]
[1,]    0    0    0
[2,]    0    1    0
[3,]    0    0    0
> f(matrix(c(1,5,4,2),2))
     [,1] [,2] [,3] [,4] [,5]
[1,]    0    0    0    0    0
[2,]    0    1    0    4    0
[3,]    0    0    0    0    0
[4,]    0    5    0    2    0
[5,]    0    0    0    0    0
> f(matrix(c(1,4,7),1))
     [,1] [,2] [,3] [,4] [,5] [,6] [,7]
[1,]    0    0    0    0    0    0    0
[2,]    0    1    0    4    0    7    0
[3,]    0    0    0    0    0    0    0
> f(matrix(c(6,4,2)))
     [,1] [,2] [,3]
[1,]    0    0    0
[2,]    0    6    0
[3,]    0    0    0
[4,]    0    4    0
[5,]    0    0    0
[6,]    0    2    0
[7,]    0    0    0

一眼我想用a=dim(x)*2+1的,而不是nrowncol效果会更好。然后y=matrix(0);dim(y)=a,您可以做和2*1:a[1],2*1:a[2]
JAD

1
实际上y=array(0,a)会更短。
JAD

1
我相信您可以删除索引周围的括号,即,2*1:a[1]因为:优先级高于*
Giuseppe


2

PHP,98字节

输入为2D数组,输出为字符串

<?foreach($_GET as$v)echo$r=str_pad(0,(count($v)*2+1)*2-1," 0"),"
0 ".join(" 0 ",$v)." 0
";echo$r;

在线尝试!

PHP,116字节

输入和输出为2D数组

<?foreach($_GET as$v){$r[]=array_fill(0,count($v)*2+1,0);$r[]=str_split("0".join(0,$v)."0");}$r[]=$r[0];print_r($r);

在线尝试!


2

Clojure,91个字节

#(for[h[(/ 2)]i(range(- h)(count %)h)](for[j(range(- h)(count(% 0))h)](get(get % i[])j 0)))

半步迭代范围。



2

Python 2,64个字节

lambda l:map(g,*map(g,*l))
g=lambda*l:sum([[x,0]for x in l],[0])

在线尝试!

该函数g将输入散布在零之间。主要功能是在应用时移调输入g,然后再次移调。也许有一种方法可以避免main函数中的重复。


2

JavaScript(ES6),73 72字节

a=>(g=a=>(r=[b],a.map(v=>r.push(v,b)),b=0,r))(a,b=a[0].map(_=>0)).map(g)

格式化和评论

水平和垂直插入零是非常相似的操作。这里的想法是对两个步骤使用相同的函数g()

a =>                            // a = input array
  (g = a =>                     // g = function that takes an array 'a',
    (                           //     builds a new array 'r' where
      r = [b],                  //     'b' is inserted at the beginning
      a.map(v => r.push(v, b)), //     and every two positions,
      b = 0,                    //     sets b = 0 for the next calls
      r                         //     and returns this new array
  ))(a, b = a[0].map(_ => 0))   // we first call 'g' on 'a' with b = row of zeros
  .map(g)                       // we then call 'g' on each row of the new array with b = 0

测试用例


2

木炭,49字节

A⪪θ;αA””βF⁺¹×²L§α⁰A⁺β⁰βA⁺β¶βFα«βA0δFιA⁺δ⁺κ⁰δ⁺䶻β

在线尝试!

输入是单个字符串,用分号分隔行。


1
现代木炭可以在24个字节中完成此操作:≔E⪪θ;⪫00⪫ι0θFθ⟦⭆ι0ι⟧⭆⊟θ0但是即使避免使用StringMap,我仍然认为可以在27个字节中完成此操作。
尼尔,

哦,有两个一般性提示:空字符串有一个预定义的变量,您可以使用Times或Mold创建给定长度的零字符串。
尼尔

2

C ++ 17 +模块,192字节

cin输入为字符串行,输出到cout

import std.core;int main(){using namespace std;int i;auto&x=cout;string s;while(getline(cin,s)){for(int j=i=s.length()*2+1;j--;)x<<0;x<<'\n';for(auto c:s)x<<'0'<<c;x<<"0\n";}for(;i--;)x<<'0';}

2

C#,146字节


数据

  • 输入 Int32[,] m要分解的矩阵
  • 输出 Int32[,]分解矩阵

打高尔夫球

(int[,] m)=>{int X=m.GetLength(0),Y=m.GetLength(1),x,y;var n=new int[X*2+1,Y*2+1];for(x=0;x<X;x++)for(y=0;y<Y;y++)n[x*2+1,y*2+1]=m[x,y];return n;}

不打高尔夫球

( int[,] m ) => {
    int
        X = m.GetLength( 0 ),
        Y = m.GetLength( 1 ),
        x, y;

    var
        n = new int[ X * 2 + 1, Y * 2 + 1 ];

    for( x = 0; x < X; x++ )
        for( y = 0; y < Y; y++ )
            n[ x * 2 + 1, y * 2 + 1 ] = m[ x, y ];

    return n;
}

非高尔夫可读

// Takes an matrix of Int32 objects
( int[,] m ) => {
    // To lessen the byte count, store the matrix size
    int
        X = m.GetLength( 0 ),
        Y = m.GetLength( 1 ),
        x, y;

    // Create the new matrix, with the new size
    var
        n = new int[ X * 2 + 1, Y * 2 + 1 ];

    // Cycle through the matrix, and fill the spots
    for( x = 0; x < X; x++ )
        for( y = 0; y < Y; y++ )
            n[ x * 2 + 1, y * 2 + 1 ] = m[ x, y ];

    // Return the exploded matrix
    return n;
}

完整代码

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace TestBench {
    public static class Program {
        private static Func<Int32[,], Int32[,]> f = ( int[,] m ) => {
            int
                X = m.GetLength( 0 ),
                Y = m.GetLength( 1 ),
                x, y,

                a = X * 2 + 1,
                b = Y * 2 + 1;

            var
                n = new int[ a, b ];

            for( x = 0; x < X; x++ )
                for( y = 0; y < Y; y++ )
                    n[ a, b ] = m[ x, y ];

            return n;
        };

        public static Int32[,] Run( Int32[,] matrix ) {
            Int32[,]
                result = f( matrix );

            Console.WriteLine( "Input" );
            PrintMatrix( matrix );

            Console.WriteLine( "Output" );
            PrintMatrix( result );

            Console.WriteLine("\n\n");

            return result;
        }

        public static void RunTests() {
            Run( new int[,] { { 1 } } );
            Run( new int[,] { { 1, 3, 5 } } );
            Run( new int[,] { { 1 }, { 3 }, { 5 } } );
            Run( new int[,] { { 1, 3, 5 }, { 1, 3, 5 }, { 1, 3, 5 } } );
        }

        static void Main( string[] args ) {
            RunTests();

            Console.ReadLine();
        }

        public static void PrintMatrix<TSource>( TSource[,] array ) {
            PrintMatrix( array, o => o.ToString() );
        }
        public static void PrintMatrix<TSource>( TSource[,] array, Func<TSource, String> valueFetcher ) {
            List<String>
                output = new List<String>();

            for( Int32 xIndex = 0; xIndex < array.GetLength( 0 ); xIndex++ ) {
                List<String>
                    inner = new List<String>();

                for( Int32 yIndex = 0; yIndex < array.GetLength( 1 ); yIndex++ ) {
                    inner.Add( valueFetcher( array[ xIndex, yIndex ] ) );
                }

                output.Add( $"[ {String.Join( ", ", inner )} ]" );
            }

            Console.WriteLine( $"[\n   {String.Join( ",\n   ", output )}\n]" );
        }
    }
}

发布

  • 1.0 - 146 bytes-初始溶液。

笔记

  • 没有

如果您声明答案是2D int-array int (int[,] m)=>m=>则不需要,就足够m了。此外,您可以更改,x,,x=0,,摆脱了x=0在for循环初始化-1字节。您可以y++通过更改为-1字节=m[x,y];来从内部循环中删除=m[x,y++];。但是请+1,如果我创建您答案的端口,它也比我当前的Java答案短。:)
Kevin Cruijssen

1

Dyalog APL,24个字节

{{⍵↑⍨¯1-⍴⍵}⊃⍪/,/2 2∘↑¨⍵}

任何改进都是欢迎和想要的!




1

JavaScript(ES6),80 78字节

a=>[...a,...a,a[0]].map((b,i)=>[...b,...b,0].map((_,j)=>i&j&1&&a[i>>1][j>>1]))


1

APL(Dyalog),22字节

提示输入矩阵,返回封闭的矩阵。

{⍺⍀⍵\a}/⍴∘0 1¨1+2×⍴a←⎕

在线尝试!

a←⎕ 提示矩阵,并分配给

 的尺寸一个(行,列)

 乘以二

1+ 加一

⍴∘0 1¨ 使用每个到ř ESHAPE(周期地)的数字0和1

{}/ 通过在两个数字之间插入以下匿名函数来减少:

⍵\a *扩展的列一个根据右边的参数

⍺⍀a 根据左参数展开*的行

* 0插入零列/行,1插入原始数据列/行


1

Java的8,183个 166 162 129字节

m->{int a=m.length,b=m[0].length,x=0,y,r[][]=new int[a*2+1][b*2+1];for(;x<a;x++)for(y=0;y<b;r[x*2+1][y*2+1]=m[x][y++]);return r;}

输入和输出为int[][]

通过创建@auhmaan的C#Answer的端口来生成-33字节。

说明:

在这里尝试。

m->{                                // Method with 2D integer-array as parameter and return-type
  int a=m.length,                   //  Current height
      b=m[0].length,                //  Current width
      x=0,y,                        //  Two temp integers
      r[][]=new int[a*2+1][b*2+1];  //  New 2D integer-array with correct size
  for(;x<a;x++)                     //  Loop (1) over the height
    for(y=0;y<b;                    //   Inner loop (2) over the width
      r[x*2+1][y*2+1]=m[x][y++]     //    Fill the new array with the input digits
    );                              //   End of inner loop (2)
                                    //  End of loop (1) (implicit / single-line body)
  return r;                         //  Return result 2D integer-array
}                                   // End of method


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.