画一个phi三角形


11

澄清:基本上,你需要这个

欧拉的totient函数的名称为phi。

让我们尝试计算phi(8)

首先,向后列出所有数字8,且不包括0或以下

8
7
6
5
4
3
2
1

现在找出哪些数字与8不共享因数(1不计数),并#在其位置放置a 。

8
#
6
#
4
#
2
#

删除数字。

#

#

#

#
                                                 -

现在执行此操作,但是将输出串成三角形

        9
       88
      777
     6666
    55555
   444444
  3333333
 22222222
111111111
---------
123456789

# 排除非要素共享数

        9
       8#
      7##
     6#66
    5####
   4#4#4#
  3##3##3
 2#2#2#2#
#########

删除号码:

        #
       ##
      #
     ####
    # # #
   ## ## 
  # # # #
#########

这将是输入9的输出(因为9列)。

允许前导+尾随换行符。


需要澄清。

4
如果需要澄清,请先尝试沙盒。
Rɪᴋᴇʀ

可以输出为行列表吗?
Maltysen'5

允许换行符吗?
路易斯·门多

Answers:


7

MATL17 15字节

:Gq:!Zd1=RP35*c

在线尝试!

如果可以接受前导换行符:13个字节

:t!Zd1=RP35*c

说明

:     % Take input N. Generate row vector [1 2 ... N]
Gq:   % Row vector [1 2 ... N-1].
      % (In the 13-byte version this is replaced by function `t`, which duplicates
      % the array [1 2 ... N])
!     % Transpose into column vector
Zd    % GCD, element-wise with broadcast. Gives (N-1)×N matrix
1=    % True for entries that equal 1, corresponding to relatively prime pairs.
      % The rest of entries are set to false, i.e. 0.
R     % Upper triangular part: set values below diagonal to 0
P     % Flip matrix vertically
35*   % Multiply each entry by 35 (ASCII for '#')
c     % Convert to char. 0 will be displayed as a space. Implicitly display

char(0)
好好

@Suever事实证明它非常有用!
路易斯·门多



2

JavaScript(ES6),112字节

n=>[...s=` `.repeat(n)].map(_=>s.replace(/./g,_=>`# `[+g(n+1,i++)],n-=i=1),g=(i,j)=>i?i>j||g(j%i,i):j>1).join`\n`

其中\n代表文字换行符。替代解决方案,也是112个字节:

n=>(s=`# `.repeat(n)).replace(r=/../g,_=>s.replace(r,m=>m[+g(n+1,i++)],n-=i=1)+`
`,g=(i,j)=>i?i>j||g(j%i,i):j>1)

1

Java中,162个 158字节

int g(int a,int b){return a<1?b:g(b%a,a);}
String d(int n){String r="";for(int i=0;i<n;i++){for(int j=1;j<=n;)r+=i+j<n|g(n-i,j++)>1?" ":"#";r+="\n";}return r;}

完整程序(未更新)

import java.util.Scanner;

public class Q79082 {
    int gcd_ungolfed(int a,int b){
        if(a==0) return b;
        return gcd_ungolfed(b%a,a);
    }
    void draw_ungolfed(int n){
        for(int i=1;i<=n;i++){
            for(int j=1;j<=n;j++){
                if(i+j<=n || gcd_ungolfed(n+1-i,j)!=1){
                    System.out.print(" ");
                }else{
                    System.out.print("#");
                }
            }
            System.out.println();
        }
    }
    int g(int a,int b){return a<1?b:g(b%a,a);}
    String d(int n){String r="";for(int i=0;i<n;i++){for(int j=1;j<=n;j++)r+=(i+j<n||g(n-i,j)>1)?" ":"#";r+="\n";}return r;}
    public static void main(String args[]){
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        sc.close();
        new Q79082().draw_ungolfed(n);
        System.out.println(new Q79082().d(n));
    }
}

输入输出:

9

        #
       ##
      #  
     ####
    # # #
   ## ## 
  # # # #
#########

        #
       ##
      #  
     ####
    # # #
   ## ## 
  # # # #
#########

使快捷方式或进入单个管道,然后将i ++和j ++放入对g的调用中。将节省3个字节。同样,您不需要d中的三元组中的括号。另外2个字节
蓝色

我+ +将无法工作,因为嵌套。
Leaky Nun

1

SQL(PostGreSQL9.4),239 291字节

创建可以执行的准备好的语句。我敢肯定我可以从中取出很多字节,但是稍后我将不得不选择它。交叉联接的范围是1到n。计算横向连接中的GCD。当GCD为1且系列A大于系列B时,输出“#”,否则输出空格。将结果汇总到按系列B分组的字符串中。

prepare p(int)as
select string_agg(coalesce(CASE WHEN b<=a AND x=1THEN'#'END,' '),'')from generate_series(1,$1)a,generate_series(1,$1)b,LATERAL(SELECT MAX(G)x FROM generate_series(1,LEAST(a,b))g WHERE a%g+b%g=0)g
group by b
order by b desc

以以下方式运行

execute p(13)

string_agg
----------------

            #
           ##
          # #
         ## #
        # # #
       ######
      #   # #
     #### ###
    # # # # #
   ## ## ## #
  # # # # # #
#############

并清理

deallocate p

0

Ruby,84个字节

->n{s=[];n.times{|i|j=0;m=n-i;s<<(?#*n).gsub(/./){m.gcd(j+=1)>1||m>j ?' ':$&}};s*$/}

0

Python 2(120字节)

g=lambda m,n:m if n<1 else g(n,m%n)
r=range(input())
for i in r[:0:-1]:print''.join('# '[i>j+1 or g(i,j+1)>1]for j in r)
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.