This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
//bs:flags:grader.cpp
#include "Anna.h"
#include "Bruno.h"
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
using namespace std;
namespace x = __gnu_pbds;
template <typename T>
using ordered_set = x::tree<T, x::null_type, less<T>, x::rb_tree_tag, x::tree_order_statistics_node_update>;
template <typename T>
using normal_queue = priority_queue<T, vector<T>, greater<>>;
#define all(x) begin(x), end(x)
#define sz(x) ((int) (x).size())
#define x first
#define y second
using ll = long long;
using ld = long double;
const ll MAGIC = 960389134456460687;
int Declare() {
return 550;
}
pair<vector<int>, vector<int>> Anna(ll n) {
n ^= MAGIC;
vector<int> x;
for (int i = 0; i < Declare() / 2; ++i) {
x.push_back(1);
x.push_back(0);
}
vector<int> y;
for (int i = 0; i < 60; ++i) {
y.push_back(1);
y.push_back(1);
y.push_back(1);
if (n >> i & 1) {
y.push_back(1);
y.push_back(1);
y.push_back(0);
y.push_back(0);
}
y.push_back(0);
y.push_back(0);
y.push_back(0);
}
while (sz(y) < Declare()) {
y.push_back(1);
y.push_back(0);
}
return {x, y};
}
ll Bruno(vector<int> a) {
int balance = 0, mx = 0;
ll ans = 0;
int i = 0;
for (int u : a) {
balance += (u == 0 ? -1 : 1);
if (balance < 2) {
if (mx >= 5) {
ans |= 1ll << i;
++i;
} else if (mx >= 3) {
++i;
}
mx = 0;
} else {
mx = max(mx, balance);
}
}
ans ^= MAGIC;
return ans;
}
//bs:flags:grader.cpp
#include "Anna.h"
#include "Bruno.h"
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
using namespace std;
namespace x = __gnu_pbds;
template <typename T>
using ordered_set = x::tree<T, x::null_type, less<T>, x::rb_tree_tag, x::tree_order_statistics_node_update>;
template <typename T>
using normal_queue = priority_queue<T, vector<T>, greater<>>;
#define all(x) begin(x), end(x)
#define sz(x) ((int) (x).size())
#define x first
#define y second
using ll = long long;
using ld = long double;
const ll MAGIC = 960389134456460687;
int Declare() {
return 550;
}
pair<vector<int>, vector<int>> Anna(ll n) {
n ^= MAGIC;
vector<int> x;
for (int i = 0; i < Declare() / 2; ++i) {
x.push_back(1);
x.push_back(0);
}
vector<int> y;
for (int i = 0; i < 60; ++i) {
y.push_back(1);
y.push_back(1);
y.push_back(1);
if (n >> i & 1) {
y.push_back(1);
y.push_back(1);
y.push_back(0);
y.push_back(0);
}
y.push_back(0);
y.push_back(0);
y.push_back(0);
}
while (sz(y) < Declare()) {
y.push_back(1);
y.push_back(0);
}
return {x, y};
}
ll Bruno(vector<int> a) {
int balance = 0, mx = 0;
ll ans = 0;
int i = 0;
for (int u : a) {
balance += (u == 0 ? -1 : 1);
if (balance < 2) {
if (mx >= 5) {
ans |= 1ll << i;
++i;
} else if (mx >= 3) {
++i;
}
mx = 0;
} else {
mx = max(mx, balance);
}
}
ans ^= MAGIC;
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |