QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#300150 | #6737. Neighbourhood | hos_lyric | AC ✓ | 6073ms | 299352kb | C++14 | 8.4kb | 2024-01-07 19:12:43 | 2024-01-07 19:12:43 |
Judging History
answer
#include <cassert>
#include <cmath>
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <functional>
#include <iostream>
#include <limits>
#include <map>
#include <numeric>
#include <queue>
#include <random>
#include <set>
#include <sstream>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>
using namespace std;
using Int = long long;
template <class T1, class T2> ostream &operator<<(ostream &os, const pair<T1, T2> &a) { return os << "(" << a.first << ", " << a.second << ")"; };
template <class T> ostream &operator<<(ostream &os, const vector<T> &as) { const int sz = as.size(); os << "["; for (int i = 0; i < sz; ++i) { if (i >= 256) { os << ", ..."; break; } if (i > 0) { os << ", "; } os << as[i]; } return os << "]"; }
template <class T> void pv(T a, T b) { for (T i = a; i != b; ++i) cerr << *i << " "; cerr << endl; }
template <class T> bool chmin(T &t, const T &f) { if (t > f) { t = f; return true; } return false; }
template <class T> bool chmax(T &t, const T &f) { if (t < f) { t = f; return true; } return false; }
#define COLOR(s) ("\x1b[" s "m")
// get i
// add val to [a, b)
// count < val in [a, b)
// O(sqrt(n) log(n)) per query
template <class T> struct RangeAddRangeCount {
int n, l, m;
vector<T> ts, offset, sorted;
RangeAddRangeCount() {}
RangeAddRangeCount(const vector<T> &ts_) : ts(ts_) {
n = ts.size();
m = max<int>(sqrt(n), 1);
l = n / m;
offset.assign(l + 1, 0);
sorted.resize(l * m);
for (int x = 0; x < l; ++x) build(x);
}
void build(int x) {
assert(0 <= x); assert(x < l);
std::copy(ts.begin() + (x * m), ts.begin() + ((x + 1) * m), sorted.begin() + (x * m));
std::sort(sorted.begin() + (x * m), sorted.begin() + ((x + 1) * m));
}
T operator[](int i) const {
assert(0 <= i); assert(i < n);
return offset[i / m] + ts[i];
}
void add(int a, int b, T val) {
assert(0 <= a); assert(a <= b); assert(b <= n);
const int xA = (a + m - 1) / m;
const int xB = b / m;
if (xA <= xB) {
for (int i = xA * m; --i >= a; ) ts[i] += val;
if (xA > 0) build(xA - 1);
for (int x = xA; x < xB; ++x) offset[x] += val;
for (int i = xB * m; i < b; ++i) ts[i] += val;
if (xB < l) build(xB);
} else {
for (int i = a; i < b; ++i) ts[i] += val;
if (xB < l) build(xB);
}
}
int count(int a, int b, T val) const {
assert(0 <= a); assert(a <= b); assert(b <= n);
const int xA = (a + m - 1) / m;
const int xB = b / m;
int cnt = 0;
if (xA <= xB) {
for (int i = xA * m; --i >= a; ) if (offset[xA - 1] + ts[i] < val) ++cnt;
for (int x = xA; x < xB; ++x) {
cnt += (lower_bound(sorted.begin() + (x * m), sorted.begin() + ((x + 1) * m), val - offset[x]) - (sorted.begin() + (x * m)));
}
for (int i = xB * m; i < b; ++i) if (offset[xB] + ts[i] < val) ++cnt;
} else {
for (int i = a; i < b; ++i) if (offset[xB] + ts[i] < val) ++cnt;
}
return cnt;
}
};
////////////////////////////////////////////////////////////////////////////////
int N;
vector<int> A, B;
vector<Int> C;
vector<vector<int>> G;
vector<int> sz, del;
void dfsSz(int u, int p) {
sz[u] = 1;
for (const int i : G[u]) {
const int v = A[i] ^ B[i] ^ u;
if (p != v) {
dfsSz(v, u);
sz[u] += sz[v];
}
}
}
string dfsString(int u, int p) {
ostringstream oss;
oss << "[" << u;
for (const int i : G[u]) {
const int v = A[i] ^ B[i] ^ u;
if (!del[v] && p != v) {
oss << " " << dfsString(v, u);
}
}
oss << "]";
return oss.str();
}
/// vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
// initial
vector<vector<Int>> css;
// [r][j] -> [*, *)
vector<vector<pair<int, int>>> pss;
// vertex -> ((r, (j, dis)))
vector<vector<pair<int, pair<int, int>>>> V;
// edge -> ((r, [*, *)))
vector<vector<pair<int, pair<int, int>>>> E;
int zeit;
void dfs(int r, int j, int u, int p, Int c) {
css[r].push_back(c);
V[u].emplace_back(r, make_pair(j, zeit));
++zeit;
for (const int i : G[u]) {
const int v = A[i] ^ B[i] ^ u;
if (!del[v] && p != v) {
const int lb = zeit;
dfs(r, j, v, u, c + C[i]);
const int ub = zeit;
E[i].emplace_back(r, make_pair(lb, ub));
}
}
}
/// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
void solveSubtree(int depth, int r) {
#ifdef LOCAL
cerr << string(2 * depth, ' ') << "solveSubtree " << dfsString(r, -1) << endl;
#endif
vector<int> is, vs;
for (const int i : G[r]) {
const int v = A[i] ^ B[i] ^ r;
if (!del[v]) {
is.push_back(i);
vs.push_back(v);
}
}
const int len = vs.size();
/// vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
css[r].push_back(0);
pss[r].resize(len);
zeit = 0;
V[r].emplace_back(r, make_pair(-1, zeit));
++zeit;
for (int j = 0; j < len; ++j) {
const int i = is[j], v = vs[j];
const int lb = zeit;
dfs(r, j, v, r, C[i]);
const int ub = zeit;
pss[r][j] = make_pair(lb, ub);
E[i].emplace_back(r, make_pair(lb, ub));
}
/// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
}
void solveRec(int depth, int u) {
for (; ; ) {
int vm = -1;
for (const int i : G[u]) {
const int v = A[i] ^ B[i] ^ u;
if (!del[v]) {
if (!~vm || sz[vm] < sz[v]) {
vm = v;
}
}
}
if (!~vm || 2 * sz[vm] <= sz[u]) {
solveSubtree(depth, u);
del[u] = 1;
for (const int i : G[u]) {
const int v = A[i] ^ B[i] ^ u;
if (!del[v]) {
solveRec(depth + 1, v);
}
}
break;
} else {
sz[u] -= sz[vm];
sz[vm] += sz[u];
u = vm;
}
}
}
void centroidDecomp() {
sz.assign(N, 0);
dfsSz(0, -1);
del.assign(N, 0);
css.assign(N, {});
pss.assign(N, {});
V.assign(N, {});
E.assign(N - 1, {});
solveRec(0, 0);
}
int main() {
int Q;
for (; ~scanf("%d%d", &N, &Q); ) {
A.resize(N - 1);
B.resize(N - 1);
C.resize(N - 1);
for (int i = 0; i < N - 1; ++i) {
scanf("%d%d%lld", &A[i], &B[i], &C[i]);
--A[i];
--B[i];
}
G.assign(N, {});
for (int i = 0; i < N - 1; ++i) {
G[A[i]].push_back(i);
G[B[i]].push_back(i);
}
centroidDecomp();
/*
cerr<<"css = "<<css<<endl;
cerr<<"pss = "<<pss<<endl;
cerr<<"V = "<<V<<endl;
cerr<<"E = "<<E<<endl;
*/
vector<RangeAddRangeCount<Int>> fs(N);
for (int u = 0; u < N; ++u) {
fs[u] = RangeAddRangeCount<Int>(css[u]);
}
for (; Q--; ) {
int O;
scanf("%d", &O);
if (O == 1) {
int I;
Int CC;
scanf("%d%lld", &I, &CC);
--I;
// cerr<<COLOR("33")<<"change "<<I<<" "<<C<<COLOR()<<endl;
const Int dC = CC - C[I];
C[I] = CC;
for (const auto &e : E[I]) {
fs[e.first].add(e.second.first, e.second.second, dC);
}
} else {
int U;
Int D;
scanf("%d%lld", &U, &D);
--U;
// cerr<<COLOR("93")<<"count "<<U<<" "<<D<<COLOR()<<endl;
int ans = 0;
for (const auto &e : V[U]) {
const int r = e.first;
const int j = e.second.first;
const int pos = e.second.second;
const Int c = fs[r][pos];
if (D >= c) {
int here = 0;
here += fs[r].count(0, fs[r].n, D - c + 1);
if (~j) here -= fs[r].count(pss[r][j].first, pss[r][j].second, D - c + 1);
ans += here;
}
}
printf("%d\n", ans);
#ifdef LOCAL
constexpr Int INF=1001001001001001001LL;
vector<vector<Int>>d(N,vector<Int>(N,INF));
for(int u=0;u<N;++u)d[u][u]=0;
for(int i=0;i<N-1;++i)d[A[i]][B[i]]=d[B[i]][A[i]]=C[i];
for(int w=0;w<N;++w)for(int u=0;u<N;++u)for(int v=0;v<N;++v)chmin(d[u][v],d[u][w]+d[w][v]);
int brt=0;
for(int u=0;u<N;++u)if(d[U][u]<=D)++brt;
if(brt!=ans){
cerr<<"N = "<<N<<endl;
cerr<<"A = "<<A<<endl;
cerr<<"B = "<<B<<endl;
cerr<<"C = "<<C<<endl;
cerr<<"d["<<U<<"] = "<<d[U]<<endl;
cerr<<"brt = "<<brt<<endl;
cerr<<"ans = "<<ans<<endl;
}
assert(brt==ans);
#endif
}
}
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3808kb
input:
3 7 1 2 3 2 3 1 2 2 1 2 1 3 2 3 4 1 1 1 2 2 1 2 1 0 2 3 1
output:
2 2 3 3 1 2
result:
ok 6 numbers
Test #2:
score: 0
Accepted
time: 3011ms
memory: 299016kb
input:
200000 200000 1 2 146181238 2 3 45037818 3 4 176924060 4 5 969365276 5 6 683948619 6 7 356268194 7 8 871634797 8 9 630254480 9 10 283061123 10 11 204904965 11 12 838381393 12 13 516373812 13 14 253862710 14 15 223572474 15 16 114452997 16 17 145251056 17 18 905638436 18 19 375445402 19 20 549829545 ...
output:
219 62303 1358 5532 65345 682 11856 120285 4980 5689 2998 2314 18102 8014 20512 2827 113022 74534 159775 14517 17961 21855 8138 265 3336 3251 7023 35187 4932 151611 14338 101 899 117 64441 888 10380 1833 29381 1014 4806 10770 23734 236 37258 2280 14550 2196 38205 80950 80839 4517 74570 13972 95914 7...
result:
ok 99572 numbers
Test #3:
score: 0
Accepted
time: 2914ms
memory: 299352kb
input:
200000 200000 1 2 656062236 2 3 261234277 3 4 723980474 4 5 755233101 5 6 542749909 6 7 9519713 7 8 878661582 8 9 402365775 9 10 9875710 10 11 894863180 11 12 4247155 12 13 287336772 13 14 76881950 14 15 132946165 15 16 174895351 16 17 93681141 17 18 504958771 18 19 372774409 19 20 406716610 20 21 2...
output:
60189 5717 13802 2030 71980 20394 75205 11241 1388 104056 11760 588 4319 49744 8187 29084 507 39561 2286 3138 42602 77393 15811 5709 15417 48109 9596 846 16875 27181 52 11525 5741 2476 34614 4877 24002 85119 171 246 19408 89 806 42261 25552 865 158 70 3444 25736 60977 4454 11905 126842 35189 3858 15...
result:
ok 180067 numbers
Test #4:
score: 0
Accepted
time: 2951ms
memory: 298948kb
input:
200000 200000 1 2 111377160 2 3 892685763 3 4 889507841 4 5 901236774 5 6 834278466 6 7 298553149 7 8 8150218 8 9 390360541 9 10 621635057 10 11 699702261 11 12 606252166 12 13 657657482 13 14 274827098 14 15 206330963 15 16 546124412 16 17 888769586 17 18 921510546 18 19 117645637 19 20 919234429 2...
output:
171 20066 102752 6642 68416 1708 644 62536 7246 7441 3463 13905 613 38743 54559 8959 4615 103272 40246 26304 149 44249 212 123 34390 82218 521 85028 17557 1014 17048 2759 3173 5518 3043 1266 22438 83793 218 27248 24662 134581 9800 16393 39893 727 13548 3 2669 26080 573 411 9172 3642 2111 19478 563 4...
result:
ok 20072 numbers
Test #5:
score: 0
Accepted
time: 4860ms
memory: 193240kb
input:
200000 200000 1 2 657504560 1 3 539914646 2 4 617534421 2 5 145385645 4 6 11287875 4 7 472341345 1 8 114534025 4 9 940656797 5 10 806152132 3 11 623707008 2 12 841303670 10 13 804880741 1 14 35219013 12 15 924229426 2 16 834808041 5 17 118952529 1 18 561626985 9 19 884416843 10 20 604788348 18 21 11...
output:
605 131 199697 199999 34 3 36514 256 21 2 261 181731 199877 199991 3229 6 122767 4374 200000 53327 40 4 7858 175711 200000 132026 169165 72 112 120267 171500 1 95691 36697 199851 200000 6940 662 200000 1 1168 2 200000 19 16 211 9 11 196444 85 42751 200000 11 200000 115222 28279 177665 691 127 197292...
result:
ok 100112 numbers
Test #6:
score: 0
Accepted
time: 1923ms
memory: 99248kb
input:
200000 200000 1 2 525193329 1 3 693042313 1 4 194485999 1 5 319160289 1 6 925926764 1 7 592828271 1 8 262594959 1 9 60806042 1 10 704487773 1 11 963570483 1 12 71530643 1 13 66914391 1 14 933028716 1 15 678371635 1 16 714555824 1 17 507124524 1 18 160041085 1 19 769379790 1 20 938594863 1 21 2405638...
output:
85288 1 28130 1 170364 1 5907 1 71883 1 184882 1 1 1 70569 200000 128205 44921 20408 1 82605 17646 1 1 1 1 22715 1 145387 1 161039 175478 1 200000 105070 1 19679 134568 200000 29028 72699 79367 1 4346 111703 200000 200000 200000 1 1 19607 49417 109205 200000 77104 200000 200000 1 1 1 200000 28475 74...
result:
ok 179761 numbers
Test #7:
score: 0
Accepted
time: 5142ms
memory: 229020kb
input:
200000 200000 1 2 796456214 2 3 740604027 3 4 363664601 4 5 815797615 5 6 463286014 6 7 430082206 7 8 639881106 8 9 14913310 9 10 887879247 10 11 796246680 11 12 802527015 12 13 437002899 13 14 281562336 14 15 688457701 15 16 905558374 16 17 617631127 17 18 193398033 18 19 642019042 19 20 610926873 ...
output:
1 94 136 110084 136 35645 135676 200000 38729 11501 9 16200 393 146 132 199986 50 10840 5194 99022 19 150100 200000 11 60695 1673 3 166621 36 98 44 7 7 200000 3055 27 65 27000 47 15214 842 1 41870 17 3213 26 175965 5 99 41 131613 199989 108859 1078 73 35 82388 34 10145 1 1 3 6 31 36 139 199995 46667...
result:
ok 100168 numbers
Test #8:
score: 0
Accepted
time: 400ms
memory: 135748kb
input:
100000 30000 1 2 232632894 2 3 615573029 3 4 812551786 4 5 161942260 5 6 457428876 6 7 89411628 7 8 402198074 8 9 266513672 9 10 866030976 10 11 357259122 11 12 903193100 12 13 702113698 13 14 49435177 14 15 402399859 15 16 280341727 16 17 222276068 17 18 8665747 18 19 33844315 19 20 112069486 20 21...
output:
21672 59783 1586 25348 1774 3133 29699 699 3686 2318 1797 5456 1494 2998 8846 4732 1492 14933 5263 37596 16672 4 8662 1768 20587 70040 100000 9272 10659 25123 16087 1168 1734 144 10726 595 5020 1771 6064 6480 40169 11797 89942 99074 19569 433 5336 764 5706 40 73256 2012 25177 57183 3743 100000 4379 ...
result:
ok 2958 numbers
Test #9:
score: 0
Accepted
time: 636ms
memory: 94436kb
input:
100000 30000 1 2 190746238 2 3 675029592 1 4 168040323 1 5 922467464 5 6 361179444 6 7 34395123 1 8 410124233 5 9 960812805 7 10 622220798 1 11 958352127 8 12 38660819 4 13 810644242 13 14 855144641 12 15 329318635 2 16 114496731 9 17 522298672 3 18 557815746 7 19 476566127 19 20 353005409 17 21 438...
output:
3327 96746 100000 100000 2 99459 25780 6 1364 3681 2 99982 21494 100000 100000 648 71 39 99579 100000 2 100000 37698 30633 312 12 29977 100000 100000 15 1 29 1926 4 100000 64460 396 100000 8099 54 511 98678 42 751 489 954 1 1 7206 178 47644 99588 3352 44594 1 100000 62862 1265 4682 412 22 26 100000 ...
result:
ok 14890 numbers
Test #10:
score: 0
Accepted
time: 212ms
memory: 51180kb
input:
100000 30000 1 2 354831917 1 3 202905598 1 4 611619647 1 5 20222478 1 6 708756128 1 7 821129867 1 8 893394198 1 9 626738967 1 10 176378473 1 11 54191181 1 12 558850835 1 13 18618138 1 14 713989739 1 15 837205587 1 16 94638856 1 17 662322139 1 18 66448477 1 19 615697398 1 20 259837281 1 21 93808179 1...
output:
1 62583 1 1 100000 93793 64328 100000 1 75867 34018 3072 1 1 91692 94061 2578 1 72165 44133 96303 1 1 100000 3013 78870 43017 87852 1 100000 46541 1 359 30700 100000 26805 1 70202 100000 100000 1 1 33742 92761 100000 55185 28767 100000 90214 100000 35616 1 100000 100000 1 1 2216 100000 15849 1 1 311...
result:
ok 26958 numbers
Test #11:
score: 0
Accepted
time: 617ms
memory: 114152kb
input:
100000 30000 1 2 104249460 2 3 478232035 3 4 466312804 4 5 189561732 5 6 362119693 6 7 53996994 7 8 566013752 8 9 731486787 9 10 923017604 10 11 520020314 11 12 598450495 12 13 772432347 13 14 65082675 14 15 905376194 15 16 112445962 16 17 449717550 17 18 624966046 18 19 300208577 19 20 198329359 20...
output:
28 7 20 155 51 24492 23685 30 133 14700 204 50775 50177 114 532 83 2884 27 20855 23 117 194 139 67820 36 31788 27 100000 142 186 4 10014 6 7942 1 100000 132 73715 10 74 160 66725 11 100000 100000 22 57463 15280 303 35136 51 65 556 113 34054 24 851 20527 1101 54 45368 3 42 702 11 35 3762 3 93588 8 58...
result:
ok 15102 numbers
Test #12:
score: 0
Accepted
time: 433ms
memory: 135732kb
input:
100000 30000 1 2 793126017 2 3 232330993 3 4 449065337 4 5 490733472 5 6 111589134 6 7 668100127 7 8 821095971 8 9 285891331 9 10 902446109 10 11 449050951 11 12 520804843 12 13 640551484 13 14 545522531 14 15 371179414 15 16 413586021 16 17 396937695 17 18 796739570 18 19 326494170 19 20 769171110 ...
output:
54598 7234 2670 42497 20235 1707 178 12828 7636 8991 100000 6821 11643 35392 52297 39388 5538 30741 524 83977 1168 58757 8619 10299 4380 7501 13833 35865 193 19087 3646 38201 123 369 100000 12576 2484 23287 95 14638 2205 19 8385 5045 11518 27273 96810 39236 31815 48670 3476 10351 23503 100000 1234 1...
result:
ok 14953 numbers
Test #13:
score: 0
Accepted
time: 442ms
memory: 135688kb
input:
100000 30000 1 2 914076278 2 3 849075708 3 4 838143543 4 5 395635779 5 6 178103168 6 7 238090750 7 8 485456169 8 9 96798738 9 10 953953655 10 11 753633712 11 12 310722446 12 13 434513796 13 14 146296271 14 15 7536252 15 16 234163959 16 17 265914804 17 18 819483810 18 19 31553002 19 20 659460957 20 2...
output:
29412 26523 56269 58437 2301 695 2265 5556 13671 5033 74 1205 2475 11967 10762 62 413 1799 47885 466 167 102 8973 83448 7401 1503 3632 199 46638 56906 27 27503 11561 25788 27150 18473 6389 3730 20391 1750 41898 2025 23885 52 2273 22550 483 31639 15507 34642 26231 11512 53564 17996 2041 14127 8179 14...
result:
ok 27055 numbers
Test #14:
score: 0
Accepted
time: 6073ms
memory: 248120kb
input:
200000 200000 1 2 462099758 1 3 866972101 2 4 996540461 2 5 578524349 3 6 571095940 3 7 703136877 4 8 666580508 4 9 285459002 5 10 814201161 5 11 660727584 6 12 654376807 6 13 837770648 7 14 714870560 7 15 104972922 8 16 32803231 8 17 735694895 9 18 110658827 9 19 889606190 10 20 17130278 10 21 4067...
output:
200000 67686 200000 200000 200000 200000 200000 630 1 200000 200000 1 31346 1 200000 200000 561 5 1 200000 200000 200000 200000 26451 200000 200000 4 200000 200000 16916 200000 200000 153875 200000 200000 200000 200000 269 25 200000 200000 200000 200000 1 5742 200000 200000 200000 113574 200000 2942...
result:
ok 100022 numbers
Test #15:
score: 0
Accepted
time: 2655ms
memory: 238064kb
input:
200000 200000 1 2 267010287 2 3 167068641 3 4 926147815 4 5 278208820 5 6 739843382 6 7 662489052 7 8 868323923 8 9 370708651 9 10 197960447 10 11 453593839 11 12 593358148 12 13 867598178 13 14 321466717 14 15 531052203 15 16 684794512 16 17 86921369 17 18 272875802 18 19 77083057 19 20 244571756 2...
output:
468 89 102 5 41 491 207 198 288 307 197 143 57 275 168 5 34 150 151 87 221 634 7 69 181 80 17 49 41 49 60 1323 1815 1179 981 28 922 234 38 124 25 459 406 1122 37 239 375 645 144 28 367 69 1168 413 33 43 305 422 26 30 2 668 2436 45 31 810 17 113 267 1 467 208 38 68 22 284 132 286 7 22 9 7 346 249 1 9...
result:
ok 99810 numbers
Test #16:
score: 0
Accepted
time: 5554ms
memory: 201176kb
input:
200000 200000 1 2 530262027 1 3 577167565 1 4 991638279 1 5 867902762 1 6 49113833 1 7 636751479 1 8 757930507 1 9 457909927 1 10 811776506 1 11 92479382 1 12 668573430 1 13 368351521 1 14 482946458 1 15 716207055 1 16 734689871 1 17 469203061 1 18 436245204 1 19 936484001 1 20 650565287 1 21 981462...
output:
543 17908 18325 96565 6039 60319 9138 32634 38869 163527 5272 67242 16885 41840 19723 40571 12028 8596 9708 671 165873 38146 17699 22998 242 24416 18562 5659 34 1 2340 91317 16323 17238 4040 98902 6897 13092 38011 12305 31218 105668 1 368 1881 11920 24287 37200 28287 18319 14607 15748 39054 49303 13...
result:
ok 99822 numbers
Test #17:
score: 0
Accepted
time: 5887ms
memory: 221348kb
input:
200000 200000 1 2 747157235 1 3 495557667 1 4 557250681 1 5 373058000 1 6 330210729 1 7 842153828 1 8 834790086 1 9 82820423 1 10 234384256 1 11 169048934 1 12 554053879 1 13 656281805 1 14 245175239 1 15 15339182 1 16 130032764 1 17 634709406 1 18 507167281 1 19 522574826 1 20 757475198 1 21 875842...
output:
19849 96 49 1 47 779 74734 110653 87 147530 12843 3 8 32643 76190 78606 27368 8535 56 3733 2420 2 42669 2746 200000 21675 18 5584 1708 2254 27 1 70122 406 203 81795 17262 61177 204 107338 80699 4146 2230 8855 3109 104314 3992 1424 399 14894 28 7 200000 39416 43093 11 20664 32 6760 57702 71 2851 82 8...
result:
ok 99760 numbers