ccf-201412-2 Z字形扫描

news/2024/11/24 9:53:25/
问题描述
在图像编码的算法中,需要将一个给定的方形矩阵进行Z字形扫描(Zigzag Scan)。给定一个n×n的矩阵,Z字形扫描的过程如下图所示:

  对于下面的4×4的矩阵,
  1 5 3 9
  3 7 5 6
  9 4 6 4
  7 3 1 3
  对其进行Z字形扫描后得到长度为16的序列:
  1 5 3 9 7 3 9 5 4 7 3 6 6 4 1 3
  请实现一个Z字形扫描的程序,给定一个n×n的矩阵,输出对这个矩阵进行Z字形扫描的结果。
输入格式
输入的第一行包含一个整数n,表示矩阵的大小。
  输入的第二行到第n+1行每行包含n个正整数,由空格分隔,表示给定的矩阵。
输出格式
输出一行,包含n×n个整数,由空格分隔,表示输入的矩阵经过Z字形扫描后的结果。
样例输入
4
1 5 3 9
3 7 5 6
9 4 6 4
7 3 1 3
样例输出
1 5 3 9 7 3 9 5 4 7 3 6 6 4 1 3
评测用例规模与约定
1≤n≤500,矩阵元素为不超过1000的正整数。

代码:
#include<iostream>
#include<stdio.h>using namespace std;int main()
{int numcin[501][501];int count;int temp;int x=1;int y=1;bool flag=false;scanf("%d",&count);for(int i=1;i<=count;i++){for(int j=1;j<=count;j++){scanf("%d",&numcin[i][j]);  }}for(int i=1;i<=count;i++){temp=i;do{printf("%d ",numcin[x][y]);if(flag)     {++x;      //左下移动y=i+1-x;}else {            //右上移动--x;y=i+1-x;}}while(--temp);if(y==0){y=1; 	//到了上边界	 	}if(x==0){x=1;	//到了下边界	 	}if(flag){flag=false;}else{flag=true;}}if(y==1){y=2;--x;}else{x=2;--y;}for(int i=count-1;i>=1;i--){temp=i;do{printf("%d ",numcin[x][y]);if(flag){++x;y=2*count+1-i-x;}else{--x;y=2*count+1-i-x;}}while(--temp);if(x>count){--x;y=y+2;	 	}if(y>count){x=x+2;--y;		 	}if(flag){flag=false;}else{flag=true;}}return 0;
}

好棒的答案(关键在于找规律,左下如果越界一定往下移动,右上如果越界一定往右移动)
#include <iostream>  using namespace std;  int n;  
int a[505][505];  bool isBad(int h,int l) {   //位置越界判断   return (h<0 || l<0 || h>=n ||l>=n);  
}  bool PutMove(int prvs, int h, int l) {  //prvs代表经过什么移动到达第h行、第l列的位置   if (prvs == -1){    //除第一个数以外,其他数加空格输出   cout << a[h][l];  if (!isBad(h,l+1))      //其右没越界   PutMove(1,h,l+1);   //向右移动  }         else  cout << " " << a[h][l];  if (h == n-1 && l == n-1)   //递归结束   return true;  switch(prvs) {  case 0:     //↓  if (!isBad(h-1,l+1))    //其右上没越界  PutMove(3,h-1,l+1); //向右上移动   else  PutMove(2,h+1,l-1); //向左下移动  break;  case 1:     //→   if (!isBad(h+1,l-1))    //其左下没越界  PutMove(2,h+1,l-1); //向左下移动           else  PutMove(3,h-1,l+1); //向右上移动   break;  case 2:     //↙   if (!isBad(h+1,l-1))    //其左下没越界  PutMove(2,h+1,l-1); //向左下移动   else if (!isBad(h+1,l)) //其下没越界   PutMove(0,h+1,l);   //向下移动   else  PutMove(1,h,l+1);   //向右移动  break;  case 3:     //↗  if (!isBad(h-1,l+1))    //其右上没越界  PutMove(3,h-1,l+1); //向右上移动   else if (!isBad(h,l+1)) //其右没越界   PutMove(1,h,l+1);   //向右移动  else  PutMove(0,h+1,l);   //向下移动   break;    }   
}  int main() {  cin >> n;  int i,j;  for (i=0;i<n;i++)  for (j=0;j<n;j++)  cin >> a[i][j];  PutMove(-1,0,0);  return 0;  
}  



http://www.ppmy.cn/news/172684.html

相关文章

按字母A-Z顺序排名全国城市、带拼音

{"ret": true,"data":{ "cities": {"A": [{"id": 56,"spell": "aba","name": "阿坝"}, {"id": 57,"spell": "akesu","name": "阿克…

OCP-1Z0-053-V12.02-501题

501.Note the output of the following query; SQL> SELECT flashback_archieve_name, status FROM dba_flashback_archieve; 此处表名有点错误&#xff0c;应该为DBA_FLASHBACK_ARCHIVE FLASHBACK_ARCHIEVE_NAME STATUS FLA1 You executed the following command to en…

CCF201412-2 Z字形扫描

问题描述 试题编号&#xff1a; 201412-2 试题名称&#xff1a; Z字形扫描 时间限制&#xff1a; 2.0s 内存限制&#xff1a; 256.0MB 问题描述&#xff1a; 问题描述 在图像编码的算法中&#xff0c;需要将一个给定的方形矩阵进行Z字形扫描(Zigzag Scan)。给定一个nn的矩阵&am…

matlab线旋转成面,用matlab怎么绘制一条曲线绕z轴旋转生成的曲面?

用matlab怎么绘制一条曲线绕z轴旋转生成的曲面? 已知数据如下: x z y -398.10815554637100 391.8559758318630 690.066133543041 -381.07955594867500 424.8310441553090 658.180381257343 -360.31045913580800 454.9810420379280 624.438172164358 -340.77979331967200 480.…

y等于根号x用c语言程序表示出来,c语言描述x和y都大于或等于z的表达式是

X-Y大于或等于50且X+Y大于或等于100X和Y都为整数求X和Y的取值范围 X-Y≥501X+Y≥10021+2有2X≥150..X≥752-1有2Y≥50Y≥25X,Y的范围是X≥75,Y≥25且都是整数 C语言题目,用中文解释一下,比如x=y=5,x++*x++和--y*--y分别等于多少? x=y=5,这句完了之后x=5,y=5x++*x++第一个x还是…

matlab z变换

1: clear all; 2: close all; 3: clc; 4: % syms n k z; 5: % f=1/n; %定义离散信号 6: % F=ztrans(f) %z变换 7: % pretty(F); 8: % fk=iztrans(F,k) 9: % pretty(fk) 10: % 11: % b=[0 0 10 0];%分子的系数数组 12: % a=[1 -5 8 -…

csp-Z字形扫描

201412-2试题名称&#xff1a;Z字形扫描时间限制&#xff1a;2.0s内存限制&#xff1a;256.0MB问题描述&#xff1a; 问题描述 在图像编码的算法中&#xff0c;需要将一个给定的方形矩阵进行Z字形扫描(Zigzag Scan)。给定一个nn的矩阵&#xff0c;Z字形扫描的过程如下图所示&am…

ccf Z字形扫描

201412-2 试题名称&#xff1a; Z字形扫描 时间限制&#xff1a; 2.0s 内存限制&#xff1a; 256.0MB 问题描述&#xff1a; 问题描述 在图像编码的算法中&#xff0c;需要将一个给定的方形矩阵进行Z字形扫描(Zigzag Scan)。给定一个nn的矩阵&#xff0c;Z字形扫描的过程如下图…