题解 | #蛇形矩阵#

蛇形矩阵

https://www.nowcoder.com/practice/649b210ef44446e3b1cd1be6fa4cab5e

#include <iostream>
#include <vector>
using namespace std;

int main() {
    int count = 0;
    int num = 1;
    int x;
    while (cin >> count) { // 注意 while 处理多个 case
    vector<vector<int>> store(count);
        for(int i = 0;i<count;i++){{
            int tem = i;
            for(int j = 0;j<count&&tem>=0;j++){
                    store[tem].push_back(num);
                    num++;
                    tem--;
                }
            }
        }
        for(int i = 0;i<store.size();i++){
            for(int j = 0;j<store[i].size();j++){
                if(j == store[i].size()-1){
                    cout<<store[i][j]<<endl;
                }else{
                    cout<<store[i][j]<<' ';
                }
            }
        }
    }
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

美团 后端开发 总包n(15%是股票)
点赞 评论 收藏
分享
安静的垂耳兔在泡澡:ks已经第八次投递了,它起码挂了还让你再投,不错了
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务