DHU 二维数组 阵列

2024-08-21 03:44
文章标签 数组 二维 阵列 dhu

本文主要是介绍DHU 二维数组 阵列,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

输出范例给的不工整

思路及代码 

写的不优雅

分为三部分

枚举输出 n = 1-11

规律求出 n >= 12 的矩阵

输出需要的矩阵,把每一行存成一个字符串,方便左右对齐

#include<iostream>
#include<cmath>
#include<iomanip>
#include<string>
using namespace std;int main(){//input 多组 n int 1<= <=99int n;//solution 规律如图int sum = 0;while (cin >> n){if (sum >= 1){cout << endl;}sum++;//edge case:1-11if (1 <= n && n<= 11){switch(n){case 1:cout << 1 << endl;break;case 2:cout << 1 << endl << 2 <<endl;break;case 3:cout << 1 << endl << 2 << ' ' << 3 << endl;break;case 4:cout << 1 << ' ' << 4 << endl << 2 << ' ' << 3 << endl;break;case 5:cout << ' ' << ' ' << 5 << endl << 1 << ' ' << 4 << endl << 2 << ' ' << 3 <<endl;break;case 6:cout << 6 << ' ' << 5 << endl << 1 << ' ' << 4 << endl << 2 << ' ' << 3 << endl;break;case 7:cout << 7 << ' ' << 6 << ' ' << 5 << endl << ' ' << ' ' << 1 << ' ' << 4 << endl << ' ' << ' ' << 2 << ' ' << 3 << endl;break;case 8:cout << 7 << ' ' << 6 << ' ' << 5 << endl << 8 << ' ' << 1 << ' ' << 4 << endl << ' ' << ' ' << 2 << ' ' << 3 << endl;break;case 9:cout << 7 << ' ' << 6 << ' ' << 5 << endl << 8 << ' ' << 1 << ' ' << 4 << endl << 9 << ' ' << 2 << ' ' << 3 << endl;break;case 10:cout << ' ' << 7 << ' ' << 6 << ' ' << 5 << endl << ' ' << 8 << ' ' << 1 << ' ' << 4 << endl << ' ' << 9 << ' ' << 2 << ' ' << 3 << endl << 10 << endl;break;default:cout << ' ' << 7 << ' ' << ' ' << 6 << ' ' << 5 << endl << ' ' << 8 << ' ' << ' ' << 1 << ' ' << 4 << endl << ' ' << 9 << ' ' << ' ' << 2 << ' ' << 3 << endl << 10 << ' ' << 11 << endl;}continue;}//normal case:int flag = 1;int t = 1;int i = 4;int j = 4;string list[10][10];list[4][4] = to_string(t);while (t < n){if (flag%2 == 1){for (int k = 1; k <= flag; k++){i++;if( t+1 <= n){list[i][j] = to_string(++t);}else{break;}}for (int k = 1; k <= flag; k++){j++;if( t+1 <= n){list[i][j] = to_string(++t);}else{break;}}flag++;}else{for (int k = 1; k <= flag; k++){i--;if( t+1 <= n){list[i][j] = to_string(++t);}else{break;}}for (int k = 1; k <= flag; k++){j--;if( t+1 <= n){list[i][j] = to_string(++t);}else{break;}}flag++;}}//output anslist[]string anslist[10];for(int row = 0; row <= 9; row++){for (int col = 0; col <= 9; col++){if (list[row][col] != ""){if (stoi(list[row][col]) <= 9){anslist[row] += " " + list[row][col] + " ";}else if ((list[row][col+1] == "" && col+1 <= 9) || col == 9){anslist[row] += list[row][col];}else{anslist[row] += list[row][col] + " ";}}}}int max_len = 0;for (string ele: anslist){max_len = (int)ele.length() > max_len ? (int) ele.length() : max_len;}//偶数右对齐if((int)sqrt(n)%2 == 0){for (string ele: anslist){if(ele != ""){cout << setw(max_len) << setfill(' ') << ele << endl;}}}else{ //奇数左对齐for (string ele: anslist){if(ele != ""){cout << ele << endl;}}} } return 0;
}

参考:1️⃣ C/C++中string和int相互转换的常用方法_string转int-CSDN博客

2️⃣ 【DHUOJ】进阶59_明明在上学的时候,参加数学兴趣班。在班上,老师介绍了一种非常有趣的阵列。 该阵-CSDN博客

3️⃣ C++string与int的相互转换(使用C++11)_c++ string转int-CSDN博客

4️⃣ C++中求string类型字符串的长度的方法_string的长度c++-CSDN博客

5️⃣ https://bbs.csdn.net/topics/190135371

 收获:

1️⃣string转 int to_string(...)

int 转 string 头文件 string 函数 stoi(...)

2️⃣复习 string 类长度 name.length() long 类型

菜菜,不是教程,做题和学习记录

这篇关于DHU 二维数组 阵列的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1092027

相关文章

vue如何监听对象或者数组某个属性的变化详解

《vue如何监听对象或者数组某个属性的变化详解》这篇文章主要给大家介绍了关于vue如何监听对象或者数组某个属性的变化,在Vue.js中可以通过watch监听属性变化并动态修改其他属性的值,watch通... 目录前言用watch监听深度监听使用计算属性watch和计算属性的区别在vue 3中使用watchE

poj2576(二维背包)

题意:n个人分成两组,两组人数只差小于1 , 并且体重只差最小 对于人数要求恰好装满,对于体重要求尽量多,一开始没做出来,看了下解题,按照自己的感觉写,然后a了 状态转移方程:dp[i][j] = max(dp[i][j],dp[i-1][j-c[k]]+c[k]);其中i表示人数,j表示背包容量,k表示输入的体重的 代码如下: #include<iostream>#include<

hdu2159(二维背包)

这是我的第一道二维背包题,没想到自己一下子就A了,但是代码写的比较乱,下面的代码是我有重新修改的 状态转移:dp[i][j] = max(dp[i][j], dp[i-1][j-c[z]]+v[z]); 其中dp[i][j]表示,打了i个怪物,消耗j的耐力值,所得到的最大经验值 代码如下: #include<iostream>#include<algorithm>#include<

hdu2241(二分+合并数组)

题意:判断是否存在a+b+c = x,a,b,c分别属于集合A,B,C 如果用暴力会超时,所以这里用到了数组合并,将b,c数组合并成d,d数组存的是b,c数组元素的和,然后对d数组进行二分就可以了 代码如下(附注释): #include<iostream>#include<algorithm>#include<cstring>#include<stack>#include<que

hdu 1166 敌兵布阵(树状数组 or 线段树)

题意是求一个线段的和,在线段上可以进行加减的修改。 树状数组的模板题。 代码: #include <stdio.h>#include <string.h>const int maxn = 50000 + 1;int c[maxn];int n;int lowbit(int x){return x & -x;}void add(int x, int num){while

HDU 2159 二维完全背包

FATE 最近xhd正在玩一款叫做FATE的游戏,为了得到极品装备,xhd在不停的杀怪做任务。久而久之xhd开始对杀怪产生的厌恶感,但又不得不通过杀怪来升完这最后一级。现在的问题是,xhd升掉最后一级还需n的经验值,xhd还留有m的忍耐度,每杀一个怪xhd会得到相应的经验,并减掉相应的忍耐度。当忍耐度降到0或者0以下时,xhd就不会玩这游戏。xhd还说了他最多只杀s只怪。请问他能

C语言:柔性数组

数组定义 柔性数组 err int arr[0] = {0}; // ERROR 柔性数组 // 常见struct Test{int len;char arr[1024];} // 柔性数组struct Test{int len;char arr[0];}struct Test *t;t = malloc(sizeof(Test) + 11);strcpy(t->arr,

C 语言基础之数组

文章目录 什么是数组数组变量的声明多维数组 什么是数组 数组,顾名思义,就是一组数。 假如班上有 30 个同学,让你编程统计每个人的分数,求最高分、最低分、平均分等。如果不知道数组,你只能这样写代码: int ZhangSan_score = 95;int LiSi_score = 90;......int LiuDong_score = 100;int Zhou

计算数组的斜率,偏移,R2

模拟Excel中的R2的计算。         public bool fnCheckRear_R2(List<double[]> lRear, int iMinRear, int iMaxRear, ref double dR2)         {             bool bResult = true;             int n = 0;             dou

C# double[] 和Matlab数组MWArray[]转换

C# double[] 转换成MWArray[], 直接赋值就行             MWNumericArray[] ma = new MWNumericArray[4];             double[] dT = new double[] { 0 };             double[] dT1 = new double[] { 0,2 };