QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#626532 | #7901. Basic Substring Structure | MiniLong | AC ✓ | 103ms | 63364kb | C++20 | 6.7kb | 2024-10-10 10:06:49 | 2024-10-10 10:06:50 |
Judging History
answer
#include <bits/stdc++.h>
#define _rep(i, x, y) for(int i = x; i <= y; ++i)
#define _req(i, x, y) for(int i = x; i >= y; --i)
#define _rev(i, u) for(int i = head[u]; i; i = e[i].nxt)
#define pb push_back
#define fi first
#define se second
#define mst(f, i) memset(f, i, sizeof f)
using namespace std;
#ifdef ONLINE_JUDGE
#define debug(...) 0
#else
#define debug(...) fprintf(stderr, __VA_ARGS__), fflush(stderr)
#endif
typedef long long ll;
typedef pair<int, int> PII;
namespace fastio{
char ibuf[1 << 20],*p1 = ibuf, *p2 = ibuf;
#define get() p1 == p2 && (p2 = (p1 = ibuf) + fread(ibuf, 1, 1 << 20, stdin), p1 == p2) ? EOF : *p1++
template<typename T> inline void read(T &t){
T x = 0, f = 1;
char c = get();
while(!isdigit(c)){
if(c == '-') f = -f;
c = get();
}
while(isdigit(c)) x = x * 10 + c - '0', c = get();
t = x * f;
}
template<typename T, typename ... Args> inline void read(T &t, Args&... args){
read(t);
read(args...);
}
template<typename T> void write(T t){
if(t < 0) putchar('-'), t = -t;
if(t >= 10) write(t / 10);
putchar(t % 10 + '0');
}
template<typename T, typename ... Args> void write(T t, Args... args){
write(t), putchar(' '), write(args...);
}
template<typename T> void writeln(T t){
write(t);
puts("");
}
template<typename T> void writes(T t){
write(t), putchar(' ');
}
#undef get
};
using namespace fastio;
#define multitest() int T; read(T); _rep(tCase, 1, T)
namespace Calculation{
const ll mod = 998244353;
ll ksm(ll p, ll h){ll base = p % mod, res = 1; while(h){if(h & 1ll) res = res * base % mod; base = base * base % mod, h >>= 1ll;} return res;}
void dec(ll &x, ll y){x = ((x - y) % mod + mod) % mod;}
void add(ll &x, ll y){x = (x + y) % mod;}
void mul(ll &x, ll y){x = x * y % mod;}
ll sub(ll x, ll y){return ((x - y) % mod + mod) % mod;}
ll pls(ll x, ll y){return ((x + y) % mod + mod) % mod;}
ll mult(ll x, ll y){return x * y % mod;}
}
using namespace Calculation;
const int N = 2e5 + 5;
int n, s[N];
namespace SA{
int m, x[N], y[N], sa[N], rk[N], c[N], ht[N], f[N][25];
void build(){
m = n;
_rep(i, 1, n) c[x[i] = s[i]]++;
_rep(i, 1, m) c[i] += c[i - 1];
_req(i, n, 1) sa[c[x[i]]--] = i;
for(int k = 1; k <= n; k <<= 1){
int p = 0;
_rep(i, n - k + 1, n) y[++p] = i;
_rep(i, 1, n) if(sa[i] > k) y[++p] = sa[i] - k;
_rep(i, 1, m) c[i] = 0;
_rep(i, 1, n) c[x[y[i]]]++;
_rep(i, 1, m) c[i] += c[i - 1];
_req(i, n, 1) sa[c[x[y[i]]]--] = y[i];
p = y[sa[1]] = 1;
_rep(i, 2, n) y[sa[i]] = (x[sa[i]] == x[sa[i - 1]] && x[sa[i] + k] == x[sa[i - 1] + k]) ? p : ++p;
_rep(i, 1, n) swap(x[i], y[i]);
if(p >= n) break;
m = n;
}
_rep(i, 1, n) rk[sa[i]] = i;
int k = 0; ht[1] = 0;
_rep(i, 1, n){
if(rk[i] == 1) continue;
if(k) --k;
while(s[i + k] == s[sa[rk[i] - 1] + k]) ++k;
ht[rk[i]] = k;
}
_rep(i, 1, n) f[i][0] = ht[i];
_rep(i, 1, 20) _rep(j, 1, n - (1 << i) + 1) f[j][i] = min(f[j][i - 1], f[j + (1 << i - 1)][i - 1]);
}
int lcp(int x, int y){
if(x > n || y > n || x < 1 || y < 1) return 0;
if(x == y) return n - x + 1;
x = rk[x], y = rk[y]; if(x > y) swap(x, y); x++;
int k = __lg(y - x + 1);
return min(f[x][k], f[y - (1 << k) + 1][k]);
}
void clr(){
_rep(i, 0, n + 1) x[i] = y[i] = sa[i] = rk[i] = c[i] = ht[i] = 0, mst(f[i], 0);
m = 0;
}
}
using SA::lcp;
ll ans, z[N], r[N], f[N], g[N], nxt[N], res[N];
vector<int> h[N];
int lcp(int x, int y, int p, int c){
int lst = s[p]; s[p] = c;
int cur = min(lcp(x, y), p - x);
if(cur < p - x || s[y + cur] != s[x + cur]) return s[p] = lst, cur;
cur += lcp(x + cur + 1, y + cur + 1) + 1;
return s[p] = lst, cur;
}
ll pre[N], suf[N];
vector<PII> v[N];
void clr(){
ans = 0;
_rep(i, 0, n + 1){
z[i] = r[i] = f[i] = g[i] = nxt[i] = res[i] = s[i] = 0;
h[i].clear(), pre[i] = suf[i] = 0, v[i].clear();
}
SA::clr();
}
int main(){
// freopen("in.in", "r", stdin);
// freopen("out.txt", "w", stdout);
multitest(){
read(n);
_rep(i, 1, n) read(s[i]);
SA::build();
_rep(i, 1, n){
z[i] = lcp(i, 1), ans += z[i], r[i] = i + z[i] - 1;
if(z[i] < n - i + 1){
nxt[i] = s[z[i] + 1];
f[i] = lcp(z[i] + 2, i + z[i] + 1, r[i] + 1, nxt[i]) + 1;
if(z[i] < i - 1) g[i] = lcp(z[i] + 2, i + z[i] + 1) + 1;
}
}
/*work 1*/
vector<int> p;
_rep(i, 2, n) p.pb(i);
sort(p.begin(), p.end(), [](int x, int y){return s[x] < s[y];});
res[1] = n;
_rep(i, 0, n - 2){
int j = i; ll tot = lcp(p[i] + 1, 2) + 1;
while(j < n - 2 && s[p[j + 1]] == s[p[i]]) j++, tot += lcp(p[j] + 1, 2) + 1;
tot += n;
if(s[p[i]] != s[1])
res[1] = max(res[1], tot);
i = j;
}
/*work 2~n*/
ll sum = 0, cnt = 0;
_rep(i, 2, n){
if(r[i] >= i) sum += r[i], cnt++, h[r[i]].pb(i);
pre[i] = sum - cnt * (i - 1);
for(auto &j : h[i]) sum -= i, cnt--;
}
_rep(i, 1, n) h[i].clear();
sum = cnt = 0;
_req(i, n, 2){
for(auto &j : h[i]) sum += i, cnt++;
suf[i] = sum - cnt * (i - 1);
if(z[i] < i) h[z[i]].pb(i);
if(z[i] >= i) sum += z[i], cnt++;
}
_rep(i, 1, n) h[i].clear();
_rep(i, 2, n){
v[r[i]].pb({nxt[i], f[i]});
}
_req(i, n, 2){
ll cur = ans;
cur -= pre[i];
cur -= suf[i];
sort(v[i - 1].begin(), v[i - 1].end());
int len = v[i - 1].size();
res[i] = max(res[i], cur);
_rep(j, 0, len - 1){
int k = j; ll tot = v[i - 1][j].se;
while(k < len - 1 && v[i - 1][k + 1].fi == v[i - 1][j].fi) k++, tot += v[i - 1][k].se;
if(v[i - 1][j].fi != s[i])
res[i] = max(res[i], cur + tot);
j = k;
}
if(z[i] < i - 1 && i + z[i] <= n) v[z[i]].pb({s[i + z[i]], g[i]});
}
ll t = 0;
_rep(i, 1, n){
t += (res[i] ^ i);
}
writeln(t);
clr();
}
return 0;
}
这程序好像有点Bug,我给组数据试试?
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 22052kb
input:
2 4 2 1 1 2 12 1 1 4 5 1 4 1 9 1 9 8 10
output:
15 217
result:
ok 2 lines
Test #2:
score: 0
Accepted
time: 15ms
memory: 26512kb
input:
10000 8 2 1 2 1 1 1 2 2 9 2 2 1 2 1 2 1 2 1 15 2 1 2 1 1 1 1 2 2 1 2 1 2 2 1 2 1 1 10 2 1 1 1 2 2 1 1 2 2 3 2 1 2 11 1 2 2 1 1 2 1 2 2 1 1 14 2 1 1 1 1 2 1 1 1 2 2 1 2 1 12 2 2 2 1 2 2 2 1 1 2 1 2 4 2 1 1 2 8 1 2 2 2 1 2 1 1 8 1 1 2 1 2 1 1 1 6 2 1 1 1 2 2 14 2 2 1 1 1 1 2 2 2 1 2 2 1 1 10 1 2 2 1 1...
output:
94 128 347 3 211 9 265 363 278 15 95 114 58 348 225 3 335 364 377 316 3 19 122 66 15 83 36 258 11 63 28 90 85 103 252 191 21 48 303 63 102 20 24 68 316 362 266 309 355 281 326 281 231 312 3 330 54 328 3 69 32 147 322 39 338 90 242 3 165 346 245 20 155 3 404 393 392 81 269 360 20 54 21 279 3 17 351 3...
result:
ok 10000 lines
Test #3:
score: 0
Accepted
time: 22ms
memory: 26468kb
input:
10000 17 1 2 2 2 2 2 2 2 1 1 2 2 1 2 1 2 2 17 2 1 1 1 1 2 2 2 1 1 1 1 1 2 2 2 2 13 2 2 2 1 2 2 2 2 1 1 1 1 1 12 2 2 1 2 1 2 2 1 1 1 1 1 13 2 2 2 1 1 1 1 2 2 2 2 1 1 20 2 1 2 2 1 2 2 2 2 2 2 1 2 2 2 2 1 2 1 1 13 1 2 1 2 2 2 1 2 1 2 1 1 1 20 2 1 1 2 2 1 2 2 1 1 2 1 2 2 2 2 2 1 2 2 12 2 1 2 1 1 2 2 1 2...
output:
392 434 308 252 302 895 343 867 282 249 717 194 252 350 230 427 439 279 340 384 380 292 218 312 271 810 275 211 460 388 365 342 773 203 238 857 720 497 514 443 618 777 372 242 337 232 324 837 289 480 366 681 358 281 320 529 451 309 250 326 315 744 307 841 133 214 411 788 332 365 488 157 760 278 421 ...
result:
ok 10000 lines
Test #4:
score: 0
Accepted
time: 24ms
memory: 26628kb
input:
10000 10 3 3 1 2 2 3 3 3 2 3 13 1 2 1 2 1 1 3 1 2 2 1 3 1 14 1 2 1 2 3 3 2 3 1 2 2 2 3 3 10 1 1 1 1 1 1 3 2 1 2 19 1 3 3 3 1 3 3 2 1 1 1 3 2 2 1 2 1 3 2 12 1 3 1 3 1 1 3 2 3 3 2 3 11 1 1 1 2 2 3 1 1 3 1 1 12 3 2 2 1 3 3 2 1 1 3 3 2 11 2 2 3 2 3 1 3 1 2 1 1 20 3 1 2 2 3 1 3 3 1 3 3 2 3 3 3 2 3 1 1 2 ...
output:
191 285 325 207 420 281 215 280 151 754 365 199 94 418 318 377 414 285 373 362 111 358 332 117 185 326 89 404 229 386 307 285 421 232 321 329 506 372 386 364 153 582 313 356 152 129 424 366 382 280 363 370 273 294 388 389 807 388 459 280 114 310 211 368 150 166 793 211 793 393 102 427 399 408 584 38...
result:
ok 10000 lines
Test #5:
score: 0
Accepted
time: 19ms
memory: 22280kb
input:
10000 14 9 9 13 6 3 8 7 10 5 9 14 2 12 5 15 9 12 2 2 8 4 2 11 4 4 8 3 8 13 15 19 5 7 1 2 9 2 16 9 15 8 19 9 3 18 8 8 1 12 6 14 9 8 2 11 7 2 12 5 14 14 10 5 7 2 11 4 4 2 9 9 11 10 3 3 2 2 14 8 2 9 10 10 11 6 9 12 5 5 4 9 2 20 4 5 3 13 15 18 12 6 2 8 11 12 6 10 14 14 10 14 13 12 14 11 9 7 5 12 12 5 3 ...
output:
307 362 380 107 97 137 380 108 135 299 312 265 99 362 379 361 332 380 129 367 97 380 97 107 363 107 132 367 97 88 363 314 100 382 354 349 383 95 359 306 340 133 382 106 395 361 374 105 292 385 360 359 365 381 378 107 374 111 357 105 365 319 379 102 364 89 107 374 128 101 360 115 363 107 106 116 92 3...
result:
ok 10000 lines
Test #6:
score: 0
Accepted
time: 26ms
memory: 22468kb
input:
1331 128 1 1 2 1 1 1 1 1 1 1 1 1 1 2 2 2 1 1 2 1 2 2 1 1 2 1 2 1 2 1 2 2 1 2 1 2 2 2 1 2 1 2 2 2 2 2 1 2 1 2 2 1 1 2 2 1 1 1 1 2 2 1 1 2 1 1 1 1 1 2 1 1 1 1 1 1 1 2 2 2 2 2 1 2 1 2 1 2 2 1 1 2 1 1 2 2 2 1 1 2 2 2 1 2 2 2 1 2 1 1 1 2 2 1 1 1 2 1 1 1 1 1 1 1 2 2 2 2 115 1 2 2 1 2 2 1 2 2 1 2 1 2 2 2 1...
output:
41073 22779 19964 77764 77960 62759 68522 21651 24781 42049 74437 19840 74378 68878 20605 34809 20231 20004 50820 29156 52217 53156 23540 67367 57400 46500 19870 60423 66032 51371 59540 51300 48277 22751 77712 65779 21946 37124 65635 40091 27911 55656 54005 18564 25013 64077 46260 21753 62329 69899 ...
result:
ok 1331 lines
Test #7:
score: 0
Accepted
time: 26ms
memory: 27084kb
input:
131 1471 2 3 2 3 1 2 2 1 1 1 1 2 1 3 2 1 1 1 2 2 2 2 2 2 3 1 3 2 1 2 3 2 3 1 3 1 2 1 3 1 3 1 3 2 2 1 3 3 3 1 1 1 3 2 2 2 1 2 1 3 1 3 3 1 2 2 1 2 3 1 3 1 3 3 2 1 3 3 2 3 2 2 2 1 3 2 1 2 2 1 3 1 1 3 2 3 1 1 2 1 2 3 2 1 3 3 2 2 2 2 1 1 1 2 3 1 1 3 3 2 3 2 1 3 1 3 3 2 2 1 2 1 1 2 1 3 2 1 2 2 3 2 2 1 1 3...
output:
4103972 1822893 4056671 4581950 1797128 5452459 5578024 6135700 4325429 1769997 1239977 1589696 5346072 1818448 5380837 3882106 3814365 1823901 4911982 5946018 5208392 4261893 1767953 5781183 4624024 1795249 1600563 1677098 4679442 4113663 1685240 1576241 5128042 1618422 4440641 4326472 5703872 3748...
result:
ok 131 lines
Test #8:
score: 0
Accepted
time: 30ms
memory: 22372kb
input:
131 1104 15 10 15 18 8 16 25 26 11 19 4 5 9 15 20 8 8 1 5 12 6 15 15 9 19 6 20 8 9 10 12 1 7 26 9 15 26 14 18 24 25 4 9 20 16 18 25 10 8 2 15 14 26 19 22 17 8 7 23 19 22 26 23 4 26 8 16 6 19 5 17 4 9 25 7 14 19 26 9 21 23 7 20 2 12 22 23 24 20 11 23 23 7 13 6 26 25 10 8 17 23 15 14 20 16 7 21 8 11 1...
output:
1585911 1671116 2074604 2071604 2066710 1571959 1699180 1597972 1573443 2062834 1968749 1670339 1696389 1700722 1574014 1673122 6093159 1965764 1966052 2084891 1597710 1989656 2054890 1659456 1601397 1982947 1675608 2075393 1694022 1992153 6012239 1675824 1987812 1589514 2063346 1986943 1571712 1671...
result:
ok 131 lines
Test #9:
score: 0
Accepted
time: 36ms
memory: 30452kb
input:
14 554 232 178 169 417 93 38 93 537 212 211 313 227 432 269 475 489 459 286 318 534 118 160 223 534 275 382 482 331 3 279 73 513 403 277 34 497 462 397 280 218 395 498 201 548 8 520 495 397 545 528 401 58 418 3 494 260 251 496 212 552 243 151 78 385 441 73 271 337 283 39 162 1 501 357 126 452 416 34...
output:
394027 127388087 408947528 132597056 403149770 403022905 410881136 404226176 134192573 106965642 108543004 108541542 109002658 408924618
result:
ok 14 lines
Test #10:
score: 0
Accepted
time: 80ms
memory: 57724kb
input:
1 200000 86045 57533 29508 181370 17680 186294 134595 82393 109229 189798 133533 194579 11412 112604 572 32659 76824 177596 106427 60375 98302 93821 34541 125615 108609 22507 166292 195457 151376 54630 166314 85832 192590 85410 149595 46737 54738 198246 56457 189628 135013 63949 28359 65601 162502 4...
output:
32219923494
result:
ok single line: '32219923494'
Test #11:
score: 0
Accepted
time: 38ms
memory: 28144kb
input:
14 11651 1 2 2 1 2 1 1 2 2 1 1 2 1 2 2 1 2 1 1 2 1 2 2 1 1 2 2 1 2 1 1 2 2 1 1 2 1 2 2 1 1 2 2 1 2 1 1 2 1 2 2 1 2 1 1 2 2 1 1 2 1 2 2 1 2 1 1 2 1 2 2 1 1 2 2 1 2 1 1 2 1 2 2 1 2 1 1 2 2 1 1 2 1 2 2 1 1 2 2 1 2 1 1 2 2 1 1 2 1 2 2 1 2 1 1 2 1 2 2 1 1 2 2 1 2 1 1 2 2 1 1 2 1 2 2 1 1 2 2 1 2 1 1 2 1 2...
output:
638847269 762853260 1772624286 1459420676 912238973 902965748 1461240613 1591772671 978996498 1450864204 913255377 276655999 898402422 1129219843
result:
ok 14 lines
Test #12:
score: 0
Accepted
time: 93ms
memory: 62172kb
input:
1 200000 1 2 2 1 2 1 1 2 2 1 1 2 1 2 2 1 2 1 1 2 1 2 2 1 1 2 2 1 2 1 1 2 2 1 1 2 1 2 2 1 1 2 2 1 2 1 1 2 1 2 2 1 2 1 1 2 2 1 1 2 1 2 2 1 2 1 1 2 1 2 2 1 1 2 2 1 2 1 1 2 1 2 2 1 2 1 1 2 2 1 1 2 1 2 2 1 1 2 2 1 2 1 1 2 2 1 1 2 1 2 2 1 2 1 1 2 1 2 2 1 1 2 2 1 2 1 1 2 2 1 1 2 1 2 2 1 1 2 2 1 2 1 1 2 1 2...
output:
241162217617
result:
ok single line: '241162217617'
Test #13:
score: 0
Accepted
time: 84ms
memory: 62380kb
input:
1 200000 1 2 3 2 3 1 3 1 2 2 3 1 3 1 2 1 2 3 3 1 2 1 2 3 2 3 1 2 3 1 3 1 2 1 2 3 3 1 2 1 2 3 2 3 1 1 2 3 2 3 1 3 1 2 3 1 2 1 2 3 2 3 1 1 2 3 2 3 1 3 1 2 2 3 1 3 1 2 1 2 3 2 3 1 3 1 2 1 2 3 3 1 2 1 2 3 2 3 1 1 2 3 2 3 1 3 1 2 3 1 2 1 2 3 2 3 1 1 2 3 2 3 1 3 1 2 2 3 1 3 1 2 1 2 3 1 2 3 2 3 1 3 1 2 2 3...
output:
179830061352
result:
ok single line: '179830061352'
Test #14:
score: 0
Accepted
time: 69ms
memory: 52756kb
input:
2 147441 101973 109734 101973 101973 109734 101973 109734 101973 101973 109734 101973 101973 109734 101973 109734 101973 101973 109734 101973 109734 101973 101973 109734 101973 101973 109734 101973 109734 101973 101973 109734 101973 101973 109734 101973 109734 101973 101973 109734 101973 109734 1019...
output:
319151712710 36323502547
result:
ok 2 lines
Test #15:
score: 0
Accepted
time: 98ms
memory: 61924kb
input:
1 200000 90579 86359 90579 90579 86359 90579 86359 90579 90579 86359 90579 90579 86359 90579 86359 90579 90579 86359 90579 86359 90579 90579 86359 90579 90579 86359 90579 86359 90579 90579 86359 90579 90579 86359 90579 86359 90579 90579 86359 90579 86359 90579 90579 86359 90579 90579 86359 90579 863...
output:
605969434886
result:
ok single line: '605969434886'
Test #16:
score: 0
Accepted
time: 68ms
memory: 61844kb
input:
1 200000 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 2 1 1 2 1...
output:
142983226845641
result:
ok single line: '142983226845641'
Test #17:
score: 0
Accepted
time: 63ms
memory: 62964kb
input:
1 200000 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1 2...
output:
666704973725917
result:
ok single line: '666704973725917'
Test #18:
score: 0
Accepted
time: 61ms
memory: 57848kb
input:
1 200000 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 23 24 ...
output:
1000022503780497
result:
ok single line: '1000022503780497'
Test #19:
score: 0
Accepted
time: 33ms
memory: 27708kb
input:
15 13418 7463 7463 7463 7463 9685 7463 1028 1028 9685 7463 9685 9685 7463 9685 7463 9685 9685 7463 7463 9685 7463 7463 7463 9685 7606 9685 1028 1028 9685 9685 9685 7463 1028 9685 9685 9685 9685 7463 3766 3766 7463 9685 9685 7132 7132 9685 1028 7463 3766 1028 7463 1028 9685 9685 1028 3766 9685 9685 3...
output:
310854214 1449822 411519250 114103279 422847646 111080594 345051865 115761752 373321070 416817676 270343906 133687081 436456350 116337980 244991146
result:
ok 15 lines
Test #20:
score: 0
Accepted
time: 39ms
memory: 30760kb
input:
13 14791 2035 8168 8168 2035 2035 2035 8168 2035 2035 8168 2035 2035 2035 2035 2035 2035 2035 2035 2035 8168 2035 2035 2035 2035 2035 2035 2035 2035 2035 8168 2035 2035 2035 2035 2035 2035 2035 2035 2035 8168 2035 2035 8168 2035 2812 2035 8168 2035 8168 2035 8168 2035 2035 8168 8168 9546 2035 2035 2...
output:
371530128 851134952 1442447610 1086437389 1314950262 1069313993 1418963743 58759634 413581446 389752815 405059048 222613748 292855398
result:
ok 13 lines
Test #21:
score: 0
Accepted
time: 42ms
memory: 32488kb
input:
15 12956 1461 1461 1461 1461 1461 1461 12553 1461 1461 1461 1461 1461 1461 1461 1461 1461 1461 1461 1461 1461 1461 1461 1461 1461 1461 1461 1461 1461 1461 1461 1461 1461 1461 1461 1461 1461 12553 1461 1461 1461 1461 1461 1461 1461 1461 1461 1461 1461 1461 1461 1461 1461 1461 1461 12553 1461 1461 146...
output:
949186410 1955289437 1313255408 642243147 6111494 1702549476 1650717366 1049298027 1087170445 1259299037 3413417858 1529936217 776579634 1552800994 1881266475
result:
ok 15 lines
Test #22:
score: 0
Accepted
time: 40ms
memory: 31932kb
input:
15 14395 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 13111 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 12206 122...
output:
2957212969 1012208565 4531357191 3436243590 1743046033 9523735 500043796 2288646068 1429987616 2528370581 2183643497 375636659 2556639949 4614333790 7205785399
result:
ok 15 lines
Test #23:
score: 0
Accepted
time: 103ms
memory: 63364kb
input:
1 200000 70309 96346 70309 70309 70309 92160 96346 70309 70309 96346 92160 70309 171045 70309 96346 96346 92160 96346 96346 190333 190333 70309 96346 127508 96346 92160 92160 70309 70309 70309 70309 92160 92160 70309 70309 70309 70309 127508 70309 92160 92160 70309 70309 70309 125471 96346 127508 12...
output:
118752316928
result:
ok single line: '118752316928'
Test #24:
score: 0
Accepted
time: 71ms
memory: 60428kb
input:
1 200000 94840 94840 94840 94840 94840 94840 94840 94840 61989 61989 94840 94840 94840 94840 94840 94840 94840 61989 61989 61989 94840 94840 94840 61989 94840 94840 137895 94840 94840 137895 94840 61989 94840 94840 94840 94840 137895 94840 94840 94840 94840 94840 94840 61989 94840 61989 94840 94840 ...
output:
181441989888
result:
ok single line: '181441989888'
Test #25:
score: 0
Accepted
time: 75ms
memory: 60244kb
input:
1 200000 127581 127581 127581 127581 127581 127581 127581 127581 127581 127581 127581 127581 127581 127581 127581 127581 127581 127581 106778 127581 127581 126279 127581 127581 127581 127581 127581 127581 127581 127581 127581 127581 127581 106778 127581 127581 127581 127581 127581 127581 127581 1275...
output:
342833548104
result:
ok single line: '342833548104'
Test #26:
score: 0
Accepted
time: 67ms
memory: 54108kb
input:
1 200000 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 108121 1081...
output:
324538309517137
result:
ok single line: '324538309517137'
Test #27:
score: 0
Accepted
time: 37ms
memory: 29280kb
input:
15 10201 9678 6735 9678 7129 9678 6735 9678 7129 9678 6735 9678 7129 9678 6735 9678 7129 9678 6735 9678 7129 9678 6735 9678 7129 9678 6735 9678 7129 9678 6735 9678 7129 9678 6735 9678 7129 9678 6735 9678 7129 9678 6735 9678 7129 9678 6735 9678 7129 9678 6735 9678 7129 9678 6735 9678 7129 9678 6735 9...
output:
66439462066 251506268492 47876221702 360857682629 170540379619 372628422983 120664261073 90488919597 131928493181 245296890810 147831394137 71074052989 200069312998 99252210523 114381508405
result:
ok 15 lines
Test #28:
score: 0
Accepted
time: 42ms
memory: 32660kb
input:
14 16198 7198 10333 7198 8585 7198 10333 7198 11443 7198 10333 7198 8585 7198 10333 7198 7479 7198 10333 7198 8585 7198 10333 7198 11443 7198 10333 7198 8585 7198 10333 7198 15505 7198 10333 7198 8585 7198 10333 7198 11443 7198 10333 7198 8585 7198 10333 7198 7479 7198 10333 7198 8585 7198 10333 719...
output:
33797343297 22554529801 20751677835 62270648577 32014149216 12021999751 12471359017 41454739199 39883 8044814272 40206190585 57228063674 55271122747 21989607289
result:
ok 14 lines
Test #29:
score: 0
Accepted
time: 42ms
memory: 32020kb
input:
15 10719 3676 2811 3676 4133 3676 2811 3676 9001 3676 2811 3676 4133 3676 2811 3676 9153 3676 2811 3676 4133 3676 2811 3676 9001 3676 2811 3676 4133 3676 2811 3676 3616 3676 2811 3676 4133 3676 2811 3676 9001 3676 2811 3676 4133 3676 2811 3676 9153 3676 2811 3676 4133 3676 2811 3676 9001 3676 2811 3...
output:
839203489 1583465103 1267108649 1161524911 983492553 1703733329 2346605125 1321148771 2395175732 1794419616 9621305 1338471889 2718202141 2229391426 2130319327
result:
ok 15 lines
Test #30:
score: 0
Accepted
time: 60ms
memory: 58496kb
input:
1 200000 55062 146800 55062 146800 55062 146800 55062 146800 55062 146800 55062 146800 55062 146800 55062 146800 55062 146800 55062 146800 55062 146800 55062 146800 55062 146800 55062 146800 55062 146800 55062 146800 55062 146800 55062 146800 55062 146800 55062 146800 55062 146800 55062 146800 55062...
output:
1000022503780497
result:
ok single line: '1000022503780497'
Test #31:
score: 0
Accepted
time: 64ms
memory: 60580kb
input:
1 200000 72765 178599 72765 75116 72765 178599 72765 75116 72765 178599 72765 75116 72765 178599 72765 75116 72765 178599 72765 75116 72765 178599 72765 75116 72765 178599 72765 75116 72765 178599 72765 75116 72765 178599 72765 75116 72765 178599 72765 75116 72765 178599 72765 75116 72765 178599 727...
output:
500036262654563
result:
ok single line: '500036262654563'
Test #32:
score: 0
Accepted
time: 87ms
memory: 60736kb
input:
1 200000 27791 128643 27791 193841 27791 128643 27791 133709 27791 128643 27791 193841 27791 128643 27791 119129 27791 128643 27791 193841 27791 128643 27791 133709 27791 128643 27791 193841 27791 128643 27791 50096 27791 128643 27791 193841 27791 128643 27791 133709 27791 128643 27791 193841 27791 ...
output:
2142743374731
result:
ok single line: '2142743374731'
Test #33:
score: 0
Accepted
time: 94ms
memory: 60772kb
input:
1 200000 5270 20262 5270 159584 5270 20262 5270 79361 5270 20262 5270 159584 5270 20262 5270 85380 5270 20262 5270 159584 5270 20262 5270 79361 5270 20262 5270 159584 5270 20262 5270 88540 5270 20262 5270 159584 5270 20262 5270 79361 5270 20262 5270 159584 5270 20262 5270 85380 5270 20262 5270 15958...
output:
333618035630
result:
ok single line: '333618035630'
Test #34:
score: 0
Accepted
time: 26ms
memory: 34252kb
input:
1 65535 3747 3747 3747 10894 3747 3747 3747 10894 3747 3747 3747 10894 3747 3747 3747 26741 3747 3747 3747 10894 3747 3747 3747 10894 3747 3747 3747 10894 3747 3747 3747 26741 3747 3747 3747 10894 3747 3747 3747 10894 3747 3747 3747 10894 3747 3747 3747 26741 3747 3747 3747 10894 3747 3747 3747 1089...
output:
47438786836
result:
ok single line: '47438786836'
Test #35:
score: 0
Accepted
time: 8ms
memory: 29692kb
input:
1 35279 8061 20053 8061 20053 8061 7600 8061 20053 8061 20053 8061 7600 8061 20053 8061 20053 8061 7600 8061 20053 8061 20053 8061 3625 8061 20053 8061 20053 8061 7600 8061 20053 8061 20053 8061 7600 8061 20053 8061 20053 8061 7600 8061 20053 8061 20053 8061 3625 8061 20053 8061 20053 8061 7600 8061...
output:
14553907525
result:
ok single line: '14553907525'
Test #36:
score: 0
Accepted
time: 15ms
memory: 36268kb
input:
1 46655 16305 16305 16305 16305 16305 25259 16305 16305 16305 16305 16305 25259 16305 16305 16305 16305 16305 25259 16305 16305 16305 16305 16305 25259 16305 16305 16305 16305 16305 25259 16305 16305 16305 16305 16305 44685 16305 16305 16305 16305 16305 25259 16305 16305 16305 16305 16305 25259 1630...
output:
29457295223
result:
ok single line: '29457295223'
Test #37:
score: 0
Accepted
time: 0ms
memory: 22064kb
input:
1 446 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 276 27...
output:
22257618
result:
ok single line: '22257618'
Test #38:
score: 0
Accepted
time: 32ms
memory: 38716kb
input:
1 88199 42997 42997 42997 42997 17665 42997 42997 42997 42997 17665 42997 42997 42997 42997 17665 42997 42997 42997 42997 17665 42997 42997 42997 42997 17665 42997 42997 42997 42997 17665 42997 42997 42997 42997 2010 42997 42997 42997 42997 17665 42997 42997 42997 42997 17665 42997 42997 42997 42997...
output:
109207566120
result:
ok single line: '109207566120'
Test #39:
score: 0
Accepted
time: 30ms
memory: 41256kb
input:
1 89999 85746 85746 17901 85746 85746 82896 85746 85746 17901 85746 85746 82896 85746 85746 17901 85746 85746 82896 85746 85746 17901 85746 85746 82896 85746 85746 17901 85746 85746 82896 85746 85746 17901 85746 85746 82896 85746 85746 17901 85746 85746 82896 85746 85746 17901 85746 85746 82896 8574...
output:
30384952146665
result:
ok single line: '30384952146665'
Test #40:
score: 0
Accepted
time: 26ms
memory: 37068kb
input:
1 79999 36820 52225 36820 52225 36820 52225 36820 52225 36820 52225 36820 52225 36820 52225 36820 52225 36820 52225 36820 52225 36820 52225 36820 52225 36820 52225 36820 52225 36820 52225 36820 52225 36820 52225 36820 52225 36820 52225 36820 52225 36820 52225 36820 52225 36820 52225 36820 52225 3682...
output:
45337130318924
result:
ok single line: '45337130318924'
Test #41:
score: 0
Accepted
time: 0ms
memory: 24900kb
input:
1 8199 2353 1489 2353 1489 2353 1489 2353 1489 2353 1489 2353 1489 2353 1489 2353 1489 2353 1489 2353 1489 2353 1489 2353 1489 2353 1489 2353 1489 2353 1489 2353 1489 2353 1489 2353 1489 2353 1489 2353 1489 2353 1489 2353 1489 2353 1489 2353 1489 2353 1489 2353 1489 2353 1489 2353 1489 2353 1489 235...
output:
68933371983
result:
ok single line: '68933371983'
Test #42:
score: 0
Accepted
time: 11ms
memory: 29928kb
input:
1 19999 17486 17486 17486 17486 17486 17486 17486 17486 17486 13014 17486 17486 17486 17486 17486 17486 17486 17486 17486 13014 17486 17486 17486 17486 17486 17486 17486 17486 17486 13014 17486 17486 17486 17486 17486 17486 17486 17486 17486 13014 17486 17486 17486 17486 17486 17486 17486 17486 1748...
output:
5406246293
result:
ok single line: '5406246293'
Test #43:
score: 0
Accepted
time: 52ms
memory: 56788kb
input:
1 200000 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 60522 605...
output:
750042248291481
result:
ok single line: '750042248291481'
Extra Test:
score: 0
Extra Test Passed