Submission #1010416

#TimeUsernameProblemLanguageResultExecution timeMemory
1010416sleepntsheepMagic Show (APIO24_show)C++17
0 / 100
1095 ms1068 KiB
#include <vector> #include "Alice.h" #include <cstdlib> namespace { using u64 = unsigned long long; u64 coeff[5001]; void init() { srand(8686); for (int i = 0; i < 5001; ++i) coeff[i] = (u64)rand() * (u64)rand() * (u64)rand(); } }; std::vector<std::pair<int,int>> Alice(){ init(); long long x = setN(5000); int i, ans; std::vector<std::pair<int, int > > T = { {1, 2} }; for (i = 3; i <= 5000; ++i) { ans = 0; for (u64 j = 0; j < 60; ++j) ans ^= ((coeff[i] >> j) & 1) * ((x >> j) & 1); T.emplace_back(i, 1 + ans); } return T; }
#include <vector> #include <cstdlib> #include <algorithm> #include "Bob.h" #include <cstring> namespace { using u64 = unsigned long long; u64 coeff[5001]; void init() { srand(8686); for (int i = 0; i < 5001; ++i) coeff[i] = (u64)rand() * (u64)rand() * (u64)rand(); } }; long long Bob(std::vector<std::pair<int,int>> T) { long long x; int pivot[60] = { 0 }; int ans[5001] = { 0 }; int used[5001] = { 0 }; memset(ans, -1, sizeof ans); for (auto [u, v] : T) { if (u > v) std::swap(u, v); if (v <= 2) continue; ans[v] = u - 1; } init(); for (int j = 59; j >= 0; --j) { int piv = -1; for (int i = 1; piv == -1; ++i) { if (ans[i] == -1) continue; if (!used[i] && ((coeff[i] >> j) & 1)) { used[i] = 1; piv = -1; } } for (int i = 1; i <= 5000; ++i) { if (ans[i] == -1 || i == piv || 0 == ((coeff[i] >> j) & 1)) continue; ans[i] ^= ans[piv]; for (long long k = 59; k >= 0; --k) coeff[i] ^= (((coeff[piv] >> k) & 1) << k); } pivot[j] = piv; } x = 0; for (long long j = 0; j < 60; ++j) if (ans[pivot[j]]) x ^= 1ll << j; return x; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...