結果
問題 | No.2212 One XOR Matrix |
ユーザー | SSRS |
提出日時 | 2023-02-10 21:38:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,287 bytes |
コンパイル時間 | 1,546 ms |
コンパイル使用メモリ | 173,628 KB |
実行使用メモリ | 9,472 KB |
最終ジャッジ日時 | 2024-07-07 15:49:48 |
合計ジャッジ時間 | 3,190 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; vector<vector<int>> solve0(int N){ vector<vector<int>> ans(1 << N, vector<int>(1 << N)); for (int i = 0; i < (1 << N); i++){ for (int j = 0; j < (1 << N); j++){ ans[i][j] = (i << N) | j; } } return ans; } vector<vector<int>> solve1(int N){ if (N == 2){ return {{7, 14, 0, 8}, {4, 12, 2, 11}, {15, 9, 6, 1}, {13, 10, 5, 3}}; } else { vector<vector<int>> A = solve0(N - 1); vector<vector<int>> B = solve1(N - 1); vector<vector<int>> ans(1 << N, vector<int>(1 << N)); for (int i = 0; i < (1 << (N - 1)); i++){ for (int j = 0; j < (1 << (N - 1)); j++){ ans[i][j] = B[i][j]; ans[i][(1 << (N - 1)) + j] = A[i][j] + (1 << (N * 2 - 2)); ans[(1 << (N - 1)) + i][j] = A[i][j] + (1 << (N * 2 - 1)); ans[(1 << (N - 1)) + i][(1 << (N - 1)) + j] = B[i][j] + (1 << (N * 2 - 2)) + (1 << (N * 2 - 2)); } } return ans; } } int main(){ int N; cin >> N; if (N == 1){ cout << -1 << endl; } else { vector<vector<int>> ans = solve1(N); for (int i = 0; i < (1 << N); i++){ for (int j = 0; j < (1 << N); j++){ cout << ans[i][j]; if (j < (1 << N) - 1){ cout << ' '; } } cout << endl; } } }