結果

問題 No.2212 One XOR Matrix
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-05-05 09:28:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 996 bytes
コンパイル時間 954 ms
コンパイル使用メモリ 112,212 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-05-02 07:43:38
合計ジャッジ時間 3,185 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 27 ms
5,376 KB
testcase_09 AC 104 ms
7,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;
using ll = long long;

int main(){

    int N, M;
    cin >> N;
    M = 1<<N;

    if (N == 1){
        cout << -1 << endl;
        return 0;
    }

    vector<vector<int>> a(M, vector<int>(M));

    for (int i=0; i<M; i++){
        for (int j=0; j<M/2; j++) a[i][j] += 1;
    }
    for (int i=0; i<M/2; i++){
        a[i][i] -= 1;
        a[i+M/2][i+M/2] += 1;
    }

    for (int i=0; i<M/2; i++){
        for (int j=0; j<M/2; j++){
            a[i][j+M/2] += (i*M/2+j)*2;
            a[i+M/2][j] += (i*M/2+j)*2;
            a[i][j] += M*M/2 + (i*M/2+j)*2;
            a[i+M/2][j+M/2] += M*M/2 + (i*M/2+j)*2;
        }
    }

    for (int i=0; i<M; i++){
        for (int j=0; j<M; j++) cout << a[i][j] << " ";
        cout << endl;
    }

    return 0;
}
0