X와 N×N 행렬이 주어질 때, 원소 전체의 비트 OR이 X가 되는 연속 부분행렬의 최소 넓이를 구한다.
어려움8비트 연산투 포인터누적 합행렬아직 제출이 없습니다시간 제한5초메모리 제한512 MBConsider a positive integer X and an N by N matrix A with positive integer entries. Determine the minimum area of a continuous submatrix for which the bitwise or of all its elements equals X.
The standard input contains on the first line integers X and N, separated by a space. On the following N lines there are N positive integers separated by spaces representing a matrix line
The standard output will contain a positive integer representing the minimum area of the submatrix.