기울기로 영역을 분류합니다


16

정의

K 번째 크기의 정방 행렬의 링 N , 1 ≤ K ≤ 실링 (N / 2) 의 요소에 의해 형성되는 목록 k는 번째(N-K + 1) 번째 행 및 열 있지만없이 첫 번째 및 마지막 k-1 요소.

예:

매트릭스:

12 34 5
6 7 8 9 1
8 7 6 5 4
3 2 1 9 8
7 6 5 4 3

고리로 구분 :

+ ------------------- +
| 1 2 3 4 5 |
| + ----------- + |
| 6 | 7 8 9 | 1 |
| | + --- + | |
| 8 | 7 | 6 | 5 | 4 |
| | + --- + | |
| 3 | 2 1 9 | 8 |
| + ----------- + |
| 7 6 5 4 3 |
+ ------------------- +

위의 첫 번째 고리 1,2,3,4,5,1,4,8,3,4,5,6,7,3,8,67,8,9,5,9,1,2,7이고 두 번째는 이고 세 번째는 6입니다.

양의 정수로 구성된 N x N 행렬은 다음과 같습니다.

  • k 번째 고리 의 모든 정수 가 (k + 1) 번째 고리 의 정수 보다 엄격하게 크면 오목 합니다 . 여기서 k1N 사이의 정수입니다 (첫 번째 고리의 것보다 두 번째 고리의 것보다 큼). 차례로 세 번째 등의 것보다 큽니다.) 예:

    4 5 6 4 7-> 4,5,6,4,7,4,8,5,5,4,6,5,9,5,5,4가 모두
    4 3 2 2 4 3,2,2,3,2,3,3,2 중 하나, 모두 1보다 큼
    5 2 1 3 8
    5 3 3 2 5
    9 5 6 4 5
    
  • 행렬의 모든 정수가 같으면 플랫 입니다. 다른 예 (아마 중복) :

    2 2 2 2
    2 2 2 2
    2 2 2 2
    2 2 2 2
    
  • 볼록 경우 모든 정수 K 번째 고리 엄격에 비해 낮다 (K + 1) 번째 고리, k는 사이 정수 1N (제 고리상의 사람들은 어느 제에 그보다 낮은 차례로 세 번째 등보다 낮습니다). 예:

    1 2 1-> 1과 2가 모두 6보다 낮기 때문에
    2 6 2
    1 2 1
    
  • 행렬이 위의 기준을 만족하지 않으면 혼합 됩니다. 예:

    3 3 3 3 3
    3 2 2 2 3
    3 2 3 2 3
    3 2 2 2 3
    3 3 3 3 3
    

도전

크기가 3 이상인 양의 정수로 구성된 제곱 행렬 이 주어지면 위의 정의에 따라 분류하십시오. 즉, 매트릭스가 오목, 편평, 볼록 또는 혼합인지에 따라 4 개의 서로 다른 일관된 값 중 하나를 출력 합니다.

모든 프로그래밍 언어 에서 경쟁 할 수 있으며 표준 방법을 통해 합리적인 형식으로 입력 및 출력을 제공 할 수 있지만 이러한 허점 은 기본적으로 금지되어 있습니다. 이것은 이므로 모든 언어에 대한 가장 짧은 제출 (바이트)이 이깁니다.

테스트 사례

선택할 수있는 여러 가지 예가 있습니다. 각 범주에서 6 개를 선택했습니다.

오목한

[[3, 3, 3], [3, 1, 3], [3, 3, 3]]
[[2, 3, 4], [5, 1, 6], [7, 8, 9]]
[[19, 34, 45], [34, 12, 14], [13, 13, 13]]
[[3, 4, 3, 4], [4, 2, 1, 3], [3, 1, 2, 4], [4, 3, 4, 3]]
[[4, 5, 6, 4, 7], [4, 3, 2, 2, 4], [5, 2, 1, 3, 8], [5, 3, 3, 2, 5], [9, 5, 6, 4, 5]]
[[7, 7, 7, 7, 7], [7, 6, 6, 6, 7], [7, 6, 5, 6, 7], [7, 6, 6, 6, 7], [7, 7, 7, 7, 7]]

플랫

[[1, 1, 1], [1, 1, 1], [1, 1, 1]]
[[2, 2, 2], [2, 2, 2], [2, 2, 2]]
[[8, 8, 8], [8, 8, 8], [8, 8, 8]]
[[120, 120, 120], [120, 120, 120], [120, 120, 120]]
[[10, 10, 10, 10], [10, 10, 10, 10], [10, 10, 10, 10], [10, 10, 10, 10]]
[[5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5], [5, 5, 5, 5, 5, 5]]

볼록한

[[1, 2, 1], [2, 6, 2], [1, 2, 1]]
[[1, 1, 1], [1, 2, 1], [1, 1, 1]]
[[19, 34, 45], [34, 76, 14], [13, 6, 13]]
[[3, 3, 3, 3], [3, 4, 4, 3], [3, 4, 4, 3], [3, 3, 3, 3]]
[[192, 19, 8, 6], [48, 324, 434, 29], [56, 292, 334, 8], [3, 4, 23, 23]]
[[291, 48, 7, 5], [47, 324, 454, 30], [58, 292, 374, 4], [9, 2, 53, 291]]

혼합

[[1, 2, 3], [4, 5, 9], [6, 7, 8]]
[[10, 14, 21], [100, 8, 3], [29, 2, 19]]
[[5, 5, 5, 5], [5, 4, 4, 5], [5, 4, 6, 5], [5, 5, 5, 5]]
[[3, 3, 3, 3], [3, 1, 2, 3], [3, 3, 2, 3], [3, 3, 3, 3]]
[[12, 14, 15, 16], [12, 18, 18, 16], [12, 11, 11, 16], [12, 14, 15, 16]]
[[5, 5, 5, 5, 5], [5, 4, 4, 4, 5], [5, 4, 6, 4, 5], [5, 4, 4, 4, 5], [5, 5, 5, 5, 5]]

이 도전은 이전에 샌드 박스 에 게시되었습니다 . 귀중한 피드백을 주신 분들께 감사드립니다.
Mr. Xcoder 2018 년

2
Boy, 다양한 언어로 모든 테스트 케이스를 처리하는 데 편리한 행렬 함수 로의 배열 배열 문자열 변환을 사용 하는 것이 좋지 않을 것 입니다 :)
ngm

답변:


5

자바 (JDK 10) , 247 (232) 220 바이트

x->{int i=0,j=x.length,k,m,M,p=0,P=0,r=0;for(;i<j;){for(M=m=x[k=i][--j];k<=j;)for(int q:new int[]{x[i][k],x[j][k],x[k][i],x[k++][j]}){m=m<q?m:q;M=M<q?q:M;}r=i++>0?(k=P<m?3:p>M?1:P==m?2:4)*r!=r*r?4:k:0;p=m;P=M;}return r;}

온라인으로 사용해보십시오!

출력 :

  • 1 "오목"
  • 2 "플랫"
  • 3 "볼록한"
  • 4 "혼합"

언 골프 드 :

x -> { // lambda that takes in the input int[][]
  int i = 0, // index of right bound of ring
      j = x.length, // index of left bound of ring
      k, // index of row-column-pair in ring
      m, // minimum of ring
      M, // maximum of ring
      p = 0, // minimum of previous ring
      P = 0, // maximum of previous ring
      r = 0; // result
  for (; i < j; ) { // iterate the rings from outside inwards
    // set both min and max to be to top right corner of the ring (and sneakily set some loop variables to save space)
    for (M = m = x[k = i][--j]; k <= j; ) // iterate the row-column pairs of the ring from top-right to bottom-left
      for (int q : new int[] {x[i][k], x[j][k], x[k][i], x[k++][j]}) { // iterate all of the cells at this row-column pair (and sneakily increment the loop variable k)
        // find new minimum and maximum
        m = m < q ? m : q;
        M = M < q ? q : M;
      }
    r = // set the result to be...
      i++ > 0 ? // if this is not the first ring... (and sneakily increment the loop variable i)
              // if the new result does not match the old result...
              (k = P < m ? // recycling k here as a temp variable to store the new result, computing the result by comparing the old and new mins/maxes
                         3
                         : p > M ?
                                 1
                                 : P == m ? 
                                          2
                                          : 4) * r != r * r ? // multiplying by r here when comparing because we want to avoid treating the case where r = 0 (unset) as if r is different from k
                                                            4 // set the result to "mixed"
                                                            : k // otherwise set the result to the new result
              : 0; // if this is the first ring just set the result to 0
    // set the old ring mins/maxes to be the current ones
    p = m; 
    P = M;
  }
  return r; // return the result
}

5

젤리 ,  18 17  16 바이트

이 노력이 아웃 골프 될 가능성이 많다고 생각합니다

L‘HạŒỤṀ€IṠQṢ«FE$

정수 목록을 리턴하는 숫자 목록을 승인하는 모나드 링크 :

Concave ->  [0, 0]
Flat    ->  [-1, 0, 1]
Convex  ->  [-1, 0]
Mixed   ->  [-1, 0, 0]

온라인으로 사용해보십시오! 또는 테스트 스위트를 참조하십시오.

L‘H덜 효율적이지만 원자 적으로 더 짧은 것으로 대체 될 수있다 JÆm.

어떻게?

L‘HạŒỤṀ€IṠQṢ«FE$ - Link: list of (equal length) lists of numbers
L                - length
 ‘               - increment
  H              - halve
                 -   = middle 1-based index (in both dimensions as the input is square)
    ŒỤ           - sort multi-dimensional indices by their corresponding values
                 -   = a list of pairs of 1-based indexes
   ạ             - absolute difference (vectorises)
                 -   = list of [verticalDistanceToMiddle, horizontalDistanceToMiddle] pairs
      Ṁ€         - maximum of €ach
                 -   each = N/2-k (i.e. 0 as middle ring and N/2 as outermost)
        I        - incremental deltas (e.g. [3,2,2,3,1]->[3-2,2-2,3-2,1-3]=[-1,0,1,-2])
         Ṡ       - sign (mapping -n:-1; 0:0; and +n:1)
          Q      - de-duplicate
           Ṣ     - sort
                 -   = concave:[0, 1]; convex:[-1, 0]; flatOrMixed:[-1, 0, 1]
               $ - last two links as a monad
             F   -   flatten
              E  -   all equal? (1 if flat otherwise 0)
            «    - minimum (vectorises)
                 -   = concave:[0, 0]; convex:[-1, 0]; mixed:[-1, 0, 0]; flat:[-1, 0, 1]

5

파이썬 (2) , 219 (216) 189 176 바이트

def g(M):A=[sorted((M[1:]and M.pop(0))+M.pop()+[i.pop(j)for j in[0,-1]for i in M])for k in M[::2]];S={cmp(x[j],y[~j])for x,y in zip(A,A[1:])for j in[0,-1]};return len(S)<2and S

온라인으로 사용해보십시오!

출력 set([1]), set([0]), set([-1]),또는 False각각 오목, 편평, 볼록 또는 혼합 용.

Thx for : ovs에 의한 몇 가지 최적화에서 무려 27 바이트 . 그리고 나서 또 다른 13 바이트.

Aov로 인한 목록 이해 는 각 고리의 요소 목록을 정렬하여 만듭니다.

다음으로, 우리는 비교 max하고 min상기보고 인접한 링 사이의 값을 0제하고 -1A. 주에 각각 정렬 된 목록의 번째 요소는 예를 들어, 만약 있다고 M오목이다 min각 외륜보다 커야 max다음 가장 안쪽 고리의 ; 그리고 나서 max각 외부 링 min의 다음 링은 다음 가장 안쪽 링 보다 클 것 입니다.

경우 M오목한 평탄하거나 볼록한,이 집합 min/max비교 만 1 요소를 가질 것이다 {-1, 0, 1}; 혼합 된 경우 둘 이상의 요소가 있습니다.


@ovs : 그것은 꽤 열입니다; 다른 바이트를 목록 이해력으로 바꾸어 다른 바이트를 절약했습니다 (이것은 다른 유사한 과제에 매우 유용한 기술이라고 생각합니다).
Chas Brown

목록 이해력을 줄이는 방법이 있지만 while 루프는 여전히 짧아 보입니다 while M:k=M[0]+M[-1];M=M[1:-1];A+=sorted(k+[i.pop(j)for j in[0,-1]for i in M]),(174 바이트)
있을지 모르지만

@ovs : ,A=()바이트 수에서 생략 했습니다 ...
Chas Brown

나는 얻다 174 바이트A=()
OVS

아! 사과, 나는 오해했다. 이것은 이전 버전과 다릅니다 while M: A+= (some expression). 형식은 다음과 같습니다 ..
Chas Brown


4

자바 스크립트 (ES6), 168 바이트

보고:

  • -1 플랫 용
  • 0 혼합
  • 1 볼록한
  • 2 오목한
f=(a,k=w=~-a.length/2,p,P,i,m,M,y=w)=>k<0?i%4%3-!i:a.map(r=>r.map(v=>Y|(X=k*k-x*x--)<0&&X|Y<0||(m=v>m?m:v,M=v<M?M:v),x=w,Y=k*k-y*y--))|f(a,k-1,m,M,i|M-m<<2|2*(M<p)|m>P)

온라인으로 사용해보십시오!

어떻게?

각 링에서 최소 및 최대

각 링 의 최소 m 과 최대 M 을 계산합니다 .

각 축에서 행렬의 중심에서 제곱 거리를 계산하여 주어진 고리에 셀이 있는지 여부를 테스트합니다. 절대 값을 얻는 것도 효과가 있지만, 제곱은 짧습니다.

다음 공식이 거짓 이면 (x, y) 의 셀 은 n 번째 고리 (0 색인, 가장 바깥 쪽에서 시작)에 있습니다 .

((Y != 0) or (X < 0)) and ((X != 0) or (Y < 0))

어디:

  • X = k²-(x-w) ²
  • Y = k²-(y-w) ²
  • w = (길이-1) / 2
  • k = w-n

예 : 6x6 행렬의 두 번째 고리에있는 셀 (1, 2) 입니까?

  | 0 1 2 3 4 5   w = (6 - 1) / 2 = 2.5
--+------------   (x, y) --> ( x-w,  y-w) --> ((x-w)²,(y-w)²)
0 | 0 0 0 0 0 0   (1, 2) --> (-1.5, -0.5) --> (  2.25,   0.5)
1 | 0 1 1 1 1 0   
2 | 0[1]0 0 1 0   k = w - 1 = 1.5
3 | 0 1 0 0 1 0   k² = 2.25
4 | 0 1 1 1 1 0   X = 2.25 - 2.25 = 0 / Y = 2.25 - 0.5 = 1.75
5 | 0 0 0 0 0 0   ((X != 0) or (Y < 0)) is false, so (1,2) is on the ring

플래그

각 반복이 끝나면 mM 을 이전 링 의 최소 p 와 최대 P 와 비교 하고 그에 따라 플래그 변수 i를 업데이트합니다 .

  • i |= 1만약 m> P
  • i |= 2만약 M <p 라면
  • M! = m 인 경우 더 높은 비트의 i를 설정합니다

프로세스가 끝나면 i 의 최종 값을 다음과 같이 변환합니다 .

i % 4  // isolate the 2 least significant bits (for convex and concave)
% 3    // convert 3 to 0 (for mixed)
- !i   // subtract 1 if i = 0 (for flat)

4

K (ngn / k) , 100 71 69 바이트

{$[1=#?,/a:(,/x)@.=i&|i:&/!2##x;;(&/m>1_M,0)-&/(m:&/'a)>-1_0,M:|/'a]}

온라인으로 사용해보십시오!

1= concave, ::= flat, -1= convex, 0= mixed를 반환

(:: k의 결 측값에 대한 자리 표시 자로 사용됨)


oK를 사용하는 다른 전략 :&/1_`{&/+(y>|/x;y<&/x;,/x=/:y)}':(,/*:'(|+:)\)'-1_(-1_1_+-1_1_)\
zgrep

@zgrep 좋은! :) 별도의 답변으로 게시하고 원하는 경우 내 아이디어를 얻으십시오. 예를 들어 링으로 분할하는 것이 더 짧은 것 같지만 아직 확인하지 않았습니다.
ngn


오, 그건 아주 깔끔한 링 스플릿입니다! 나는 그것을 좋아한다.
zgrep


1

C ++ 17 (gcc) , 411 바이트

#import<map>
#define R return
#define T(f,s)X p,c;for(auto&e:r){c=e.second;if(p.a&&!p.f(c)){s;}p=c;}R
using I=int;struct X{I a=0;I z=0;I f(I n){R!a||n<a?a=n:0,n>z?z=n:0;}I
l(X x){R z<x.a;}I g(X x){R a>x.z;}I e(X x){R a==z&a==x.a&z==x.z;}};I
N(I i,I j,I s){i*=s-i;j*=s-j;R i<j?i:j;}auto C=[](auto&&m){I
s=size(m),i=-1,j;std::map<I,X>r;for(;++i<s;)for(j=-1;++j<s;)r[N(i,j,s-1)].f(m[i][j]);T(g,T(l,T(e,R 0)3)2)1;};

새로운 최고 점수! (적어도 게시 시점에) 오, 글쎄요, 조금 괜찮지 만 여전히 C ++입니다.

온라인으로 사용해보십시오!

람다 Cstd::vector<std::vector<int>> 오목한 경우 1, 볼록한 경우 2, 평면 인 경우 3, 혼합 된 경우 0을 반환합니다.

설명 식별자, 주석, R-> returnI-> int등으로 작성된 더 읽기 쉬운 코드 버전 :

#include <map>

// Abbreviation for golfing. Spelled out below.
#define R return

// Macro to test whether all pairs of consecutive Ranges in `rings`
// satisfy a condition.
// func: a member function of Range taking a second Range.
// stmts: a sequence of statements to execute if the condition is
//        not satisfied. The statements should always return.
//        May be missing the final semicolon.
// Expands to a statement, then the return keyword.
// The value after the macro will be returned if all pairs of Ranges
// satisfy the test.
#define TEST(func, stmts)                                     \
    Range prev, curr;                                         \
    for (auto& elem : rings) {                                \
        curr = elem.second;                                   \
        // The first time through, prev.a==0; skip the test.  \
        if (prev.a && !prev.func(curr))                       \
        { stmts; }                                            \
        prev = curr;                                          \
    }                                                         \
    return

// Abbreviation for golfing. Spelled out below.
using I = int;

// A range of positive integers.
// A default-constructed Range is "invalid" and has a==0 && z==0.
struct Range
{
    int a = 0;
    int z = 0;
    // Add a number to the range, initializing or expanding.
    // The return value is meaningless (but I is shorter than void for golfing).
    int add(int n) {
        return !a||n<a ? a=n : 0, n>z ? z=n : 0;
        /* That is:
        // If invalid or n less than previous min, set a.
        if (a==0 || n<a)
            a = n;
        // If invalid (z==0) or n greater than previous max, set z.
        if (n>z)
            z = n;
        return dummy_value;
        */
    }

    // Test if all numbers in this Range are strictly less than
    // all numbers in Range x.
    int less(Range x)
    { return z < x.a; }

    // Test if all numbers in this Range are strictly greater than
    // all numbers in Range x.
    int greater(Range x)
    { return a > x.z; }

    // Test if both this Range and x represent the same single number.
    int equal(Range x)
    { return a==z && a==x.a && z==x.z; }
};

// Given indices into a square matrix, returns a value which is
// constant on each ring and increases from the first ring toward the
// center.
// i, j: matrix indices
// max: maximum matrix index, so that 0<=i && i<=max && 0<=j && j<=max
int RingIndex(int i, int j, int max)
{
    // i*(max-i) is zero at the edges and increases toward max/2.0.
    i *= max - i;
    j *= max - j;
    // The minimum of these values determines the ring.
    return i < j ? i : j;
}

// Takes a container of containers of elements convertible to int.
// Must represent a square matrix with positive integer values.
// Argument-dependent lookup on the outer container must include
// namespace std, and both container types must have operator[] to
// get an element.  (So std::vector or std::array would work.)
// Returns:
//   1 for a concave matrix
//   2 for a convex matrix
//   3 for a flat matrix
//   0 for a mixed matrix
auto C /*Classify*/ = [](auto&& mat)
{
    int mat_size=size(mat), i=-1, j;
    std::map<int, Range> rings;

    // Populate rings with the range of values in each ring.
    for (; ++i<mat_size;)
        for (j=-1; ++j<mat_size;)
            rings[RingIndex(i, j, mat_size-1)].add(mat[i][j]);

    // Nested macros expand to
    // Range prev, curr; for ... if (...) {
    //   Range prev, curr; for ... if (...) {
    //     Range prev, curr; for ... if (...) {
    //       return 0;
    //     } return 3;
    //   } return 2;
    // } return 1
    // Note each scope declares its own prev and curr which hide
    // outer declarations.
    TEST(greater, TEST(less, TEST(equal, return 0) 3) 2) 1;
};

1
'nifty'는 당신이 생각하는 바를 의미한다고 생각하지 않습니다
ASCII-only
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.