結果
問題 | No.1901 bitwise xor convolution (characteristic 2) |
ユーザー | 👑 hos.lyric |
提出日時 | 2022-04-12 21:28:45 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,635 bytes |
コンパイル時間 | 1,352 ms |
コンパイル使用メモリ | 113,428 KB |
実行使用メモリ | 120,372 KB |
最終ジャッジ日時 | 2024-06-01 04:27:38 |
合計ジャッジ時間 | 8,097 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 3 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,948 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
#include <cassert> #include <cmath> #include <cstdint> #include <cstdio> #include <cstdlib> #include <cstring> #include <algorithm> #include <bitset> #include <complex> #include <deque> #include <functional> #include <iostream> #include <map> #include <numeric> #include <queue> #include <set> #include <sstream> #include <string> #include <unordered_map> #include <unordered_set> #include <utility> #include <vector> using namespace std; using Int = long long; template <class T1, class T2> ostream &operator<<(ostream &os, const pair<T1, T2> &a) { return os << "(" << a.first << ", " << a.second << ")"; }; template <class T> void pv(T a, T b) { for (T i = a; i != b; ++i) cerr << *i << " "; cerr << endl; } template <class T> bool chmin(T &t, const T &f) { if (t > f) { t = f; return true; } return false; } template <class T> bool chmax(T &t, const T &f) { if (t < f) { t = f; return true; } return false; } #pragma GCC target("pclmul", "sse2", "sse4.1") #include <emmintrin.h> #include <smmintrin.h> #include <wmmintrin.h> __int64_t clmul(__int64_t x, __int64_t y) { __m128i x_ = _mm_set_epi64x(0, x); __m128i y_ = _mm_set_epi64x(0, y); __m128i z_ = _mm_clmulepi64_si128(x_, y_, 0); return _mm_extract_epi64(z_, 0); } using UInt = unsigned long long; UInt readPoly() { UInt ret = 0; for (int e = 0; e < 32; ++e) { int x; scanf("%d", &x); ret |= ((UInt)x) << e; } return ret; } vector<UInt> mul(int n, vector<UInt> as, vector<UInt> bs) { vector<UInt> cs(1 << n, 0); if (n == 0) { cs[0] = clmul(as[0], bs[0]); } else { --n; vector<UInt> as0(as.begin(), as.begin() + (1 << n)); vector<UInt> bs0(bs.begin(), bs.begin() + (1 << n)); vector<UInt> as1(as.begin() + (1 << n), as.end()); vector<UInt> bs1(bs.begin() + (1 << n), bs.end()); const auto cs0 = mul(n, as0, bs0); const auto cs1 = mul(n, as1, bs1); for (int h = 0; h < 1 << n; ++h) as0[h] ^= as1[h]; for (int h = 0; h < 1 << n; ++h) bs0[h] ^= bs1[h]; const auto cs2 = mul(n, as0, bs0); for (int h = 0; h < 1 << n; ++h) cs[h] = cs0[h] ^ cs1[h]; for (int h = 0; h < 1 << n; ++h) cs[1 << n | h] = cs[h] ^ cs2[h]; } return cs; } int main() { int N; vector<UInt> A, B; for (; ~scanf("%d", &N); ) { A.resize(1 << N); for (int h = 0; h < 1 << N; ++h) A[h] = readPoly(); B.resize(1 << N); for (int h = 0; h < 1 << N; ++h) B[h] = readPoly(); const auto C = mul(N, A, B); for (int h = 0; h < 1 << N; ++h) { for (int e = 0; e < 63; ++e) { if (e) putchar(' '); putchar('0' + (C[h] >> e & 1)); } puts(""); } } return 0; }