【1105】Spiral Matrix (25分)【螺旋矩阵】

简介: 【1105】Spiral Matrix (25分)【螺旋矩阵】【1105】Spiral Matrix (25分)【螺旋矩阵】
#include<iostream>
#include<stdio.h>
#include<stdlib.h>
#include<math.h>
#include<string.h>
#include<algorithm>  
#include<map>
#include<vector>
#include<queue> 
#include<functional>
using namespace std;
//外层for遍历每一包裹的层,内4个for分别为右下左上
int cmp(int a,int b){return a>b;}
int main(){
  int N,m,n,t=0;
  scanf("%d",&N);
  for(n=sqrt((double)N);n>=1;n--){
    if(N%n==0){
      m=N/n;//m行n列
      break;
    }
  }
  vector<int>a(N);//共N个数
  for(int i=0;i<N;i++)
    scanf("%d",&a[i]);
  sort(a.begin(),a.end(),cmp);
  vector<vector<int>>b(m,vector<int>(n));
  int level=m/2+m%2;
  for(int i=0;i<level;i++){
    for(int j=i;j<=n-1-i&&t<=N-1;j++)
      b[i][j]=a[t++];
    for(int j=i+1;j<=m-2-i&&t<=N-1;j++)
      b[j][n-1-i]=a[t++];
    for(int j=n-i-1;j>=i&&t<=N-1;j--)
      b[m-1-i][j]=a[t++];
    for(int j=m-2-i;j>=i+1&&t<=N-1;j--)
      b[j][i]=a[t++];
  }
  for(int i=0;i<m;i++){
    for(int j=0;j<n;j++){
      printf("%d",b[i][j]);
      if(j!= n-1) printf(" ");
    }
    printf("\n");
  }
  system("pause");
  return 0;
}
相关文章
|
7月前
矩阵 螺旋矩阵
矩阵 螺旋矩阵
51 2
|
7月前
螺旋矩阵~
螺旋矩阵~
codeforces 289 B. Polo the Penguin and Matrix
题目意思是在n*m的矩阵中,你可以对矩阵中的每个数加或者减d,求最少的操作次数,使得矩阵中所有的元素相同。 虽然在condeforces中被分到了dp一类,但完全可以通过排序,暴力的方法解决。
44 0
|
人工智能
POJ 2299 Ultra-QuickSort(树状数组+离散化+求逆序数)
POJ 2299 Ultra-QuickSort(树状数组+离散化+求逆序数)
|
索引
LeetCode 54. Spiral Matrix
给定m×n个元素的矩阵(m行,n列),以螺旋顺序[顺时针]返回矩阵的所有元素
88 0
LeetCode 54. Spiral Matrix
|
Java
「日更刷题」59.螺旋矩阵
「日更刷题」59.螺旋矩阵
76 0
LeetCode 59. Spiral Matrix II
给定正整数n,以螺旋顺序生成填充有从1到n2的元素的方阵。
96 0
|
索引 Python Java
Leetcode 542:01 矩阵 01 Matrix
题目: 给定一个由 0 和 1 组成的矩阵,找出每个元素到最近的 0 的距离。 两个相邻元素间的距离为 1 。 Given a matrix consists of 0 and 1, find the distance of the nearest 0 for each cell.
790 0
|
Java 索引 Python
Leetcode 54:Spiral Matrix 螺旋矩阵
54:Spiral Matrix 螺旋矩阵 Given a matrix of m x n elements (m rows, n columns), return all elements of the matrix in spiral order. 给定一个包含 m x n 个元素的矩阵(m 行, n 列),请按照顺时针螺旋顺序,返回矩阵中的所有元素。
831 0