主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
我与代码的故事
2024年5月18日 23:37
旋转方阵(模拟) 题解:
P1216
回复 0
|
赞 1
|
浏览 777
#include<bits/stdc++.h> using namespace std; const int N = 110; int n, cnt = 1; int res[N][N]; int main() { cin >> n; int top = 1,bottom = n,left = 1,right = n; int cnt = 1; while(1) { for(int i = top; i <= bottom; i ++) res[i][left] = cnt ...
122793160
2024年3月19日 19:43
旋转方阵 题解:
P1216
回复 0
|
赞 0
|
浏览 765
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int a[n][n]; a[0][0]=1; int b[n][n]; fill(b[0],b[0]+n*n,0); b[0][0]=1; ...
Cookie‘s AE86
2024年3月18日 19:14
旋转方阵 题解:搜索的思想实现,注意输出格式不是\t
P1216
回复 0
|
赞 0
|
浏览 687
#include<bits/stdc++.h> using namespace std; int main(){ int dir[4][2] = {1, 0, 0, 1, -1, 0, 0, -1}; //下右上左 int n; cin >> n; int ans[n+2][n+2]; int visit[n+2][n+2]; memset(visit, 0, sizeof(visit)); for(int i = 0; i < n+2; i++){ ...
Śś
2024年3月18日 10:42
旋转方阵 题解:
P1216
回复 0
|
赞 1
|
浏览 559
//画图,按照路线编写代码 #include<iostream> using namespace std; int A[21][21]; void F(int n) { int k = n-1; int count = 0; int a=0,b=1;//标记行列 while(k>0)//↓→↑← 循环往复  ...
OIsay-good
2024年3月16日 21:24
旋转方阵 题解:
P1216
回复 0
|
赞 1
|
浏览 704
核心就是转圈圈,不能多也不能少,草稿纸上多画画 #include <stdio.h> int s[25][25]; int main(){ int n; scanf("%d",&n); int count=1; for (int i = 0; i < n/2; i++)//总循环(5->转两圈,6->转3圈) { &nb...
qq1915133275
2024年3月16日 00:09
c 解法:
P1216
回复 0
|
赞 0
|
浏览 581
#include<stdio.h> int main(){ int n; while(scanf("%d",&n)!=EOF) { int a[n][n];//将初始化数据为0 for(int i=0;i<n;i++) &nbs...
buluoxu
2024年3月12日 12:16
旋转方阵 题解:
P1216
回复 0
|
赞 0
|
浏览 589
#include<bits/stdc++.h> using namespace std; int res[25][25] = {0}; int main() { int n; cin >> n ; int x = 0,y = 0; int dx[] = {1,0,-1,0}; int dy[] = {0,1,0,-1}; for(int d = 0,k = 1;k <=n*n;k++) { res[x][y] = k; ...
光明守护神
2024年3月7日 22:24
旋转方阵 题解:就一个图,自己悟吧!
P1216
回复 0
|
赞 2
|
浏览 808
阿离
2024年3月4日 22:48
旋转方阵 题解:c语言解法
P1216
回复 0
|
赞 1
|
浏览 823
#include <bits/stdc++.h> using namespace std; int a[21][21]; int main(){ int n; int cnt=1; cin >> n; for(int i=0;i<n/2;i++){ //思路:先后让i=0、1走一遍写出对应关系 ...
relife
2023年2月21日 08:08
1216矩阵输出左对齐
P1216
回复 2
|
赞 2
|
浏览 3.9k
1216旋转矩阵根据输出格式要求矩阵元素左对齐,直接使用制表符“\t”不行。 最后用的是cout<< left<< setw(4)<<a[i][j];
1
2
3
题目
旋转方阵
题解数量
22
发布题解
热门题解
1
无题.
2
找规律啊,找规律
3
1216矩阵输出左对齐
4
旋转方阵 题解:就一个图,自己悟吧!
5
找规律的题,考试千万不要考到啊!PTA上有一道和这个差不多的
6
旋转方阵 题解:
7
螺旋打印,每个方向打印完之后重新调整阈值以适应下一次打印
8
旋转方阵 题解:Java语言版
9
旋转方阵 题解:
10
旋转方阵 题解:c语言解法