Estrella_pi
Estrella_pi
全部文章
分类
题解(4)
归档
标签
去牛客网
登录
/
注册
Estrella_pi的博客
全部文章
(共1篇)
题解 | #蛇形矩阵#
#include <iostream> using namespace std; const int N = 1e3 + 10; int arr[N][N]; // 方向向量 - 右、左下、下、右上 int dx[] = {0, 1, 1, -1}; int dy[] = {1...
C++
数组
模拟
2025-04-18
1
8