結果

問題 No.1587 012 Matrix
ユーザー momoyuumomoyuu
提出日時 2024-08-08 15:25:54
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 13 ms / 1,000 ms
コード長 774 bytes
コンパイル時間 1,046 ms
コンパイル使用メモリ 99,532 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-08 15:25:56
合計ジャッジ時間 2,707 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 4 ms
6,940 KB
testcase_14 AC 6 ms
6,940 KB
testcase_15 AC 8 ms
6,940 KB
testcase_16 AC 9 ms
6,940 KB
testcase_17 AC 11 ms
6,940 KB
testcase_18 AC 12 ms
6,944 KB
testcase_19 AC 12 ms
6,944 KB
testcase_20 AC 12 ms
6,940 KB
testcase_21 AC 13 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int n;
    cin>>n;
    vector<vector<int>> ans(n,vector<int>(n,0));

    auto dfs = [&](auto dfs,int le,int ri) -> void {
        int len = ri - le;
        if(len==2){
            ans[le][le] = 0;
            ans[le][le+1] = 1;
            ans[le+1][le] = ans[le+1][le+1] = 2;
            return;
        }
        dfs(dfs,le+1,ri-1);
        ans[le][ri-1] = 1;
        for(int i = le;i<ri;i++) ans[ri-1][i] = 2;
        for(int i = le+1;i<ri;i++) ans[i][ri-1] = 2;
    };
    dfs(dfs,0,n);
    for(int i = 0;i<n;i++){
        for(int j = 0;j<n;j++) cout<<ans[i][j];
        cout<<endl;
    }

}   

0