#include <bits/stdc++.h>
#include "transfer.h"
using namespace std;
using ll = long long;
using ld = long double;
#define fi first
#define se second
#define vi vector<int>
#define vll vector<long long>
#define pii pair<int, int>
#define pll pair<long long, long long>
#define pb push_back
#define mp make_pair
#define eb emplace_back
#define all(x) (x).begin(), (x).end()
#define sz(x) (int)(x).size()
mt19937 rng(chrono::high_resolution_clock::now().time_since_epoch().count());
mt19937_64 rng64(chrono::high_resolution_clock::now().time_since_epoch().count());
inline int rand(int l,int r){return uniform_int_distribution<int>(l, r)(rng);}
inline ll rand(ll l,ll r){return uniform_int_distribution<ll>(l, r)(rng64);}
#ifdef DEBUG
auto&operator<<(auto&o,pair<auto,auto>p){return o<<"("<<p.first<<", "<<p.second<<")";}
auto operator<<(auto&o,auto x)->decltype(x.end(),o){o<<"{";int i=0;for(auto e:x)o<<","+!i++<<e;return o<<"}";}
#define debug(X...)cerr<<"["#X"]: ",[](auto...$){((cerr<<$<<"; "),...)<<endl;}(X)
#else
#define debug(...){}
#endif
struct custom_hash {
static uint64_t splitmix64(uint64_t x) {
x += 0x9e3779b97f4a7c15;
x = (x ^ (x >> 30)) * 0xbf58476d1ce4e5b9;
x = (x ^ (x >> 27)) * 0x94d049bb133111eb;
return x ^ (x >> 31);
}
size_t operator()(uint64_t x) const {
static const uint64_t FIXED_RANDOM = chrono::steady_clock::now().time_since_epoch().count();
return splitmix64(x + FIXED_RANDOM);
}
};
vi get_attachment(vi source){
int k = 0;
for(int i = 0; i < sz(source); i++){
if(source[i]){
k ^= (i + 1);
}
}
for(int i = 10; i >= 0; i--){
if(sz(source) == 63 && (1 << i) >= (1 << 6)){
continue;
}
if(sz(source) > 63 && (1 << i) >= (1 << 8)){
continue;
}
if((1 << i) & k){
source.pb(1);
}else{
source.pb(0);
}
}
source.pb(((__builtin_popcount(k) & 1) ? 1 : 0));
return source;
}
vi retrieve(vi data){
int l = data.back();
data.pop_back();
int k = 0;
if(sz(data) <= 80){
for(int i = 0; i < 6; i++){
k *= 2;
k += data.back();
data.pop_back();
}
}else{
for(int i = 0; i < 8; i++){
k *= 2;
k += data.back();
data.pop_back();
}
}
if(((__builtin_popcount(k) & 1) ? 1 : 0) != l){
return data;
}
int nk = 0;
for(int i = 0; i < sz(data); i++){
if(data[i]){
nk ^= (i + 1);
}
}
if(nk == k){
return data;
}
data[(nk ^ k) - 1] ^= 1;
return data;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
1032 KB |
WA in grader: wrong source retrieval |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
8 ms |
5636 KB |
WA in grader: wrong source retrieval |
2 |
Halted |
0 ms |
0 KB |
- |