QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#112864 | #6331. Jewel Game | maspy | AC ✓ | 1001ms | 12176kb | C++23 | 20.9kb | 2023-06-15 03:20:42 | 2023-06-15 03:20:43 |
Judging History
answer
#line 1 "/home/maspy/compro/library/my_template.hpp"
#if defined(LOCAL)
#include <my_template_compiled.hpp>
#else
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using u32 = unsigned int;
using u64 = unsigned long long;
using i128 = __int128;
template <class T>
constexpr T infty = 0;
template <>
constexpr int infty<int> = 1'000'000'000;
template <>
constexpr ll infty<ll> = ll(infty<int>) * infty<int> * 2;
template <>
constexpr u32 infty<u32> = infty<int>;
template <>
constexpr u64 infty<u64> = infty<ll>;
template <>
constexpr i128 infty<i128> = i128(infty<ll>) * infty<ll>;
template <>
constexpr double infty<double> = infty<ll>;
template <>
constexpr long double infty<long double> = infty<ll>;
using pi = pair<ll, ll>;
using vi = vector<ll>;
template <class T>
using vc = vector<T>;
template <class T>
using vvc = vector<vc<T>>;
template <class T>
using vvvc = vector<vvc<T>>;
template <class T>
using vvvvc = vector<vvvc<T>>;
template <class T>
using vvvvvc = vector<vvvvc<T>>;
template <class T>
using pq = priority_queue<T>;
template <class T>
using pqg = priority_queue<T, vector<T>, greater<T>>;
#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__))))
// https://trap.jp/post/1224/
#define FOR1(a) for (ll _ = 0; _ < ll(a); ++_)
#define FOR2(i, a) for (ll i = 0; i < ll(a); ++i)
#define FOR3(i, a, b) for (ll i = a; i < ll(b); ++i)
#define FOR4(i, a, b, c) for (ll i = a; i < ll(b); i += (c))
#define FOR1_R(a) for (ll i = (a)-1; i >= ll(0); --i)
#define FOR2_R(i, a) for (ll i = (a)-1; i >= ll(0); --i)
#define FOR3_R(i, a, b) for (ll i = (b)-1; i >= ll(a); --i)
#define overload4(a, b, c, d, e, ...) e
#define overload3(a, b, c, d, ...) d
#define FOR(...) overload4(__VA_ARGS__, FOR4, FOR3, FOR2, FOR1)(__VA_ARGS__)
#define FOR_R(...) overload3(__VA_ARGS__, FOR3_R, FOR2_R, FOR1_R)(__VA_ARGS__)
#define FOR_subset(t, s) \
for (ll t = (s); t >= 0; t = (t == 0 ? -1 : (t - 1) & (s)))
#define all(x) x.begin(), x.end()
#define len(x) ll(x.size())
#define elif else if
#define eb emplace_back
#define mp make_pair
#define mt make_tuple
#define fi first
#define se second
#define stoi stoll
int popcnt(int x) { return __builtin_popcount(x); }
int popcnt(u32 x) { return __builtin_popcount(x); }
int popcnt(ll x) { return __builtin_popcountll(x); }
int popcnt(u64 x) { return __builtin_popcountll(x); }
// (0, 1, 2, 3, 4) -> (-1, 0, 1, 1, 2)
int topbit(int x) { return (x == 0 ? -1 : 31 - __builtin_clz(x)); }
int topbit(u32 x) { return (x == 0 ? -1 : 31 - __builtin_clz(x)); }
int topbit(ll x) { return (x == 0 ? -1 : 63 - __builtin_clzll(x)); }
int topbit(u64 x) { return (x == 0 ? -1 : 63 - __builtin_clzll(x)); }
// (0, 1, 2, 3, 4) -> (-1, 0, 1, 0, 2)
int lowbit(int x) { return (x == 0 ? -1 : __builtin_ctz(x)); }
int lowbit(u32 x) { return (x == 0 ? -1 : __builtin_ctz(x)); }
int lowbit(ll x) { return (x == 0 ? -1 : __builtin_ctzll(x)); }
int lowbit(u64 x) { return (x == 0 ? -1 : __builtin_ctzll(x)); }
template <typename T, typename U>
T ceil(T x, U y) {
return (x > 0 ? (x + y - 1) / y : x / y);
}
template <typename T, typename U>
T floor(T x, U y) {
return (x > 0 ? x / y : (x - y + 1) / y);
}
template <typename T, typename U>
pair<T, T> divmod(T x, U y) {
T q = floor(x, y);
return {q, x - q * y};
}
template <typename T, typename U>
T SUM(const vector<U> &A) {
T sum = 0;
for (auto &&a: A) sum += a;
return sum;
}
#define MIN(v) *min_element(all(v))
#define MAX(v) *max_element(all(v))
#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 UNIQUE(x) \
sort(all(x)), x.erase(unique(all(x)), x.end()), x.shrink_to_fit()
template <typename T>
T POP(deque<T> &que) {
T a = que.front();
que.pop_front();
return a;
}
template <typename T>
T POP(pq<T> &que) {
T a = que.top();
que.pop();
return a;
}
template <typename T>
T POP(pqg<T> &que) {
assert(!que.empty());
T a = que.top();
que.pop();
return a;
}
template <typename T>
T POP(vc<T> &que) {
assert(!que.empty());
T a = que.back();
que.pop_back();
return a;
}
template <typename F>
ll binary_search(F check, ll ok, ll ng, bool check_ok = true) {
if (check_ok) assert(check(ok));
while (abs(ok - ng) > 1) {
auto x = (ng + ok) / 2;
tie(ok, ng) = (check(x) ? mp(x, ng) : mp(ok, x));
}
return ok;
}
template <typename F>
double binary_search_real(F check, double ok, double ng, int iter = 100) {
FOR(iter) {
double x = (ok + ng) / 2;
tie(ok, ng) = (check(x) ? mp(x, ng) : mp(ok, x));
}
return (ok + ng) / 2;
}
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);
}
// ? は -1
vc<int> s_to_vi(const string &S, char first_char) {
vc<int> A(S.size());
FOR(i, S.size()) { A[i] = (S[i] != '?' ? S[i] - first_char : -1); }
return A;
}
template <typename T, typename U>
vector<T> cumsum(vector<U> &A, int off = 1) {
int N = A.size();
vector<T> B(N + 1);
FOR(i, N) { B[i + 1] = B[i] + A[i]; }
if (off == 0) B.erase(B.begin());
return B;
}
// stable sort
template <typename T>
vector<int> argsort(const vector<T> &A) {
vector<int> ids(len(A));
iota(all(ids), 0);
sort(all(ids),
[&](int i, int j) { return (A[i] == A[j] ? i < j : A[i] < A[j]); });
return ids;
}
// A[I[0]], A[I[1]], ...
template <typename T>
vc<T> rearrange(const vc<T> &A, const vc<int> &I) {
vc<T> B(len(I));
FOR(i, len(I)) B[i] = A[I[i]];
return B;
}
#endif
#line 1 "/home/maspy/compro/library/other/io.hpp"
// based on yosupo's fastio
#include <unistd.h>
namespace fastio {
#define FASTIO
// クラスが read(), print() を持っているかを判定するメタ関数
struct has_write_impl {
template <class T>
static auto check(T &&x) -> decltype(x.write(), std::true_type{});
template <class T>
static auto check(...) -> std::false_type;
};
template <class T>
class has_write : public decltype(has_write_impl::check<T>(std::declval<T>())) {
};
struct has_read_impl {
template <class T>
static auto check(T &&x) -> decltype(x.read(), std::true_type{});
template <class T>
static auto check(...) -> std::false_type;
};
template <class T>
class has_read : public decltype(has_read_impl::check<T>(std::declval<T>())) {};
struct Scanner {
FILE *fp;
char line[(1 << 15) + 1];
size_t st = 0, ed = 0;
void reread() {
memmove(line, line + st, ed - st);
ed -= st;
st = 0;
ed += fread(line + ed, 1, (1 << 15) - ed, fp);
line[ed] = '\0';
}
bool succ() {
while (true) {
if (st == ed) {
reread();
if (st == ed) return false;
}
while (st != ed && isspace(line[st])) st++;
if (st != ed) break;
}
if (ed - st <= 50) {
bool sep = false;
for (size_t i = st; i < ed; i++) {
if (isspace(line[i])) {
sep = true;
break;
}
}
if (!sep) reread();
}
return true;
}
template <class T, enable_if_t<is_same<T, string>::value, int> = 0>
bool read_single(T &ref) {
if (!succ()) return false;
while (true) {
size_t sz = 0;
while (st + sz < ed && !isspace(line[st + sz])) sz++;
ref.append(line + st, sz);
st += sz;
if (!sz || st != ed) break;
reread();
}
return true;
}
template <class T, enable_if_t<is_integral<T>::value, int> = 0>
bool read_single(T &ref) {
if (!succ()) return false;
bool neg = false;
if (line[st] == '-') {
neg = true;
st++;
}
ref = T(0);
while (isdigit(line[st])) { ref = 10 * ref + (line[st++] & 0xf); }
if (neg) ref = -ref;
return true;
}
template <typename T,
typename enable_if<has_read<T>::value>::type * = nullptr>
inline bool read_single(T &x) {
x.read();
return true;
}
bool read_single(double &ref) {
string s;
if (!read_single(s)) return false;
ref = std::stod(s);
return true;
}
bool read_single(char &ref) {
string s;
if (!read_single(s) || s.size() != 1) return false;
ref = s[0];
return true;
}
template <class T>
bool read_single(vector<T> &ref) {
for (auto &d: ref) {
if (!read_single(d)) return false;
}
return true;
}
template <class T, class U>
bool read_single(pair<T, U> &p) {
return (read_single(p.first) && read_single(p.second));
}
template <size_t N = 0, typename T>
void read_single_tuple(T &t) {
if constexpr (N < std::tuple_size<T>::value) {
auto &x = std::get<N>(t);
read_single(x);
read_single_tuple<N + 1>(t);
}
}
template <class... T>
bool read_single(tuple<T...> &tpl) {
read_single_tuple(tpl);
return true;
}
void read() {}
template <class H, class... T>
void read(H &h, T &... t) {
bool f = read_single(h);
assert(f);
read(t...);
}
Scanner(FILE *fp) : fp(fp) {}
};
struct Printer {
Printer(FILE *_fp) : fp(_fp) {}
~Printer() { flush(); }
static constexpr size_t SIZE = 1 << 15;
FILE *fp;
char line[SIZE], small[50];
size_t pos = 0;
void flush() {
fwrite(line, 1, pos, fp);
pos = 0;
}
void write(const char val) {
if (pos == SIZE) flush();
line[pos++] = val;
}
template <class T, enable_if_t<is_integral<T>::value, int> = 0>
void write(T val) {
if (pos > (1 << 15) - 50) flush();
if (val == 0) {
write('0');
return;
}
if (val < 0) {
write('-');
val = -val; // todo min
}
size_t len = 0;
while (val) {
small[len++] = char(0x30 | (val % 10));
val /= 10;
}
for (size_t i = 0; i < len; i++) { line[pos + i] = small[len - 1 - i]; }
pos += len;
}
void write(const string s) {
for (char c: s) write(c);
}
void write(const char *s) {
size_t len = strlen(s);
for (size_t i = 0; i < len; i++) write(s[i]);
}
void write(const double x) {
ostringstream oss;
oss << fixed << setprecision(15) << x;
string s = oss.str();
write(s);
}
void write(const long double x) {
ostringstream oss;
oss << fixed << setprecision(15) << x;
string s = oss.str();
write(s);
}
template <typename T,
typename enable_if<has_write<T>::value>::type * = nullptr>
inline void write(T x) {
x.write();
}
template <class T>
void write(const vector<T> val) {
auto n = val.size();
for (size_t i = 0; i < n; i++) {
if (i) write(' ');
write(val[i]);
}
}
template <class T, class U>
void write(const pair<T, U> val) {
write(val.first);
write(' ');
write(val.second);
}
template <size_t N = 0, typename T>
void write_tuple(const T t) {
if constexpr (N < std::tuple_size<T>::value) {
if constexpr (N > 0) { write(' '); }
const auto x = std::get<N>(t);
write(x);
write_tuple<N + 1>(t);
}
}
template <class... T>
bool write(tuple<T...> tpl) {
write_tuple(tpl);
return true;
}
template <class T, size_t S>
void write(const array<T, S> val) {
auto n = val.size();
for (size_t i = 0; i < n; i++) {
if (i) write(' ');
write(val[i]);
}
}
void write(i128 val) {
string s;
bool negative = 0;
if (val < 0) {
negative = 1;
val = -val;
}
while (val) {
s += '0' + int(val % 10);
val /= 10;
}
if (negative) s += "-";
reverse(all(s));
if (len(s) == 0) s = "0";
write(s);
}
};
Scanner scanner = Scanner(stdin);
Printer printer = Printer(stdout);
void flush() { printer.flush(); }
void print() { printer.write('\n'); }
template <class Head, class... Tail>
void print(Head &&head, Tail &&... tail) {
printer.write(head);
if (sizeof...(Tail)) printer.write(' ');
print(forward<Tail>(tail)...);
}
void read() {}
template <class Head, class... Tail>
void read(Head &head, Tail &... tail) {
scanner.read(head);
read(tail...);
}
} // namespace fastio
using fastio::print;
using fastio::flush;
using fastio::read;
#define INT(...) \
int __VA_ARGS__; \
read(__VA_ARGS__)
#define LL(...) \
ll __VA_ARGS__; \
read(__VA_ARGS__)
#define STR(...) \
string __VA_ARGS__; \
read(__VA_ARGS__)
#define CHAR(...) \
char __VA_ARGS__; \
read(__VA_ARGS__)
#define DBL(...) \
double __VA_ARGS__; \
read(__VA_ARGS__)
#define VEC(type, name, size) \
vector<type> name(size); \
read(name)
#define VV(type, name, h, w) \
vector<vector<type>> name(h, vector<type>(w)); \
read(name)
void YES(bool t = 1) { print(t ? "YES" : "NO"); }
void NO(bool t = 1) { YES(!t); }
void Yes(bool t = 1) { print(t ? "Yes" : "No"); }
void No(bool t = 1) { Yes(!t); }
void yes(bool t = 1) { print(t ? "yes" : "no"); }
void no(bool t = 1) { yes(!t); }
#line 2 "/home/maspy/compro/library/graph/base.hpp"
template <typename T>
struct Edge {
int frm, to;
T cost;
int id;
};
template <typename T = int, bool directed = false>
struct Graph {
int N, M;
using cost_type = T;
using edge_type = Edge<T>;
vector<edge_type> edges;
vector<int> indptr;
vector<edge_type> csr_edges;
vc<int> vc_deg, vc_indeg, vc_outdeg;
bool prepared;
class OutgoingEdges {
public:
OutgoingEdges(const Graph* G, int l, int r) : G(G), l(l), r(r) {}
const edge_type* begin() const {
if (l == r) { return 0; }
return &G->csr_edges[l];
}
const edge_type* end() const {
if (l == r) { return 0; }
return &G->csr_edges[r];
}
private:
const Graph* G;
int l, r;
};
bool is_prepared() { return prepared; }
constexpr bool is_directed() { return directed; }
Graph() : N(0), M(0), prepared(0) {}
Graph(int N) : N(N), M(0), prepared(0) {}
void build(int n) {
N = n, M = 0;
prepared = 0;
edges.clear();
indptr.clear();
csr_edges.clear();
vc_deg.clear();
vc_indeg.clear();
vc_outdeg.clear();
}
void add(int frm, int to, T cost = 1, int i = -1) {
assert(!prepared);
assert(0 <= frm && 0 <= to && to < N);
if (i == -1) i = M;
auto e = edge_type({frm, to, cost, i});
edges.eb(e);
++M;
}
// wt, off
void read_tree(bool wt = false, int off = 1) { read_graph(N - 1, wt, off); }
void read_graph(int M, bool wt = false, int off = 1) {
for (int m = 0; m < M; ++m) {
INT(a, b);
a -= off, b -= off;
if (!wt) {
add(a, b);
} else {
T c;
read(c);
add(a, b, c);
}
}
build();
}
void build() {
assert(!prepared);
prepared = true;
indptr.assign(N + 1, 0);
for (auto&& e: edges) {
indptr[e.frm + 1]++;
if (!directed) indptr[e.to + 1]++;
}
for (int v = 0; v < N; ++v) { indptr[v + 1] += indptr[v]; }
auto counter = indptr;
csr_edges.resize(indptr.back() + 1);
for (auto&& e: edges) {
csr_edges[counter[e.frm]++] = e;
if (!directed)
csr_edges[counter[e.to]++] = edge_type({e.to, e.frm, e.cost, e.id});
}
}
OutgoingEdges operator[](int v) const {
assert(prepared);
return {this, indptr[v], indptr[v + 1]};
}
vc<int> deg_array() {
if (vc_deg.empty()) calc_deg();
return vc_deg;
}
pair<vc<int>, vc<int>> deg_array_inout() {
if (vc_indeg.empty()) calc_deg_inout();
return {vc_indeg, vc_outdeg};
}
int deg(int v) {
if (vc_deg.empty()) calc_deg();
return vc_deg[v];
}
int in_deg(int v) {
if (vc_indeg.empty()) calc_deg_inout();
return vc_indeg[v];
}
int out_deg(int v) {
if (vc_outdeg.empty()) calc_deg_inout();
return vc_outdeg[v];
}
void debug() {
print("Graph");
if (!prepared) {
print("frm to cost id");
for (auto&& e: edges) print(e.frm, e.to, e.cost, e.id);
} else {
print("indptr", indptr);
print("frm to cost id");
FOR(v, N) for (auto&& e: (*this)[v]) print(e.frm, e.to, e.cost, e.id);
}
}
vc<int> new_idx;
vc<bool> used_e;
// G における頂点 V[i] が、新しいグラフで i になるようにする
// {G, es}
pair<Graph<T, directed>, vc<int>> rearrange(vc<int> V) {
if (len(new_idx) != N) new_idx.assign(N, -1);
if (len(used_e) != M) used_e.assign(M, 0);
int n = len(V);
FOR(i, n) new_idx[V[i]] = i;
Graph<T, directed> G(n);
vc<int> es;
FOR(i, n) {
for (auto&& e: (*this)[V[i]]) {
if (used_e[e.id]) continue;
int a = e.frm, b = e.to;
if (new_idx[a] != -1 && new_idx[b] != -1) {
used_e[e.id] = 1;
G.add(new_idx[a], new_idx[b], e.cost);
es.eb(e.id);
}
}
}
FOR(i, n) new_idx[V[i]] = -1;
for (auto&& eid: es) used_e[eid] = 0;
G.build();
return {G, es};
}
private:
void calc_deg() {
assert(vc_deg.empty());
vc_deg.resize(N);
for (auto&& e: edges) vc_deg[e.frm]++, vc_deg[e.to]++;
}
void calc_deg_inout() {
assert(vc_indeg.empty());
vc_indeg.resize(N);
vc_outdeg.resize(N);
for (auto&& e: edges) { vc_indeg[e.to]++, vc_outdeg[e.frm]++; }
}
};
#line 2 "/home/maspy/compro/library/graph/reverse_graph.hpp"
template <typename T>
Graph<T, 1> reverse_graph(Graph<T, 1>& G) {
assert(G.is_directed());
Graph<T, 1> G1(G.N);
for (auto&& e: G.edges) { G1.add(e.to, e.frm, e.cost, e.id); }
G1.build();
return G1;
}
#line 5 "main.cpp"
void solve() {
LL(N, M, F, S);
--F, --S;
VEC(pi, AB, M);
for (auto&& [a, b]: AB) --a, --b;
LL(K);
vc<int> V(K), W(K);
FOR(i, K) read(V[i]), read(W[i]);
for (auto&& v: V) --v;
{
vc<int> new_idx(N, -1);
FOR(k, K) new_idx[V[k]] = k;
int p = K;
FOR(i, N) if (new_idx[i] == -1) new_idx[i] = p++;
F = new_idx[F], S = new_idx[S];
for (auto&& [a, b]: AB) a = new_idx[a], b = new_idx[b];
}
/*
残っている集合、me, op -> value
*/
using T = tuple<ll, ll, ll>;
vvv(ll, dp, 1 << K, N, N, -infty<ll>);
FOR(a, N) FOR(b, N) chmax(dp[0][a][b], 0);
FOR(s, 1 << K) {
// 同じ集合内の移動での確定値を求めたい
Graph<bool, 1> G(N);
for (auto&& [a, b]: AB) {
if ((s >> a & 1) || (s >> b & 1)) continue;
G.add(a, b);
}
G.build();
auto RG = reverse_graph(G);
/*
・正の大きな値から確定させていく
・行き先がすべて確定したところ:確定
・ずっと未確定のまま → ループ
*/
auto outdeg_1 = G.deg_array_inout().se;
vv(int, outdeg_2, N, N);
FOR(a, N) FOR(b, N) outdeg_2[a][b] = outdeg_1[a];
// (正の値、a, b)
pq<tuple<ll, int, int>> que;
// 確定、 a, b
vc<pi> que_ok;
vv(bool, done, N, N);
FOR(a, N) FOR(b, N) { que.emplace(dp[s][a][b], a, b); }
FOR(a, N) FOR(b, N) if (outdeg_2[a][b] == 0) { que_ok.eb(a, b); }
while (1) {
while (len(que_ok)) {
auto [a, b] = POP(que_ok);
if (done[a][b]) continue;
done[a][b] = 1;
for (auto&& e: RG[b]) {
int a1 = e.to, b1 = a;
if (done[a1][b1]) continue;
chmax(dp[s][a1][b1], -dp[s][a][b]);
--outdeg_2[a1][b1];
if (outdeg_2[a1][b1] == 0) que_ok.eb(a1, b1);
que.emplace(dp[s][a1][b1], a1, b1);
}
}
if (que.empty()) break;
auto [x, a, b] = POP(que);
if (x <= 0) break;
if (done[a][b]) continue;
dp[s][a][b] = x;
done[a][b] = 1;
for (auto&& e: RG[b]) {
int a1 = e.to, b1 = a;
if (done[a1][b1]) continue;
chmax(dp[s][a1][b1], -dp[s][a][b]);
--outdeg_2[a1][b1];
if (outdeg_2[a1][b1] == 0) que_ok.eb(a1, b1);
if (dp[s][a][b] <= 0) que.emplace(-dp[s][a][b], a1, b1);
}
}
FOR(a, N) FOR(b, N) if (!done[a][b]) dp[s][a][b] = 0;
FOR(a, N) FOR(b, K) {
int t = s | 1 << b;
if (s == t) continue;
for (auto&& [p, q]: AB) {
if (q == b) { chmax(dp[t][p][a], W[b] - dp[s][a][b]); }
};
}
/*
print("s", s);
FOR(a, N) print(dp[s][a]);
print();
*/
}
print(dp[(1 << K) - 1][F][S]);
}
signed main() {
solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3456kb
input:
5 16 1 1 1 2 1 3 1 4 1 5 2 3 2 4 2 5 3 2 3 4 3 5 4 2 4 3 4 5 5 2 5 3 5 4 4 2 4 3 84 4 38 5 96
output:
46
result:
ok 1 number(s): "46"
Test #2:
score: 0
Accepted
time: 2ms
memory: 3524kb
input:
8 16 8 4 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 1 1 5 2 6 3 7 4 8 5 1 6 2 7 3 8 4 6 1 29 2 34 3 41 5 7 6 26 7 94
output:
-23
result:
ok 1 number(s): "-23"
Test #3:
score: 0
Accepted
time: 1ms
memory: 3448kb
input:
5 5 2 1 1 1 2 3 3 4 4 5 5 2 2 4 1000000 5 100000
output:
1100000
result:
ok 1 number(s): "1100000"
Test #4:
score: 0
Accepted
time: 4ms
memory: 3796kb
input:
10 20 1 2 1 4 1 7 2 2 2 4 3 6 3 3 4 8 4 7 5 7 5 1 6 9 6 2 7 9 7 3 8 8 8 6 9 7 9 8 10 10 10 2 8 3 92067840 4 2874502 5 36253165 6 70758738 7 4768969 8 16029185 9 16207515 10 44912151
output:
132484345
result:
ok 1 number(s): "132484345"
Test #5:
score: 0
Accepted
time: 1001ms
memory: 12132kb
input:
30 900 1 2 2 25 8 21 22 16 26 29 12 24 1 8 7 14 22 27 27 20 5 24 21 21 21 10 30 28 5 16 12 3 16 1 21 2 24 23 24 14 9 7 9 18 20 22 6 1 30 3 11 6 2 17 18 13 28 20 5 15 26 16 9 14 30 23 4 23 4 2 9 5 21 29 1 30 12 14 16 27 28 22 15 7 23 10 13 16 1 15 22 9 13 12 30 18 10 5 25 28 3 17 30 30 7 17 11 24 12 ...
output:
40915541
result:
ok 1 number(s): "40915541"
Test #6:
score: 0
Accepted
time: 997ms
memory: 12064kb
input:
30 900 1 1 16 16 26 15 20 25 9 28 27 1 25 18 12 6 7 26 14 15 28 21 18 19 12 3 26 29 28 24 8 8 22 9 18 3 9 2 26 9 29 21 13 28 21 24 18 2 30 8 1 25 19 26 4 19 2 25 14 27 14 12 2 23 23 15 16 5 9 29 10 27 29 16 16 20 5 8 3 28 12 12 30 7 16 29 30 17 3 11 21 26 18 14 14 6 26 4 21 29 3 6 11 15 22 4 14 18 1...
output:
38892888
result:
ok 1 number(s): "38892888"
Test #7:
score: 0
Accepted
time: 1ms
memory: 3520kb
input:
9 58 5 4 4 6 8 9 5 3 6 5 7 1 5 9 6 3 2 1 4 8 2 9 3 4 1 2 8 5 5 2 1 3 2 3 9 5 4 3 3 1 5 4 9 1 6 7 2 8 7 3 2 5 8 3 2 7 5 8 4 7 9 2 4 5 5 7 3 7 6 8 1 4 9 4 9 8 7 9 1 1 4 4 3 6 1 8 6 6 5 5 9 9 5 1 1 6 2 4 3 2 5 6 3 3 2 6 7 4 6 2 3 9 6 9 8 8 9 7 2 1 28323506 7 18381394
output:
46704900
result:
ok 1 number(s): "46704900"
Test #8:
score: 0
Accepted
time: 1ms
memory: 3584kb
input:
8 11 4 4 4 6 7 6 8 2 5 8 3 4 2 3 8 6 5 1 6 6 1 8 8 4 4 2 75547123 5 9278878 7 13909469 8 57425260
output:
0
result:
ok 1 number(s): "0"
Test #9:
score: 0
Accepted
time: 0ms
memory: 3548kb
input:
4 10 1 2 2 3 1 3 4 4 1 4 3 3 4 3 1 2 3 1 2 4 1 1 2 3 35669800 4 36664186
output:
994386
result:
ok 1 number(s): "994386"
Test #10:
score: 0
Accepted
time: 8ms
memory: 3924kb
input:
17 125 15 14 12 5 13 11 13 12 9 13 16 2 13 3 1 14 16 14 13 10 3 2 17 14 14 12 8 11 10 1 9 8 14 2 13 6 3 3 7 1 11 12 16 17 10 4 15 10 12 11 10 10 4 9 14 16 9 3 4 8 15 5 2 12 7 11 14 1 10 3 4 11 4 4 8 12 8 7 9 16 15 13 17 9 1 10 8 5 13 4 13 16 15 15 9 10 17 4 10 17 2 16 13 1 15 9 5 7 14 11 10 9 5 5 9 ...
output:
-33927098
result:
ok 1 number(s): "-33927098"
Test #11:
score: 0
Accepted
time: 2ms
memory: 3500kb
input:
11 18 8 7 5 11 9 3 1 8 6 11 11 5 5 9 1 9 2 5 10 2 4 10 7 1 6 2 10 8 3 9 8 6 3 7 7 11 2 10 5 2 22754552 5 84549882 6 19922948 9 13449629 11 18334746
output:
-73656757
result:
ok 1 number(s): "-73656757"
Test #12:
score: 0
Accepted
time: 1ms
memory: 3444kb
input:
3 8 2 3 1 3 3 2 1 2 3 3 2 1 2 3 3 1 2 2 1 1 53102229
output:
53102229
result:
ok 1 number(s): "53102229"
Test #13:
score: 0
Accepted
time: 1ms
memory: 3500kb
input:
3 6 1 1 1 3 2 3 3 1 2 2 1 2 2 1 1 3 88674071
output:
88674071
result:
ok 1 number(s): "88674071"
Test #14:
score: 0
Accepted
time: 1ms
memory: 3500kb
input:
10 22 3 3 5 6 2 9 1 4 6 4 7 9 3 4 4 3 4 2 6 3 10 8 8 1 8 2 9 4 5 10 4 10 7 3 7 6 10 9 1 1 1 10 10 5 2 3 4 1 12017417 2 33560186 9 68408625 10 44302781
output:
91168637
result:
ok 1 number(s): "91168637"
Test #15:
score: 0
Accepted
time: 1ms
memory: 3528kb
input:
11 76 11 6 11 9 4 8 4 2 11 4 7 7 9 8 5 2 7 3 1 4 8 8 6 1 2 7 7 4 9 6 10 6 7 9 3 5 1 8 2 11 1 6 4 1 10 2 4 11 4 4 2 8 8 9 11 10 8 4 8 5 3 4 4 5 11 5 11 8 10 3 8 3 7 6 4 9 1 7 1 10 7 5 10 4 5 6 6 10 5 5 7 11 8 11 2 2 6 9 1 5 2 3 8 1 3 10 6 3 9 10 5 8 7 10 1 11 4 3 2 9 5 10 9 5 3 1 5 7 6 5 9 3 5 11 3 6...
output:
18844044
result:
ok 1 number(s): "18844044"
Test #16:
score: 0
Accepted
time: 1ms
memory: 3548kb
input:
5 8 2 5 5 4 4 1 3 5 1 5 1 2 2 5 3 3 3 1 3 1 89861734 3 78638917 4 76333187
output:
-166194921
result:
ok 1 number(s): "-166194921"
Test #17:
score: 0
Accepted
time: 75ms
memory: 9160kb
input:
24 34 21 10 17 17 19 21 22 24 8 4 10 11 7 11 18 20 9 15 17 7 2 8 5 4 13 6 11 5 21 11 12 16 7 23 3 13 16 7 1 3 23 18 6 2 20 24 19 20 14 13 15 9 2 14 4 24 24 1 1 4 5 12 11 22 14 23 2 20 8 15 10 4 32206739 5 86258057 6 28124909 8 30711780 17 1439605 18 98665106 19 35462765 20 42495740 22 94507837 23 65...
output:
107651072
result:
ok 1 number(s): "107651072"
Test #18:
score: 0
Accepted
time: 19ms
memory: 4260kb
input:
25 157 7 9 12 18 16 14 7 14 4 11 24 20 19 4 19 6 17 4 12 16 21 14 18 25 22 10 15 3 14 11 5 16 15 9 24 13 10 14 25 1 25 22 25 8 18 20 17 11 12 21 2 6 14 14 18 13 17 7 9 16 13 21 16 25 17 8 21 2 19 2 15 4 10 8 15 11 20 21 13 1 7 11 9 11 20 12 7 10 15 12 16 16 2 22 21 17 21 3 16 9 22 1 6 24 9 23 12 10 ...
output:
27571523
result:
ok 1 number(s): "27571523"
Test #19:
score: 0
Accepted
time: 529ms
memory: 12060kb
input:
30 594 3 3 21 8 13 27 26 24 17 20 10 1 24 14 30 26 7 22 14 3 16 1 15 28 2 20 5 23 23 16 24 6 4 29 19 24 25 13 19 13 24 27 16 3 18 19 5 18 1 30 29 18 1 8 30 6 10 16 30 3 29 10 23 17 17 2 16 2 1 16 3 1 22 19 5 17 4 14 19 23 9 29 22 16 18 15 2 25 10 9 28 7 12 12 2 10 10 19 3 6 15 19 6 21 7 23 23 24 4 1...
output:
20858678
result:
ok 1 number(s): "20858678"
Test #20:
score: 0
Accepted
time: 264ms
memory: 11996kb
input:
30 194 4 8 16 26 23 10 12 22 18 9 9 21 17 24 14 18 4 26 4 17 12 25 16 6 6 24 27 3 17 17 5 6 8 25 5 18 8 1 19 5 14 21 16 7 1 23 11 11 19 27 8 5 5 8 25 28 4 1 28 17 19 25 25 1 23 24 2 9 17 26 15 10 9 11 5 30 22 24 20 2 16 19 9 19 12 12 30 8 22 16 14 11 16 17 7 29 12 18 23 23 5 24 1 14 26 19 19 14 25 5...
output:
42920444
result:
ok 1 number(s): "42920444"
Test #21:
score: 0
Accepted
time: 153ms
memory: 12176kb
input:
30 59 11 13 2 5 18 16 9 19 5 22 30 4 23 8 3 9 17 28 12 28 12 13 7 1 17 16 7 28 22 6 22 21 23 16 8 27 27 14 4 4 3 21 1 27 22 11 15 6 7 3 26 26 29 15 15 12 4 14 21 9 24 2 13 11 3 22 18 20 29 10 11 16 26 19 10 8 20 23 15 2 20 2 19 12 20 10 15 15 25 8 10 24 1 24 9 10 16 17 3 25 9 8 25 17 14 7 14 28 8 26...
output:
235374574
result:
ok 1 number(s): "235374574"
Test #22:
score: 0
Accepted
time: 175ms
memory: 12004kb
input:
30 91 15 24 17 26 26 4 7 19 22 15 1 7 17 27 21 24 29 15 12 22 10 16 18 2 1 3 25 7 16 27 21 8 25 10 16 19 8 25 14 24 7 9 5 4 11 22 8 4 21 26 23 22 21 12 14 29 20 27 5 23 7 16 29 7 2 26 9 27 2 11 12 29 20 1 30 3 24 11 3 26 8 17 13 12 5 22 28 15 24 6 22 29 23 16 19 1 9 20 1 11 4 5 2 4 6 23 13 29 11 14 ...
output:
57866396
result:
ok 1 number(s): "57866396"
Test #23:
score: 0
Accepted
time: 174ms
memory: 11980kb
input:
30 74 24 24 25 11 14 15 23 23 2 13 6 26 27 14 30 14 11 10 26 16 3 27 20 10 21 5 19 10 14 1 4 11 10 27 20 24 6 23 5 14 25 28 27 12 24 7 17 10 13 4 30 27 12 25 22 27 20 25 29 20 17 29 23 13 22 23 16 20 20 4 28 20 13 12 18 27 7 30 1 28 18 1 30 23 2 8 6 30 27 19 16 26 24 21 3 8 28 13 28 4 14 5 19 21 23 ...
output:
30736171
result:
ok 1 number(s): "30736171"
Test #24:
score: 0
Accepted
time: 500ms
memory: 12128kb
input:
30 542 11 11 19 24 24 14 25 25 11 6 30 21 14 19 19 9 2 22 9 19 21 5 23 27 27 15 14 10 13 3 22 5 3 5 28 14 22 13 14 22 22 7 11 22 23 19 27 12 6 11 24 25 23 17 26 28 27 24 10 29 5 30 17 17 29 7 28 4 6 17 6 30 20 19 2 2 18 22 3 29 7 12 27 28 25 18 30 23 22 15 11 19 10 28 2 7 4 4 11 20 2 11 11 14 23 7 2...
output:
50977437
result:
ok 1 number(s): "50977437"