QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#73919#5444. Tavern ChessnoimiAC ✓318ms3716kbC++2026.7kb2023-01-29 15:34:392023-01-29 15:34:43

Judging History

你现在查看的是最新测评结果

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-01-29 15:34:43]
  • 评测
  • 测评结果:AC
  • 用时:318ms
  • 内存:3716kb
  • [2023-01-29 15:34:39]
  • 提交

answer

// Universe Cup Day1 Shengyang L

#pragma region Macros
#ifdef noimi
#include "my_template.hpp"
#else
#pragma GCC target("avx2")
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")

#include <immintrin.h>

#include <algorithm>
#include <array>
#include <bitset>
#include <cassert>
#include <cctype>
#include <cfenv>
#include <cfloat>
#include <chrono>
#include <cinttypes>
#include <climits>
#include <cmath>
#include <complex>
#include <cstdarg>
#include <cstddef>
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <deque>
#include <fstream>
#include <functional>
#include <immintrin.h>
#include <initializer_list>
#include <iomanip>
#include <ios>
#include <iostream>
#include <istream>
#include <iterator>
#include <limits>
#include <list>
#include <map>
#include <memory>
#include <new>
#include <numeric>
#include <ostream>
#include <queue>
#include <random>
#include <set>
#include <sstream>
#include <stack>
#include <streambuf>
#include <string>
#include <tuple>
#include <type_traits>
#include <variant>

#ifdef noimi
#define oj_local(a, b) b
#else
#define oj_local(a, b) a
#endif

#define LOCAL if(oj_local(0, 1))
#define OJ if(oj_local(1, 0))

using namespace std;
using ll = long long;
using ull = unsigned long long int;
using i128 = __int128_t;
using pii = pair<int, int>;
using pll = pair<ll, ll>;
using ld = long double;
template <typename T> using vc = vector<T>;
template <typename T> using vvc = vector<vc<T>>;
template <typename T> using vvvc = vector<vvc<T>>;
using vi = vc<int>;
using vl = vc<ll>;
using vpi = vc<pii>;
using vpl = vc<pll>;
template <class T> using pq = priority_queue<T>;
template <class T> using pqg = priority_queue<T, vector<T>, greater<T>>;
template <typename T> int si(const T &x) { return x.size(); }
template <class T, class S> inline bool chmax(T &a, const S &b) { return (a < b ? a = b, 1 : 0); }
template <class T, class S> inline bool chmin(T &a, const S &b) { return (a > b ? a = b, 1 : 0); }
vi iota(int n) {
    vi a(n);
    return iota(a.begin(), a.end(), 0), a;
}
template <typename T> vi iota(const vector<T> &a, bool greater = false) {
    vi res(a.size());
    iota(res.begin(), res.end(), 0);
    sort(res.begin(), res.end(), [&](int i, int j) {
        if(greater) return a[i] > a[j];
        return a[i] < a[j];
    });
    return res;
}

// macros
#define overload5(a, b, c, d, e, name, ...) name
#define overload4(a, b, c, d, name, ...) name
#define endl '\n'
#define REP0(n) for(ll jidlsjf = 0; jidlsjf < n; ++jidlsjf)
#define REP1(i, n) for(ll i = 0; i < (n); ++i)
#define REP2(i, a, b) for(ll i = (a); i < (b); ++i)
#define REP3(i, a, b, c) for(ll i = (a); i < (b); i += (c))
#define rep(...) overload4(__VA_ARGS__, REP3, REP2, REP1, REP0)(__VA_ARGS__)
#define per0(n) for(int jidlsjf = 0; jidlsjf < (n); ++jidlsjf)
#define per1(i, n) for(ll i = (n)-1; i >= 0; --i)
#define per2(i, a, b) for(ll i = (a)-1; i >= b; --i)
#define per3(i, a, b, c) for(ll i = (a)-1; i >= (b); i -= (c))
#define per(...) overload4(__VA_ARGS__, per3, per2, per1, per0)(__VA_ARGS__)
#define fore0(a) rep(a.size())
#define fore1(i, a) for(auto &&i : a)
#define fore2(a, b, v) for(auto &&[a, b] : v)
#define fore3(a, b, c, v) for(auto &&[a, b, c] : v)
#define fore4(a, b, c, d, v) for(auto &&[a, b, c, d] : v)
#define fore(...) overload5(__VA_ARGS__, fore4, fore3, fore2, fore1, fore0)(__VA_ARGS__)
#define perm(v) for(bool flag = true; (flag ? exchange(flag, false) : next_permutation(all(v)));)
#define fi first
#define se second
#define pb push_back
#define ppb pop_back
#define ppf pop_front
#define eb emplace_back
#define drop(s) cout << #s << endl, exit(0)
#define si(c) (int)(c).size()
#define lb(c, x) distance((c).begin(), lower_bound(all(c), (x)))
#define ub(c, x) distance((c).begin(), upper_bound(all(c), (x)))
#define rng(v, l, r) v.begin() + (l), v.begin() + (r)
#define all(c) begin(c), end(c)
#define rall(c) rbegin(c), rend(c)
#define SORT(v) sort(all(v))
#define REV(v) reverse(all(v))
#define UNIQUE(x) SORT(x), x.erase(unique(all(x)), x.end())
template <typename T = ll, typename S> T SUM(const S &v) { return accumulate(all(v), T(0)); }
#define MIN(v) *min_element(all(v))
#define MAX(v) *max_element(all(v))
#define overload2(_1, _2, name, ...) name
#define vec(type, name, ...) vector<type> name(__VA_ARGS__)
#define vv(type, name, h, ...) vector<vector<type>> name(h, vector<type>(__VA_ARGS__))
#define vvv(type, name, h, w, ...) vector<vector<vector<type>>> name(h, vector<vector<type>>(w, vector<type>(__VA_ARGS__)))
#define vvvv(type, name, a, b, c, ...)                                                                                                                         \
    vector<vector<vector<vector<type>>>> name(a, vector<vector<vector<type>>>(b, vector<vector<type>>(c, vector<type>(__VA_ARGS__))))
constexpr pii dx4[4] = {pii{1, 0}, pii{0, 1}, pii{-1, 0}, pii{0, -1}};
constexpr pii dx8[8] = {{1, 0}, {1, 1}, {0, 1}, {-1, 1}, {-1, 0}, {-1, -1}, {0, -1}, {1, -1}};

namespace yesno_impl {
const string YESNO[2] = {"NO", "YES"};
const string YesNo[2] = {"No", "Yes"};
const string yesno[2] = {"no", "yes"};
const string firstsecond[2] = {"second", "first"};
const string FirstSecond[2] = {"Second", "First"};
const string possiblestr[2] = {"impossible", "possible"};
const string Possiblestr[2] = {"Impossible", "Possible"};
void YES(bool t = 1) { cout << YESNO[t] << endl; }
void NO(bool t = 1) { YES(!t); }
void Yes(bool t = 1) { cout << YesNo[t] << endl; }
void No(bool t = 1) { Yes(!t); }
void yes(bool t = 1) { cout << yesno[t] << endl; }
void no(bool t = 1) { yes(!t); }
void first(bool t = 1) { cout << firstsecond[t] << endl; }
void First(bool t = 1) { cout << FirstSecond[t] << endl; }
void possible(bool t = 1) { cout << possiblestr[t] << endl; }
void Possible(bool t = 1) { cout << Possiblestr[t] << endl; }
}; // namespace yesno_impl
using namespace yesno_impl;

#define INT(...)                                                                                                                                               \
    int __VA_ARGS__;                                                                                                                                           \
    IN(__VA_ARGS__)
#define LL(...)                                                                                                                                                \
    ll __VA_ARGS__;                                                                                                                                            \
    IN(__VA_ARGS__)
#define STR(...)                                                                                                                                               \
    string __VA_ARGS__;                                                                                                                                        \
    IN(__VA_ARGS__)
#define CHR(...)                                                                                                                                               \
    char __VA_ARGS__;                                                                                                                                          \
    IN(__VA_ARGS__)
#define DBL(...)                                                                                                                                               \
    double __VA_ARGS__;                                                                                                                                        \
    IN(__VA_ARGS__)
#define VEC(type, name, size)                                                                                                                                  \
    vector<type> name(size);                                                                                                                                   \
    IN(name)
#define VEC2(type, name1, name2, size)                                                                                                                         \
    vector<type> name1(size), name2(size);                                                                                                                     \
    for(int i = 0; i < size; i++) IN(name1[i], name2[i])
#define VEC3(type, name1, name2, name3, size)                                                                                                                  \
    vector<type> name1(size), name2(size), name3(size);                                                                                                        \
    for(int i = 0; i < size; i++) IN(name1[i], name2[i], name3[i])
#define VEC4(type, name1, name2, name3, name4, size)                                                                                                           \
    vector<type> name1(size), name2(size), name3(size), name4(size);                                                                                           \
    for(int i = 0; i < size; i++) IN(name1[i], name2[i], name3[i], name4[i]);
#define VV(type, name, h, w)                                                                                                                                   \
    vector<vector<type>> name(h, vector<type>(w));                                                                                                             \
    IN(name)
int scan() { return getchar(); }
void scan(int &a) { cin >> a; }
void scan(long long &a) { cin >> a; }
void scan(char &a) { cin >> a; }
void scan(double &a) { cin >> a; }
void scan(string &a) { cin >> a; }
template <class T, class S> void scan(pair<T, S> &p) { scan(p.first), scan(p.second); }
template <class T> void scan(vector<T> &);
template <class T> void scan(vector<T> &a) {
    for(auto &i : a) scan(i);
}
template <class T> void scan(T &a) { cin >> a; }
void IN() {}
template <class Head, class... Tail> void IN(Head &head, Tail &...tail) {
    scan(head);
    IN(tail...);
}

template <typename T, typename S> T ceil(T x, S y) {
    assert(y);
    return (y < 0 ? ceil(-x, -y) : (x > 0 ? (x + y - 1) / y : x / y));
}

template <typename T, typename S> T floor(T x, S y) {
    assert(y);
    return (y < 0 ? floor(-x, -y) : (x > 0 ? x / y : x / y - (x % y == 0 ? 0 : 1)));
}
template <typename T, typename S, typename U> U bigmul(const T &x, const S &y, const U &lim) { // clamp(x * y, -lim, lim)
    if(x < 0 and y < 0) return bigmul(-x, -y, lim);
    if(x < 0) return -bigmul(-x, y, lim);
    if(y < 0) return -bigmul(x, -y, lim);
    return y == 0 or x <= lim / y ? x * y : lim;
}
template <class T> T POW(T x, int n) {
    T res = 1;
    for(; n; n >>= 1, x *= x)
        if(n & 1) res *= x;
    return res;
}
template <class T, class S> T POW(T x, S n, const ll &mod) {
    T res = 1;
    x %= mod;
    for(; n; n >>= 1, x = x * x % mod)
        if(n & 1) res = res * x % mod;
    return res;
}
vector<pll> factor(ll x) {
    vector<pll> ans;
    for(ll i = 2; i * i <= x; i++)
        if(x % i == 0) {
            ans.push_back({i, 1});
            while((x /= i) % i == 0) ans.back().second++;
        }
    if(x != 1) ans.push_back({x, 1});
    return ans;
}
template <class T> vector<T> divisor(T x) {
    vector<T> ans;
    for(T i = 1; i * i <= x; i++)
        if(x % i == 0) {
            ans.pb(i);
            if(i * i != x) ans.pb(x / i);
        }
    return ans;
}
template <typename T> void zip(vector<T> &x) {
    vector<T> y = x;
    UNIQUE(y);
    for(int i = 0; i < x.size(); ++i) { x[i] = lb(y, x[i]); }
}
template <class S> void fold_in(vector<S> &v) {}
template <typename Head, typename... Tail, class S> void fold_in(vector<S> &v, Head &&a, Tail &&...tail) {
    for(auto e : a) v.emplace_back(e);
    fold_in(v, tail...);
}
template <class S> void renumber(vector<S> &v) {}
template <typename Head, typename... Tail, class S> void renumber(vector<S> &v, Head &&a, Tail &&...tail) {
    for(auto &&e : a) e = lb(v, e);
    renumber(v, tail...);
}
template <class S, class... Args> vector<S> zip(vector<S> &head, Args &&...args) {
    vector<S> v;
    fold_in(v, head, args...);
    sort(all(v)), v.erase(unique(all(v)), v.end());
    renumber(v, head, args...);
    return v;
}

template <typename S> void rearrange(const vector<S> &id) {}
template <typename S, typename T> void rearrange_exec(const vector<S> &id, vector<T> &v) {
    vector<T> w(v.size());
    rep(i, si(id)) w[i] = v[id[i]];
    v.swap(w);
}
// 並び替える順番, 並び替える vector 達
template <typename S, typename Head, typename... Tail> void rearrange(const vector<S> &id, Head &a, Tail &...tail) {
    rearrange_exec(id, a);
    rearrange(id, tail...);
}

template <typename T> vector<T> RUI(const vector<T> &v) {
    vector<T> res(v.size() + 1);
    for(int i = 0; i < v.size(); i++) res[i + 1] = res[i] + v[i];
    return res;
}
template <typename T> void zeta_supersetsum(vector<T> &f) {
    int n = f.size();
    for(int i = 1; i < n; i <<= 1) rep(b, n) if(!(i & b)) f[b] += f[b | i];
}

template <typename T> void zeta_subsetsum(vector<T> &f) {
    int n = f.size();
    for(int i = 1; i < n; i <<= 1) rep(b, n) if(!(i & b)) f[b | i] += f[b];
}
template <typename T> void mobius_subset(vector<T> &f) {
    int n = f.size();
    for(int i = 1; i < n; i <<= 1) rep(b, n) if(!(i & b)) f[b] -= f[b | i];
}
template <typename T> void mobius_superset(vector<T> &f) {
    int n = f.size();
    for(int i = 1; i < n; i <<= 1) rep(b, n) if(!(i & b)) f[b | i] -= f[b];
}
// 反時計周りに 90 度回転
template <typename T> void rot(vector<vector<T>> &v) {
    if(empty(v)) return;
    int n = v.size(), m = v[0].size();
    vector res(m, vector<T>(n));
    rep(i, n) rep(j, m) res[m - 1 - j][i] = v[i][j];
    v.swap(res);
}
// x in [l, r)
template <class T, class S> bool inc(const T &x, const S &l, const S &r) { return l <= x and x < r; }

// 便利関数
constexpr ll ten(int n) { return n == 0 ? 1 : ten(n - 1) * 10; }
constexpr ll tri(ll n) { return n * (n + 1) / 2; }
// l + ... + r
constexpr ll tri(ll l, ll r) { return (l + r) * (r - l + 1) / 2; }
ll max(int x, ll y) { return max((ll)x, y); }
ll max(ll x, int y) { return max(x, (ll)y); }
int min(int x, ll y) { return min((ll)x, y); }
int min(ll x, int y) { return min(x, (ll)y); }
// bit 演算系
#define bit(i) (1LL << i)       // (1 << i)
#define test(b, i) (b >> i & 1) // b の i bit 目が立っているか
ll pow2(int i) { return 1LL << i; }
int topbit(signed t) { return t == 0 ? -1 : 31 - __builtin_clz(t); }
int topbit(ll t) { return t == 0 ? -1 : 63 - __builtin_clzll(t); }
int lowbit(signed a) { return a == 0 ? 32 : __builtin_ctz(a); }
int lowbit(ll a) { return a == 0 ? 64 : __builtin_ctzll(a); }
// int allbit(int n) { return (1 << n) - 1; }
constexpr ll mask(int n) { return (1LL << n) - 1; }
// int popcount(signed t) { return __builtin_popcount(t); }
// int popcount(ll t) { return __builtin_popcountll(t); }
int popcount(uint64_t t) { return __builtin_popcountll(t); }
static inline uint64_t popcount64(uint64_t x) {
    uint64_t m1 = 0x5555555555555555ll;
    uint64_t m2 = 0x3333333333333333ll;
    uint64_t m4 = 0x0F0F0F0F0F0F0F0Fll;
    uint64_t h01 = 0x0101010101010101ll;

    x -= (x >> 1) & m1;
    x = (x & m2) + ((x >> 2) & m2);
    x = (x + (x >> 4)) & m4;

    return (x * h01) >> 56;
}
bool ispow2(int i) { return i && (i & -i) == i; }

ll rnd(ll l, ll r) { //[l, r)
#ifdef noimi
    static mt19937_64 gen;
#else
    static mt19937_64 gen(chrono::steady_clock::now().time_since_epoch().count());
#endif
    return uniform_int_distribution<ll>(l, r - 1)(gen);
}
ll rnd(ll n) { return rnd(0, n); }

template <class t> void random_shuffle(vc<t> &a) { rep(i, si(a)) swap(a[i], a[rnd(0, i + 1)]); }

int in() {
    int x;
    cin >> x;
    return x;
}
ll lin() {
    unsigned long long x;
    cin >> x;
    return x;
}

template <class T, class S> pair<T, S> operator-(const pair<T, S> &x) { return pair<T, S>(-x.first, -x.second); }
template <class T, class S> pair<T, S> operator-(const pair<T, S> &x, const pair<T, S> &y) { return pair<T, S>(x.fi - y.fi, x.se - y.se); }
template <class T, class S> pair<T, S> operator+(const pair<T, S> &x, const pair<T, S> &y) { return pair<T, S>(x.fi + y.fi, x.se + y.se); }
template <class T> pair<T, T> operator&(const pair<T, T> &l, const pair<T, T> &r) { return pair<T, T>(max(l.fi, r.fi), min(l.se, r.se)); }
template <class T, class S> pair<T, S> operator+=(pair<T, S> &l, const pair<T, S> &r) { return l = l + r; }
template <class T, class S> pair<T, S> operator-=(pair<T, S> &l, const pair<T, S> &r) { return l = l - r; }
template <class T> bool intersect(const pair<T, T> &l, const pair<T, T> &r) { return (l.se < r.se ? r.fi < l.se : l.fi < r.se); }

template <class T> vector<T> &operator++(vector<T> &v) {
    fore(e, v) e++;
    return v;
}
template <class T> vector<T> operator++(vector<T> &v, int) {
    auto res = v;
    fore(e, v) e++;
    return res;
}
template <class T> vector<T> &operator--(vector<T> &v) {
    fore(e, v) e--;
    return v;
}
template <class T> vector<T> operator--(vector<T> &v, int) {
    auto res = v;
    fore(e, v) e--;
    return res;
}
template <class T> vector<T> &operator+=(vector<T> &l, const vector<T> &r) {
    fore(e, r) l.eb(e);
    return l;
}

template <typename T> struct edge {
    int from, to;
    T cost;
    int id;
    edge(int to, T cost) : from(-1), to(to), cost(cost) {}
    edge(int from, int to, T cost) : from(from), to(to), cost(cost) {}
    edge(int from, int to, T cost, int id) : from(from), to(to), cost(cost), id(id) {}
    constexpr bool operator<(const edge<T> &rhs) const noexcept { return cost < rhs.cost; }
    edge &operator=(const int &x) {
        to = x;
        return *this;
    }
    operator int() const { return to; }
    friend ostream operator<<(ostream &os, const edge &e) { return os << e.to; }
};
template <typename T> using Edges = vector<edge<T>>;

template <typename T = int> Edges<T> read_edges(int m, bool weighted = false) {
    Edges<T> res;
    res.reserve(m);
    for(int i = 0; i < m; i++) {
        int u, v, c = 0;
        scan(u), scan(v), u--, v--;
        if(weighted) scan(c);
        res.eb(u, v, c, i);
    }
    return res;
}

using Tree = vector<vector<int>>;
using Graph = vector<vector<int>>;
template <class T> using Wgraph = vector<vector<edge<T>>>;
Graph getG(int n, int m = -1, bool directed = false, int margin = 1) {
    Tree res(n);
    if(m == -1) m = n - 1;
    while(m--) {
        int a, b;
        cin >> a >> b;
        a -= margin, b -= margin;
        res[a].emplace_back(b);
        if(!directed) res[b].emplace_back(a);
    }
    return res;
}
Graph getTreeFromPar(int n, int margin = 1) {
    Graph res(n);
    for(int i = 1; i < n; i++) {
        int a;
        cin >> a;
        res[a - margin].emplace_back(i);
    }
    return res;
}
template <class T> Wgraph<T> getWg(int n, int m = -1, bool directed = false, int margin = 1) {
    Wgraph<T> res(n);
    if(m == -1) m = n - 1;
    while(m--) {
        int a, b;
        T c;
        scan(a), scan(b), scan(c);
        a -= margin, b -= margin;
        res[a].emplace_back(b, c);
        if(!directed) res[b].emplace_back(a, c);
    }
    return res;
}
void add(Graph &G, int x, int y) { G[x].eb(y), G[y].eb(x); }
template <class S, class T> void add(Wgraph<S> &G, int x, int y, T c) { G[x].eb(y, c), G[y].eb(x, c); }

#define TEST                                                                                                                                                   \
    INT(testcases);                                                                                                                                            \
    while(testcases--)

i128 abs(const i128 &x) { return x > 0 ? x : -x; }
istream &operator>>(istream &is, i128 &v) {
    string s;
    is >> s;
    v = 0;
    for(int i = 0; i < (int)s.size(); i++) {
        if(isdigit(s[i])) { v = v * 10 + s[i] - '0'; }
    }
    if(s[0] == '-') { v *= -1; }
    return is;
}

ostream &operator<<(ostream &os, const i128 &v) {
    if(v == 0) { return (os << "0"); }
    i128 num = v;
    if(v < 0) {
        os << '-';
        num = -num;
    }
    string s;
    for(; num > 0; num /= 10) { s.push_back((char)(num % 10) + '0'); }
    reverse(s.begin(), s.end());
    return (os << s);
}
namespace aux {
template <typename T, unsigned N, unsigned L> struct tp {
    static void output(std::ostream &os, const T &v) {
        os << std::get<N>(v) << (&os == &cerr ? ", " : " ");
        tp<T, N + 1, L>::output(os, v);
    }
};
template <typename T, unsigned N> struct tp<T, N, N> {
    static void output(std::ostream &os, const T &v) { os << std::get<N>(v); }
};
} // namespace aux
template <typename... Ts> std::ostream &operator<<(std::ostream &os, const std::tuple<Ts...> &t) {
    if(&os == &cerr) { os << '('; }
    aux::tp<std::tuple<Ts...>, 0, sizeof...(Ts) - 1>::output(os, t);
    if(&os == &cerr) { os << ')'; }
    return os;
}
template <typename T, typename S, typename U> std::ostream &operator<<(std::ostream &os, const priority_queue<T, S, U> &_pq) {
    auto pq = _pq;
    vector<T> res;
    while(!empty(pq)) res.emplace_back(pq.top()), pq.pop();
    return os << res;
}
template <class T, class S> ostream &operator<<(ostream &os, const pair<T, S> &p) {
    if(&os == &cerr) { return os << "(" << p.first << ", " << p.second << ")"; }
    return os << p.first << " " << p.second;
}
template <class Ch, class Tr, class Container> std::basic_ostream<Ch, Tr> &operator<<(std::basic_ostream<Ch, Tr> &os, const Container &x) {
    bool f = true;
    if(&os == &cerr) os << "[";
    for(auto &y : x) {
        if(&os == &cerr)
            os << (f ? "" : ", ") << y;
        else
            os << (f ? "" : " ") << y;
        f = false;
    }
    if(&os == &cerr) os << "]";
    return os;
}

#define dump(...) static_cast<void>(0)
#define dbg(...) static_cast<void>(0)

void OUT() { cout << endl; }
template <class Head, class... Tail> void OUT(const Head &head, const Tail &...tail) {
    cout << head;
    if(sizeof...(tail)) cout << ' ';
    OUT(tail...);
}

template <typename T> static constexpr T inf = numeric_limits<T>::max() / 2;
template <class T, class S> constexpr pair<T, S> inf<pair<T, S>> = {inf<T>, inf<S>};

template <class F> struct REC {
    F f;
    REC(F &&f_) : f(forward<F>(f_)) {}
    template <class... Args> auto operator()(Args &&...args) const { return f(*this, forward<Args>(args)...); }
};

template <class S> vector<pair<S, int>> runLength(const vector<S> &v) {
    vector<pair<S, int>> res;
    for(auto &e : v) {
        if(res.empty() or res.back().fi != e)
            res.eb(e, 1);
        else
            res.back().se++;
    }
    return res;
}
vector<pair<char, int>> runLength(const string &v) {
    vector<pair<char, int>> res;
    for(auto &e : v) {
        if(res.empty() or res.back().fi != e)
            res.eb(e, 1);
        else
            res.back().se++;
    }
    return res;
}

struct string_converter {
    char start = 0;
    char type(const char &c) const { return (islower(c) ? 'a' : isupper(c) ? 'A' : isdigit(c) ? '0' : 0); }
    int convert(const char &c) {
        if(!start) start = type(c);
        return c - start;
    }
    int convert(const char &c, const string &chars) { return chars.find(c); }
    template <typename T> auto convert(const T &v) {
        vector<decltype(convert(v[0]))> ret;
        ret.reserve(size(v));
        for(auto &&e : v) ret.emplace_back(convert(e));
        return ret;
    }
    template <typename T> auto convert(const T &v, const string &chars) {
        vector<decltype(convert(v[0], chars))> ret;
        ret.reserve(size(v));
        for(auto &&e : v) ret.emplace_back(convert(e, chars));
        return ret;
    }
    int operator()(const char &v, char s = 0) {
        start = s;
        return convert(v);
    }
    int operator()(const char &v, const string &chars) { return convert(v, chars); }
    template <typename T> auto operator()(const T &v, char s = 0) {
        start = s;
        return convert(v);
    }
    template <typename T> auto operator()(const T &v, const string &chars) { return convert(v, chars); }
} toint;

template <class T, class F> T bin_search(T ok, T ng, const F &f) {
    while(abs(ok - ng) > 1) {
        T mid = ok + ng >> 1;
        (f(mid) ? ok : ng) = mid;
    }
    return ok;
}
template <class T, class F> T bin_search_double(T ok, T ng, const F &f, int iter = 80) {
    while(iter--) {
        T mid = (ok + ng) / 2;
        (f(mid) ? ok : ng) = mid;
    }
    return ok;
}

struct Setup_io {
    Setup_io() {
        ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0);
        cout << fixed << setprecision(11);
    }
} setup_io;

#endif
#pragma endregion

int main() {
    INT(n, m);
    VEC(int, a, n);
    VEC(int, b, m);
    auto ah = a, bh = b;

    double tie = 0, awin = 0, bwin = 0;

    int al = n, bl = m;
    auto dfs = REC([&](auto &&f, int i = 0, int j = 0, int t = 0, double p = 1) -> void {
        // dump(ah, bh, i, j, t, p, al, bl);
        if(!al and !bl)
            tie += p;
        else if(!al)
            bwin += p;
        else if(!bl)
            awin += p;
        else {
            if(t == 0) {
                while(ah[i] <= 0) i = (i + 1) % n;
                double nxt = p / bl;
                rep(k, m) {
                    if(bh[k] > 0) {
                        bh[k] -= a[i];
                        ah[i] -= b[k];
                        if(bh[k] <= 0) bl--;
                        if(ah[i] <= 0) al--;
                        f((i + 1) % n, j, 1, nxt);
                        if(bh[k] <= 0) bl++;
                        if(ah[i] <= 0) al++;
                        bh[k] += a[i];
                        ah[i] += b[k];
                    }
                }
            } else {
                while(bh[j] <= 0) j = (j + 1) % m;
                double nxt = p / al;
                rep(k, n) {
                    if(ah[k] > 0) {
                        ah[k] -= b[j];
                        bh[j] -= a[k];
                        if(ah[k] <= 0) al--;
                        if(bh[j] <= 0) bl--;
                        f(i, (j + 1) % m, 0, nxt);
                        if(bh[j] <= 0) bl++;
                        if(ah[k] <= 0) al++;
                        bh[j] += a[k];
                        ah[k] += b[j];
                    }
                }
            }
        }
    });

    if(n > m)
        dfs(0, 0, 0, 1);
    else if(n < m)
        dfs(0, 0, 1, 1);
    else {
        dfs(0, 0, 0, 0.5);
        dfs(0, 0, 1, 0.5);
    }
    OUT(awin);
    OUT(bwin);
    OUT(tie);
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 2ms
memory: 3664kb

input:

2 3
2 5
3 4 1

output:

0.12500000000
0.75000000000
0.12500000000

result:

ok 3 numbers

Test #2:

score: 0
Accepted
time: 3ms
memory: 3544kb

input:

6 6
1 1 4 5 1 4
1 1 4 5 1 4

output:

0.24186728395
0.24186728395
0.51626543210

result:

ok 3 numbers

Test #3:

score: 0
Accepted
time: 2ms
memory: 3660kb

input:

7 7
1 1 1 1 1 1 1
1 1 1 1 1 1 1

output:

0.00000000000
0.00000000000
1.00000000000

result:

ok 3 numbers

Test #4:

score: 0
Accepted
time: 2ms
memory: 3540kb

input:

1 7
7
1 1 1 1 1 1 1

output:

0.00000000000
0.00000000000
1.00000000000

result:

ok 3 numbers

Test #5:

score: 0
Accepted
time: 0ms
memory: 3660kb

input:

2 3
736618938 652769331
328875880 97571721 44608905

output:

1.00000000000
0.00000000000
0.00000000000

result:

ok 3 numbers

Test #6:

score: 0
Accepted
time: 1ms
memory: 3712kb

input:

5 4
53585130 731696211 668322278 611205195 158818781
569587984 776042583 745745433 330119007

output:

0.06684027778
0.66435185185
0.26880787037

result:

ok 3 numbers

Test #7:

score: 0
Accepted
time: 2ms
memory: 3512kb

input:

7 2
578505806 551611151 92903265 403642038 542119417 57334031 307573613
897644535 168524310

output:

1.00000000000
0.00000000000
0.00000000000

result:

ok 3 numbers

Test #8:

score: 0
Accepted
time: 2ms
memory: 3552kb

input:

5 6
113196606 64768263 772808463 787707989 500151952
481840741 676847825 4641268 431386165 847736311 169677832

output:

0.13632317387
0.52239718364
0.34127964249

result:

ok 3 numbers

Test #9:

score: 0
Accepted
time: 3ms
memory: 3716kb

input:

6 6
260666773 527612597 471926610 702232282 559007797 606173983
560573055 928117268 101411867 875949818 907478252 182117037

output:

0.00000000000
0.96081957305
0.03918042695

result:

ok 3 numbers

Test #10:

score: 0
Accepted
time: 2ms
memory: 3544kb

input:

3 3
333377599 3066695 67916629
426841530 865184552 974638244

output:

0.00000000000
1.00000000000
0.00000000000

result:

ok 3 numbers

Test #11:

score: 0
Accepted
time: 0ms
memory: 3544kb

input:

1 1
529429019
529428649

output:

1.00000000000
0.00000000000
0.00000000000

result:

ok 3 numbers

Test #12:

score: 0
Accepted
time: 2ms
memory: 3532kb

input:

3 3
12886596 817437415 465037461
12886473 817437448 465037967

output:

0.06944444444
0.65277777778
0.27777777778

result:

ok 3 numbers

Test #13:

score: 0
Accepted
time: 10ms
memory: 3700kb

input:

6 6
211213374 319527017 257080158 176742665 53109345 33822515
53109265 319527076 176743175 257080012 211212799 33822353

output:

0.42339995928
0.31938658479
0.25721345593

result:

ok 3 numbers

Test #14:

score: 0
Accepted
time: 2ms
memory: 3508kb

input:

1 2
1
1 1

output:

0.00000000000
1.00000000000
0.00000000000

result:

ok 3 numbers

Test #15:

score: 0
Accepted
time: 2ms
memory: 3552kb

input:

1 2
1
1 3

output:

0.00000000000
1.00000000000
0.00000000000

result:

ok 3 numbers

Test #16:

score: 0
Accepted
time: 2ms
memory: 3708kb

input:

1 2
2
4 2

output:

0.00000000000
1.00000000000
0.00000000000

result:

ok 3 numbers

Test #17:

score: 0
Accepted
time: 2ms
memory: 3572kb

input:

1 2
3
5 5

output:

0.00000000000
1.00000000000
0.00000000000

result:

ok 3 numbers

Test #18:

score: 0
Accepted
time: 0ms
memory: 3616kb

input:

1 2
4
1 2

output:

1.00000000000
0.00000000000
0.00000000000

result:

ok 3 numbers

Test #19:

score: 0
Accepted
time: 1ms
memory: 3552kb

input:

1 2
5
2 5

output:

0.00000000000
0.00000000000
1.00000000000

result:

ok 3 numbers

Test #20:

score: 0
Accepted
time: 2ms
memory: 3552kb

input:

1 2
5
5 5

output:

0.00000000000
1.00000000000
0.00000000000

result:

ok 3 numbers

Test #21:

score: 0
Accepted
time: 1ms
memory: 3548kb

input:

2 2
1 1
1 3

output:

0.00000000000
1.00000000000
0.00000000000

result:

ok 3 numbers

Test #22:

score: 0
Accepted
time: 1ms
memory: 3636kb

input:

2 2
1 1
2 3

output:

0.00000000000
1.00000000000
0.00000000000

result:

ok 3 numbers

Test #23:

score: 0
Accepted
time: 0ms
memory: 3596kb

input:

2 2
1 4
2 5

output:

0.00000000000
0.50000000000
0.50000000000

result:

ok 3 numbers

Test #24:

score: 0
Accepted
time: 2ms
memory: 3548kb

input:

2 2
2 2
1 4

output:

0.00000000000
0.00000000000
1.00000000000

result:

ok 3 numbers

Test #25:

score: 0
Accepted
time: 2ms
memory: 3628kb

input:

2 2
3 2
4 1

output:

0.00000000000
0.50000000000
0.50000000000

result:

ok 3 numbers

Test #26:

score: 0
Accepted
time: 2ms
memory: 3516kb

input:

2 2
3 3
1 3

output:

1.00000000000
0.00000000000
0.00000000000

result:

ok 3 numbers

Test #27:

score: 0
Accepted
time: 1ms
memory: 3552kb

input:

2 2
3 3
2 4

output:

0.00000000000
0.00000000000
1.00000000000

result:

ok 3 numbers

Test #28:

score: 0
Accepted
time: 1ms
memory: 3508kb

input:

2 2
3 3
5 3

output:

0.00000000000
1.00000000000
0.00000000000

result:

ok 3 numbers

Test #29:

score: 0
Accepted
time: 0ms
memory: 3552kb

input:

2 2
4 3
2 1

output:

1.00000000000
0.00000000000
0.00000000000

result:

ok 3 numbers

Test #30:

score: 0
Accepted
time: 2ms
memory: 3548kb

input:

2 2
4 3
4 4

output:

0.00000000000
1.00000000000
0.00000000000

result:

ok 3 numbers

Test #31:

score: 0
Accepted
time: 2ms
memory: 3660kb

input:

2 2
5 1
5 2

output:

0.12500000000
0.62500000000
0.25000000000

result:

ok 3 numbers

Test #32:

score: 0
Accepted
time: 2ms
memory: 3696kb

input:

2 2
5 1
5 3

output:

0.12500000000
0.62500000000
0.25000000000

result:

ok 3 numbers

Test #33:

score: 0
Accepted
time: 2ms
memory: 3548kb

input:

2 2
5 2
2 3

output:

0.87500000000
0.00000000000
0.12500000000

result:

ok 3 numbers

Test #34:

score: 0
Accepted
time: 2ms
memory: 3596kb

input:

2 2
5 4
1 2

output:

1.00000000000
0.00000000000
0.00000000000

result:

ok 3 numbers

Test #35:

score: 0
Accepted
time: 1ms
memory: 3548kb

input:

2 2
5 4
3 5

output:

0.87500000000
0.00000000000
0.12500000000

result:

ok 3 numbers

Test #36:

score: 0
Accepted
time: 2ms
memory: 3716kb

input:

2 2
5 5
1 4

output:

1.00000000000
0.00000000000
0.00000000000

result:

ok 3 numbers

Test #37:

score: 0
Accepted
time: 0ms
memory: 3572kb

input:

2 2
5 5
2 2

output:

1.00000000000
0.00000000000
0.00000000000

result:

ok 3 numbers

Test #38:

score: 0
Accepted
time: 2ms
memory: 3616kb

input:

1 1
6
6

output:

0.00000000000
0.00000000000
1.00000000000

result:

ok 3 numbers

Test #39:

score: 0
Accepted
time: 2ms
memory: 3704kb

input:

5 5
6 5 9 9 3
3 5 9 9 6

output:

0.29787037037
0.27877314815
0.42335648148

result:

ok 3 numbers

Test #40:

score: 0
Accepted
time: 5ms
memory: 3596kb

input:

6 6
10 2 3 4 5 7
5 2 4 3 10 7

output:

0.25401045685
0.19277370542
0.55321583773

result:

ok 3 numbers

Test #41:

score: 0
Accepted
time: 44ms
memory: 3712kb

input:

7 7
7 6 8 6 7 3 9
7 6 9 8 7 3 6

output:

0.31091375143
0.36576836791
0.32331788066

result:

ok 3 numbers

Test #42:

score: 0
Accepted
time: 3ms
memory: 3576kb

input:

6 6
5 4 7 9 9 10
9 4 9 7 5 10

output:

0.21694243506
0.32785654578
0.45520101916

result:

ok 3 numbers

Test #43:

score: 0
Accepted
time: 2ms
memory: 3572kb

input:

4 4
9 7 10 6
9 7 6 10

output:

0.33087384259
0.26229745370
0.40682870370

result:

ok 3 numbers

Test #44:

score: 0
Accepted
time: 2ms
memory: 3700kb

input:

3 3
3 10 3
3 10 3

output:

0.18750000000
0.18750000000
0.62500000000

result:

ok 3 numbers

Test #45:

score: 0
Accepted
time: 0ms
memory: 3552kb

input:

2 2
3 4
3 4

output:

0.00000000000
0.00000000000
1.00000000000

result:

ok 3 numbers

Test #46:

score: 0
Accepted
time: 79ms
memory: 3620kb

input:

7 7
922750124 99645786 685060385 948410807 266950246 996521461 883971852
266950246 99645786 883971852 685060385 922750124 996521461 948410807

output:

0.36335637142
0.27956640551
0.35707722307

result:

ok 3 numbers

Test #47:

score: 0
Accepted
time: 111ms
memory: 3700kb

input:

7 7
241155912 361580213 393947982 781406405 485516551 277202028 115028196
485516551 361580213 115028196 393947982 241155912 277202028 781406405

output:

0.37017609360
0.27878994530
0.35103396110

result:

ok 3 numbers

Test #48:

score: 0
Accepted
time: 64ms
memory: 3616kb

input:

7 7
565748008 734938287 873800405 879803305 473331973 893190834 623040014
473331973 734938287 623040014 873800405 565748008 893190834 879803305

output:

0.36430590802
0.31560355423
0.32009053776

result:

ok 3 numbers

Test #49:

score: 0
Accepted
time: 183ms
memory: 3708kb

input:

7 7
14 4 6 5 201506030 15 15
4 14 201506030 15 15 6 5

output:

0.17818379165
0.33708150987
0.48473469847

result:

ok 3 numbers

Test #50:

score: 0
Accepted
time: 110ms
memory: 3596kb

input:

7 7
3 2 3 5 784861968 2 1
2 3 784861968 1 2 3 5

output:

0.22307502187
0.31615158023
0.46077339789

result:

ok 3 numbers

Test #51:

score: 0
Accepted
time: 265ms
memory: 3592kb

input:

7 7
8 15 3 9 168061718 2 5
15 8 168061718 5 2 3 9

output:

0.21296959599
0.31996299507
0.46706740894

result:

ok 3 numbers

Test #52:

score: 0
Accepted
time: 103ms
memory: 3696kb

input:

7 7
859736717 19 19 18 13 10 7
7 10 13 18 19 19 859736717

output:

0.39362065260
0.14796726625
0.45841208115

result:

ok 3 numbers

Test #53:

score: 0
Accepted
time: 134ms
memory: 3540kb

input:

7 7
761045932 18 13 11 9 7 6
6 7 9 11 13 18 761045932

output:

0.38246768956
0.14749323865
0.47003907179

result:

ok 3 numbers

Test #54:

score: 0
Accepted
time: 157ms
memory: 3548kb

input:

7 7
379524878 17 16 14 10 6 1
1 6 10 14 16 17 379524878

output:

0.37926029330
0.17653672208
0.44420298462

result:

ok 3 numbers

Test #55:

score: 0
Accepted
time: 157ms
memory: 3632kb

input:

7 7
986258805 329018732 16 14 10 10 4
4 10 10 14 16 329018732 986258805

output:

0.33520652351
0.16822818648
0.49656529001

result:

ok 3 numbers

Test #56:

score: 0
Accepted
time: 158ms
memory: 3596kb

input:

7 7
402437510 39859989 20 20 18 17 7
7 17 18 20 20 39859989 402437510

output:

0.32869947364
0.16026305827
0.51103746809

result:

ok 3 numbers

Test #57:

score: 0
Accepted
time: 190ms
memory: 3536kb

input:

7 7
719895666 88341845 15 11 10 6 5
5 6 10 11 15 88341845 719895666

output:

0.34154105876
0.16943659667
0.48902234457

result:

ok 3 numbers

Test #58:

score: 0
Accepted
time: 263ms
memory: 3636kb

input:

7 7
22 657372492 8 20 531193761 10 21
8 22 20 657372492 531193761 21 10

output:

0.28303203586
0.21433164140
0.50263632274

result:

ok 3 numbers

Test #59:

score: 0
Accepted
time: 318ms
memory: 3600kb

input:

7 7
8 559730577 2 23 543514141 3 24
2 8 23 559730577 543514141 24 3

output:

0.28368161658
0.22201571345
0.49430266997

result:

ok 3 numbers

Test #60:

score: 0
Accepted
time: 234ms
memory: 3512kb

input:

7 7
24 416408320 4 25 698151361 24 15
4 24 25 416408320 698151361 15 24

output:

0.29751636844
0.24728658697
0.45519704459

result:

ok 3 numbers