QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#862247#9676. AncestorsXiaohuba28 3255ms464104kbC++236.2kb2025-01-18 23:19:192025-01-18 23:19:19

Judging History

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

  • [2025-01-18 23:19:19]
  • 评测
  • 测评结果:28
  • 用时:3255ms
  • 内存:464104kb
  • [2025-01-18 23:19:19]
  • 提交

answer

#pragma GCC optimize("Ofast,unroll-loops")
#include <bits/extc++.h>
#include <bits/stdc++.h>

using namespace std;

using ll = long long;
using db = double;
using pii = pair<int, int>;

#define il inline
#define mkp make_pair
#define eb emplace_back
#define fi first
#define se second
#define ssz(x) ((signed)((x).size()))
#define For(i, j, k) for (int i = (j); i <= (k); i++)
#define ForDown(i, j, k) for (int i = (j); i >= (k); i--)
template <typename T> il void cmin(T &x, const T &y) { x = min(x, y); }
template <typename T> il void cmax(T &x, const T &y) { x = max(x, y); }

using namespace __gnu_pbds;

namespace {
constexpr int MAXN = 1e5 + 5;
int n, m, rt, fa[MAXN], dep[MAXN], id[MAXN], dfn[MAXN], seq[17][MAXN],
    Ans[MAXN * 10], cnt = 0, qwq[MAXN];
vector<int> T[MAXN];
vector<tuple<bool, int, int, int>> todo[MAXN];
int bit[MAXN];

void bit_add(int p, int v) {
  for (; p <= n; p += p & -p)
    bit[p] += v;
}
void bit_add(int l, int r, int v) {
  // cerr << "A " << l << ' ' << r << ' ' << v << '\n';
  assert(l <= r), bit_add(l, v), bit_add(r + 1, -v);
}
int bit_qry(int p) {
  int ans = 0;
  // cerr << "Q " << p << ' ';
  for (cmin(p, n); p; p -= p & -p)
    ans += bit[p];
  return ans;
}

il int LCA(int x, int y) {
  if (x == y)
    return x;
  const auto [l, r] = minmax(dfn[x], dfn[y]);
  int f = 31 ^ __builtin_clz(r - l), u = seq[f][l + 1],
      v = seq[f][r - (1 << f) + 1];
  return fa[dep[u] < dep[v] ? u : v];
}
auto split(set<tuple<int, int, int>> &x, int lim) {
  auto it = x.upper_bound({lim + 1, 0, 0});
  if (it == x.begin())
    return x.begin();
  --it;
  auto [l, r, c] = *it;
  if (r == lim)
    return next(it);
  x.erase(it);
  x.emplace(l, lim, c);
  return x.emplace(lim + 1, r, c).fi;
}

struct VTree {
  int DEP;
  vector<vector<int>> T;
  vector<int> fa, rdep, sz, hson, bottom, top;
  vector<set<tuple<int, int, int>>> ODT;
  void dfs1(int x, int pre) {
    fa[x] = pre, sz[x] = 1, hson[x] = -1;
    for (int v : T[x]) {
      dfs1(v, x), sz[x] += sz[v];
      if (!~hson[x] || sz[v] > sz[hson[x]])
        hson[x] = v;
    }
  }
  void dfs2(int x, int _top) {
    top[x] = _top;
    if (~hson[x])
      dfs2(hson[x], _top);
    else
      bottom[_top] = x;
    for (int v : T[x])
      dfs2(v, v);
    if (x == _top) {
      int up = (~fa[x]) ? rdep[fa[x]] + 1 : 1;
      ODT[x].emplace(up, rdep[bottom[x]], 0);
      assert(up <= rdep[bottom[x]]);
    }
  }
  void build(int _dep, vector<int> &nodes) {
    nodes.eb(rt), DEP = _dep;
    sort(nodes.begin(), nodes.end(),
         [&](int x, int y) { return dfn[x] < dfn[y]; });
    int m = ssz(nodes);
    // cerr << DEP << ' ' << m << '\n';
    For(i, 1, m - 1) nodes.eb(LCA(nodes[i - 1], nodes[i]));
    sort(nodes.begin(), nodes.end(),
         [&](int x, int y) { return dfn[x] < dfn[y]; });
    nodes.erase(unique(nodes.begin(), nodes.end()), nodes.end());
    m = ssz(nodes);
    T.resize(m), fa.resize(m), rdep.resize(m), sz.resize(m), hson.resize(m),
        ODT.resize(m), bottom.resize(m), top.resize(m);
    For(i, 0, m - 1) {
      qwq[nodes[i]] = i, rdep[i] = dep[nodes[i]];
      if (rdep[i] == DEP)
        id[nodes[i]] = i;
    }

    For(i, 1, m - 1) T[qwq[LCA(nodes[i - 1], nodes[i])]].eb(i);
    // For(i, 0, m - 1) for (int j : T[i]) cerr << "E " << i << ' ' << j <<
    // '\n';
    dfs1(0, -1), dfs2(0, 0);
  }
  void upd(int x, int y) {
    // cerr << "!!! " << x << ' ' << y << '\n';
    while (~x) {
      auto R = split(ODT[top[x]], rdep[x]);
      for (auto it = ODT[top[x]].begin(); it != R; it = ODT[top[x]].erase(it)) {
        auto [l, r, col] = *it;
        assert(l <= r);
        if (col)
          todo[y].eb(0, DEP - r + 1, DEP - l + 1, -col);
      }
      int up = (~fa[top[x]]) ? rdep[fa[top[x]]] + 1 : 1;
      todo[y].eb(0, DEP - rdep[x] + 1, DEP - up + 1, y);
      ODT[top[x]].emplace(up, rdep[x], y);
      // cerr << "I " << DEP << ' ' << up << ' ' << rdep[x] << '\n';
      x = fa[top[x]];
    }
  }
} virt[MAXN];
void dfs(int x, int pre) {
  seq[0][dfn[x] = ++cnt] = x, dep[x] = dep[pre] + 1;
  for (int v : T[x])
    dfs(v, x);
}
void solve(int l, int r) {
  auto _cmp = [](auto x, auto y) {
    return abs(get<3>(x)) != abs(get<3>(y)) ? abs(get<3>(x)) > abs(get<3>(y))
                                            : get<0>(x) < get<0>(y);
  };
  if (l == r) {
    // cerr << "---\n";
    sort(todo[l].begin(), todo[l].end(), _cmp);
    for (auto [tp, x, y, _] : todo[l]) {
      if (!tp)
        bit_add(x, y, (_ > 0) ? 1 : -1);
      else
        Ans[y] += bit_qry(x);
    }
    for (auto [tp, x, y, _] : todo[l]) {
      if (!tp)
        bit_add(x, y, (_ > 0) ? -1 : 1);
    }
    return;
  }
  int mid = (l + r) >> 1;
  solve(l, mid), solve(mid + 1, r);
  const auto &L = todo[l], &R = todo[mid + 1];
  // cerr << "---\n";
  for (int p = 0, q = 0; p < ssz(L) || q < ssz(R);) {
    if (p < ssz(L) && (q == ssz(R) || _cmp(L[p], R[q]))) {
      auto [tp, x, y, _] = L[p++];
      if (!tp)
        bit_add(x, y, (_ > 0) ? 1 : -1);
    } else {
      auto [tp, x, y, _] = R[q++];
      if (tp)
        Ans[y] += bit_qry(x);
    }
  }
  for (auto [tp, x, y, _] : L)
    if (!tp)
      bit_add(x, y, (_ > 0) ? -1 : 1);
  static vector<tuple<bool, int, int, int>> tmp;
  tmp.resize(ssz(L) + ssz(R));
  merge(L.begin(), L.end(), R.begin(), R.end(), tmp.begin(), _cmp);
  todo[l].swap(tmp);
}

vector<int> bl_dep[MAXN];

void Main() {
  cin.tie(0)->sync_with_stdio(0);
  cin >> n >> m;
  For(i, 1, n) {
    cin >> fa[i];
    if (!fa[i])
      rt = i;
    else
      T[fa[i]].eb(i);
  }
  dfs(rt, 0);
  For(i, 1, 16) For(j, 1, n - (1 << i) + 1) {
    int u = seq[i - 1][j], v = seq[i - 1][j + (1 << (i - 1))];
    seq[i][j] = (dep[u] < dep[v]) ? u : v;
  }
  For(i, 1, n) bl_dep[dep[i]].eb(i);
  For(i, 1, n) {
    if (!bl_dep[i].empty())
      virt[i].build(i, bl_dep[i]);
    else
      break;
  }
  For(i, 1, m) {
    int l, r, x;
    cin >> l >> r >> x, todo[r].eb(1, x + 1, i, l);
  }
  cerr << "ok " << 1. * clock() / CLOCKS_PER_SEC << '\n';
  For(i, 1, n) virt[dep[i]].upd(id[i], i);
  solve(1, n);
  For(i, 1, m) cout << Ans[i] << '\n';
}
} // namespace

int main() { return Main(), 0; }

詳細信息

Subtask #1:

score: 11
Accepted

Test #1:

score: 11
Accepted
time: 4ms
memory: 28660kb

input:

7 5
3 1 0 5 3 5 1
1 3 1
5 7 2
1 5 1
4 7 1
4 7 2

output:

2
1
3
3
1

result:

ok 5 number(s): "2 1 3 3 1"

Test #2:

score: 11
Accepted
time: 8ms
memory: 31768kb

input:

1000 1000
686 337 192 336 405 0 108 485 350 762 258 780 179 939 25 657 571 662 119 786 604 224 935 494 685 575 369 178 249 740 954 204 598 592 68 771 498 86 55 38 298 704 239 292 993 286 16 813 719 187 14 476 792 49 944 52 227 720 310 470 900 243 663 950 627 300 728 189 45 610 673 548 873 95 48 841 ...

output:

452
67
611
126
329
486
354
25
559
585
184
265
576
116
489
289
147
287
13
282
151
192
146
141
148
131
43
72
69
29
5
15
57
10
9
16
87
162
19
217
232
24
178
334
103
139
293
400
299
351
529
632
592
296
640
678
715
708
52
465
322
731
2
69
110
286
172
0
40
31
16
105
75
45
8
94
540
115
357
7
11
431
581
37
...

result:

ok 1000 numbers

Test #3:

score: 11
Accepted
time: 5ms
memory: 36028kb

input:

1000 1000
594 766 788 546 408 364 152 525 963 359 339 746 747 58 628 60 144 646 222 863 418 1000 494 84 225 21 202 146 81 879 239 526 662 816 483 140 7 834 978 26 370 619 12 112 824 319 855 852 877 32 708 236 296 791 40 102 238 930 734 609 740 309 982 837 272 451 825 977 717 597 761 90 305 224 216 8...

output:

441
362
300
535
197
383
360
29
428
31
473
9
310
242
232
37
96
227
50
146
180
93
108
83
58
106
61
26
61
32
7
25
54
25
59
17
48
42
68
237
83
95
206
339
161
47
377
250
335
136
436
98
6
515
216
132
263
270
137
463
117
292
61
468
237
326
149
0
126
228
353
168
76
332
169
98
75
418
49
133
284
281
282
134
1...

result:

ok 1000 numbers

Test #4:

score: 11
Accepted
time: 6ms
memory: 34104kb

input:

1000 1000
330 124 926 768 265 445 803 501 173 371 897 686 88 668 787 5 440 818 604 119 918 821 30 400 391 262 299 334 279 58 45 101 814 582 467 182 538 549 455 761 121 769 480 639 605 906 883 341 138 862 684 42 855 535 778 154 407 439 967 780 128 565 622 739 910 69 647 612 345 407 929 352 296 869 31...

output:

347
340
86
105
386
17
172
27
104
146
341
160
298
321
97
112
232
110
222
37
40
42
84
173
114
25
82
81
56
14
1
2
41
62
12
126
122
50
125
152
100
123
26
0
106
34
173
52
184
89
268
270
152
77
39
322
154
50
0
284
146
199
54
149
27
18
101
84
140
232
73
199
334
195
35
1
107
138
1
25
158
78
4
10
178
202
315...

result:

ok 1000 numbers

Test #5:

score: 11
Accepted
time: 6ms
memory: 36296kb

input:

1000 1000
461 631 908 871 9 818 589 859 917 846 415 498 899 405 954 857 192 327 912 204 453 253 923 705 211 775 882 41 956 634 761 588 676 694 428 729 575 747 216 979 10 472 471 422 580 944 295 121 62 603 376 520 720 864 792 22 891 773 77 520 801 680 590 70 617 807 784 136 566 699 167 726 75 701 780...

output:

95
177
33
70
54
125
39
35
0
263
17
65
55
46
144
73
55
152
58
145
194
103
68
101
34
32
83
60
43
24
0
1
23
46
51
114
57
27
116
38
86
70
53
52
147
129
136
46
41
14
137
154
161
159
205
6
149
157
21
24
7
50
81
9
15
53
13
134
225
36
32
3
104
44
73
139
35
24
191
94
61
128
399
29
103
2
31
34
23
116
9
91
158...

result:

ok 1000 numbers

Test #6:

score: 11
Accepted
time: 6ms
memory: 36268kb

input:

1000 1000
287 431 325 595 467 406 982 985 603 656 520 452 564 548 370 451 331 407 538 749 304 421 813 467 941 545 807 796 484 617 276 908 461 162 323 903 455 796 466 897 972 859 359 684 644 348 245 579 149 18 702 537 415 64 906 382 210 478 145 369 128 336 574 86 847 475 671 849 135 238 920 421 512 9...

output:

117
162
29
84
31
73
55
52
148
119
26
88
88
186
44
96
41
39
276
8
27
81
60
38
58
13
5
17
17
32
8
14
26
24
23
10
58
52
140
6
63
14
66
99
185
207
51
163
61
13
1
183
252
70
87
42
45
127
108
23
92
70
4
35
136
143
7
34
7
53
31
57
39
11
24
132
13
0
23
39
37
13
16
60
25
5
10
130
0
47
5
1
103
54
45
24
31
176...

result:

ok 1000 numbers

Test #7:

score: 11
Accepted
time: 8ms
memory: 36364kb

input:

1000 1000
744 630 563 578 427 227 792 774 559 165 201 450 227 905 966 321 29 908 183 636 603 275 148 739 196 551 884 685 487 276 139 646 352 52 96 246 212 295 502 968 1000 938 121 100 326 309 567 582 744 290 170 312 464 262 768 179 921 741 4 431 107 465 240 973 526 369 172 744 580 420 134 566 875 85...

output:

65
71
39
51
42
31
29
29
3
25
170
6
3
38
58
97
9
11
65
3
27
29
136
24
108
67
83
54
38
13
0
11
58
22
33
17
6
5
50
96
75
13
60
32
239
165
20
49
16
69
73
280
98
29
341
67
25
21
46
69
101
65
12
134
81
3
61
10
5
4
42
46
23
88
39
153
96
55
14
31
1
0
48
57
42
4
24
95
41
68
13
24
20
0
9
28
190
53
35
79
68
10...

result:

ok 1000 numbers

Test #8:

score: 11
Accepted
time: 9ms
memory: 36320kb

input:

1000 1000
566 649 769 706 200 912 838 31 319 791 685 53 463 151 803 239 656 355 5 739 729 295 655 349 403 776 187 277 256 792 488 796 953 925 702 255 740 794 33 801 137 591 875 101 842 815 969 713 701 295 202 360 44 959 494 684 80 425 270 272 155 700 287 994 921 12 214 831 963 307 167 946 980 782 81...

output:

23
429
186
23
122
29
32
75
247
7
60
82
114
17
113
19
17
47
151
25
45
16
162
28
74
17
114
2
17
12
8
0
24
50
102
19
83
10
18
145
1
23
228
277
54
0
124
9
59
114
11
61
5
93
105
29
160
47
97
3
17
23
26
15
27
51
9
6
40
46
97
14
29
20
91
62
19
26
6
46
26
0
10
91
33
37
104
218
61
53
2
172
8
167
50
32
17
2
2...

result:

ok 1000 numbers

Test #9:

score: 11
Accepted
time: 6ms
memory: 32468kb

input:

1000 1000
764 506 989 348 872 809 829 365 739 924 383 727 511 53 628 31 786 95 836 751 621 947 398 814 190 398 382 895 663 98 296 28 960 509 354 106 523 62 630 423 270 16 764 118 607 33 336 459 185 812 315 1 998 174 943 523 277 734 72 202 905 542 173 138 493 585 793 61 427 94 283 295 278 142 748 604...

output:

61
87
61
0
1
290
103
370
361
83
345
38
215
6
54
12
0
45
218
0
49
224
151
10
12
160
96
13
42
1
8
3
44
70
12
35
3
9
51
64
55
31
249
21
352
289
12
16
422
35
21
4
79
504
376
69
69
58
403
240
105
24
74
11
18
157
2
15
10
17
55
39
30
36
20
74
127
64
0
7
41
0
2
41
0
27
47
25
54
4
27
1
65
0
87
1
144
4
36
178...

result:

ok 1000 numbers

Test #10:

score: 11
Accepted
time: 8ms
memory: 36448kb

input:

1000 1000
522 493 442 21 785 730 493 508 750 600 670 661 422 716 820 417 819 974 83 859 382 748 63 262 960 384 999 579 653 955 870 496 136 473 764 117 523 224 160 254 868 45 200 609 442 512 449 7 826 534 765 36 65 834 740 543 138 245 230 722 287 791 649 497 960 953 194 362 124 759 719 347 443 126 31...

output:

8
40
22
207
39
15
508
147
21
19
454
25
318
68
171
21
157
0
80
18
8
209
29
13
73
12
73
91
0
3
9
6
6
0
0
0
27
0
2
4
130
79
182
59
9
205
26
4
4
307
73
106
147
110
4
39
4
7
113
1
0
57
331
4
69
67
4
181
83
23
32
20
246
14
37
28
6
356
4
213
10
7
50
21
56
2
4
1
4
6
7
7
13
59
176
11
2
20
13
6
24
66
67
117
1...

result:

ok 1000 numbers

Test #11:

score: 11
Accepted
time: 9ms
memory: 32320kb

input:

1000 1000
395 337 905 274 702 42 864 411 818 384 745 901 328 380 321 822 953 182 278 962 907 207 8 131 424 928 456 567 119 305 423 443 531 408 532 882 722 488 365 554 811 619 280 184 183 964 802 719 293 637 234 177 6 684 454 375 105 561 879 880 805 196 609 255 8 768 772 757 359 184 294 623 125 44 21...

output:

127
17
79
12
1
190
477
12
282
7
11
11
7
5
239
104
1
148
5
44
43
14
26
0
36
23
21
36
11
17
8
12
3
2
17
10
1
0
32
13
0
6
0
0
41
0
42
69
6
2
416
32
447
457
10
186
48
123
7
81
126
17
2
52
27
0
1
3
32
1
307
2
14
3
13
0
4
69
0
0
1
0
13
267
6
119
0
2
27
1
5
0
46
17
0
34
17
310
34
17
34
24
0
71
3
56
1
1
5
2...

result:

ok 1000 numbers

Test #12:

score: 11
Accepted
time: 8ms
memory: 36380kb

input:

1000 1000
797 184 557 796 605 213 135 636 713 129 518 178 641 192 850 415 492 26 472 129 586 505 121 348 631 948 725 403 988 937 277 20 738 69 441 207 523 337 809 550 433 66 389 9 380 86 774 525 238 687 277 28 914 538 695 188 588 736 536 135 491 143 568 448 960 209 152 569 707 586 129 25 389 425 93 ...

output:

68
11
0
171
458
11
161
62
62
6
0
0
6
92
0
0
16
81
0
0
12
5
3
61
91
15
120
61
68
1
1
1
23
1
1
14
121
45
147
0
19
259
273
127
198
2
3
24
60
0
5
40
413
158
435
161
66
11
68
68
28
109
76
1
6
19
2
9
8
266
89
0
1
10
5
0
1
6
59
31
268
13
61
205
0
0
157
97
0
0
72
10
9
0
17
52
1
46
44
0
172
24
56
55
383
2
44...

result:

ok 1000 numbers

Test #13:

score: 11
Accepted
time: 12ms
memory: 33176kb

input:

1000 1000
518 308 645 387 69 663 532 44 924 655 952 521 239 811 208 909 531 329 376 778 885 471 42 815 506 155 344 704 90 99 133 29 881 491 528 869 791 352 703 261 13 695 902 19 276 449 950 727 52 55 253 50 708 487 497 967 310 234 570 953 530 120 158 94 687 269 993 945 331 79 897 471 488 655 252 632...

output:

7
62
62
31
124
0
3
3
62
124
249
91
3
0
7
3
7
0
302
7
90
102
31
62
190
7
500
0
15
265
15
100
245
15
31
0
1
62
15
31
7
15
240
1
31
62
83
15
1
62
147
15
62
50
133
438
8
64
124
1
1
15
62
0
1
62
0
0
0
331
31
3
3
3
15
3
7
240
3
3
0
0
1
11
124
7
124
339
225
84
31
249
186
7
1
125
0
248
0
62
1
1
15
0
3
3
1
5...

result:

ok 1000 numbers

Subtask #2:

score: 0
Wrong Answer

Dependency #1:

100%
Accepted

Test #14:

score: 0
Wrong Answer
time: 35ms
memory: 43672kb

input:

10000 10000
9604 441 474 6593 7295 7622 5538 3949 131 5596 7590 2194 8222 6170 5424 6009 9447 9516 3302 3375 2030 4876 99 2757 3207 7323 7979 255 9612 1485 5970 2268 2899 6083 7319 7491 2335 1878 5123 5338 3470 80 895 6483 9950 4840 3548 8394 5702 8400 8010 1 3760 4207 8587 1193 1562 8196 9645 824 1...

output:

576
3056
2286
1145
1535
99
619
5349
8135
8913
3560
7476
6513
8575
5129
7417
6309
7237
556
38
5242
7158
1208
6373
1600
2033
573
6740
3365
4141
2173
2663
986
2790
1374
3157
2241
1482
3538
254
1995
1747
5688
5555
2437
4087
621
852
2311
2464
682
3720
1862
1876
1590
3220
3809
2029
3531
918
1040
1585
2647...

result:

wrong answer 8074th numbers differ - expected: '0', found: '1'

Subtask #3:

score: 17
Accepted

Test #30:

score: 17
Accepted
time: 271ms
memory: 121864kb

input:

50000 200000
42574 43129 47328 17982 40521 6668 12729 32377 201 11940 8599 11734 18349 41045 26854 22540 9897 33419 7463 1243 47272 27135 49050 49111 22435 42539 39924 20272 5843 9308 45963 3283 31185 13692 38952 20583 15885 24802 4773 953 49907 28689 36942 23550 19449 8970 33340 31665 5407 46023 18...

output:

12045
1321
12292
2444
32443
36534
38575
30505
16464
16648
47153
41144
23401
1762
18567
6831
26486
29716
8905
16295
38569
29990
22061
7638
3820
34754
17582
6466
12632
23384
11657
16493
24434
11503
3945
2205
37806
13036
29052
24114
39158
34702
37326
20815
11766
41253
44355
17807
23452
26717
43107
4133...

result:

ok 200000 numbers

Test #31:

score: 17
Accepted
time: 304ms
memory: 124748kb

input:

50000 200000
13611 7267 47234 19765 39458 30493 19935 34465 46369 11995 35207 5752 13718 47418 12913 13725 27694 47726 25253 30406 27587 25790 21091 12008 13534 8804 26484 34270 33810 49102 25288 37607 11863 23340 22747 40502 4461 24803 31317 25617 46077 6504 46299 34533 6829 17841 2812 35413 16394 ...

output:

14606
766
20003
9866
13393
15046
12175
16064
14351
32598
8598
4328
20759
18242
14279
16634
19676
27649
22510
18209
10566
6103
7184
10324
11352
25597
17392
26556
19067
28802
18806
8556
16176
19224
25066
21928
3542
3540
2793
21786
15621
831
18062
6304
5590
24262
14451
14273
10795
9579
10524
6779
16154...

result:

ok 200000 numbers

Test #32:

score: 17
Accepted
time: 351ms
memory: 134328kb

input:

50000 200000
7808 37218 25681 42081 13175 20056 26651 36373 24916 22399 6718 4909 8913 8722 43481 17050 49628 37628 9367 22930 27058 40654 5776 8531 26430 24332 39623 5383 17932 44070 29404 47256 19162 25499 2140 3864 43779 46852 10360 40725 38332 16051 16623 9761 9775 35907 31158 36636 39585 10652 ...

output:

14838
16217
8834
7129
15203
340
4210
7269
18579
323
16773
4298
7069
8897
4908
12477
10072
17823
16194
12297
16355
18783
14541
11142
1182
19042
3025
18213
7450
16225
9323
9982
5313
7448
8667
17101
18811
6096
1270
16782
16588
5960
2743
18056
9152
15598
18523
11798
9945
19292
6793
8049
19527
15405
4257...

result:

ok 200000 numbers

Test #33:

score: 17
Accepted
time: 428ms
memory: 146188kb

input:

50000 200000
17019 6516 42836 34960 31966 21120 26093 38510 34959 34501 21687 46943 11848 11123 34078 42163 21906 42658 23287 22671 42591 37793 45773 27274 14076 16061 45524 9550 9150 26134 9851 43143 39161 47054 15529 29755 36170 10171 15826 11608 30165 25465 24654 24623 40231 43600 20883 2956 3879...

output:

6036
8975
2529
1459
3742
6840
1646
6933
7256
6524
7820
9180
11057
6427
6812
5492
251
3080
3376
6343
4160
887
50
2182
9828
8028
20
1535
2744
3413
9684
9288
4357
6221
9904
8728
1709
9303
9290
2920
2763
1763
6381
5524
1462
5744
9625
5959
9253
10551
1389
4468
8868
7844
5050
10410
7696
7342
10626
7321
89...

result:

ok 200000 numbers

Test #34:

score: 17
Accepted
time: 518ms
memory: 160648kb

input:

50000 200000
28543 14178 18801 353 43041 45128 27928 39644 22071 30277 18193 41913 14812 43930 47029 28664 25683 13155 30716 14229 33495 5690 11537 40210 29588 33940 1326 40684 12721 10254 30431 38869 15718 48272 49256 40277 5650 36524 5542 35389 49417 36528 26315 38124 16450 46095 23406 4713 9031 1...

output:

5609
3746
2300
4896
5137
3267
4667
865
2540
4697
1513
2303
1512
3202
979
1600
1440
1633
2278
2781
1674
5766
2712
2684
2302
3273
2798
2575
5571
4974
960
3483
2456
2977
1107
4747
1586
2513
4536
4717
115
2147
3169
2298
5094
530
4341
894
636
4065
5581
2829
4294
207
3076
3767
2038
417
4411
6070
869
525
1...

result:

ok 200000 numbers

Test #35:

score: 17
Accepted
time: 622ms
memory: 180668kb

input:

50000 200000
42265 30997 16742 19473 6990 7490 28098 1438 29608 39635 1443 1545 2057 31374 14189 14949 10785 20287 4530 36698 37061 22642 27247 32244 49598 24351 26840 18362 2238 20195 25009 41897 21015 41709 7534 19999 47530 40977 41426 2119 41946 4046 35492 30475 32060 9232 25575 237 18694 26502 2...

output:

825
941
1345
699
1008
783
839
2876
1641
225
2832
47
1631
1483
1503
2813
814
2970
2244
2857
2096
2882
2722
2868
2692
1441
1064
680
927
973
888
1583
1691
56
1328
2856
943
319
523
1670
715
1073
2124
1415
647
1103
160
882
1060
501
1599
655
2923
2722
151
1180
1410
1216
830
2263
1951
745
3818
773
1852
223...

result:

ok 200000 numbers

Test #36:

score: 17
Accepted
time: 744ms
memory: 196456kb

input:

50000 200000
35275 48137 32517 36923 17090 33719 22003 25282 16638 31131 40542 25036 38173 41767 5573 46953 35455 27461 46247 32004 43935 22667 40180 34839 47048 22937 25880 21912 25022 6824 15242 3447 32153 33149 861 3742 38611 13195 49884 34265 23790 14796 44706 33843 26639 32729 14181 41978 831 1...

output:

400
624
6616
1887
1852
136
1450
302
730
750
1148
877
1111
1492
1768
999
193
1983
629
2541
859
208
852
760
911
196
1317
1137
1
504
580
753
1226
914
448
1326
895
748
473
1226
1216
1676
173
1331
756
629
845
493
1128
456
317
2006
503
356
589
647
2282
721
605
1128
351
527
810
646
683
781
886
732
233
167
...

result:

ok 200000 numbers

Test #37:

score: 17
Accepted
time: 981ms
memory: 217692kb

input:

50000 200000
916 9192 892 22349 11058 24972 6584 25500 21081 3605 19000 22398 40009 16140 11330 16866 33042 19197 38993 21879 38803 46494 19048 29135 21786 36419 9522 48044 17884 44413 8440 27879 32411 32078 44270 44595 33184 24636 18550 22681 39133 17034 32607 41246 44755 40937 327 1332 43951 40283...

output:

6092
55
642
360
4136
650
433
96
650
214
56
139
284
454
94
897
212
198
468
43
3
561
80
1187
1159
128
311
519
1575
11804
432
559
5
121
374
301
219
404
583
235
662
329
412
382
302
71
53
10459
1263
42
556
266
382
62
147
664
423
150
394
1170
2015
171
210
5
1025
223
272
715
456
394
347
48
0
487
491
712
14...

result:

ok 200000 numbers

Test #38:

score: 17
Accepted
time: 1456ms
memory: 238436kb

input:

50000 200000
46139 14805 31812 39098 21964 6703 17708 15873 43255 9279 9629 47667 32951 5775 36158 46562 17562 14586 38543 27081 43386 47250 46728 39174 33842 26177 37728 45321 10787 20625 28043 30088 32039 28316 22089 42733 26509 42530 35295 23932 6176 3610 23867 45568 22695 42079 28544 39179 40973...

output:

2604
146
31
549
159
141
368
347
257
3942
428
23
123
291
197
233
39
5072
327
525
2303
305
106
58
2513
156
793
175
757
37
69
41
235
4
1694
267
62
4521
547
61
499
341
243
309
675
1975
529
857
4293
5677
134
80
160
359
73
134
4505
241
177
829
233
955
91
219
98
185
595
6481
398
521
2149
1729
999
561
51
44...

result:

ok 200000 numbers

Test #39:

score: 17
Accepted
time: 1126ms
memory: 226484kb

input:

50000 200000
4608 1857 41886 13649 44549 33326 36750 43707 8331 26700 5235 35802 11906 9220 38528 14357 43330 37226 38582 9388 23049 33174 7458 25829 3782 8713 23697 13110 42538 13424 16280 43853 6716 33776 15003 45671 16386 18842 33781 16370 10410 31454 4983 7137 48164 21352 48341 48309 27556 14074...

output:

471
2815
630
8327
15457
1328
9172
383
878
160
136
15392
504
11492
69
1087
24
5
359
0
1235
798
84
642
812
60
1783
617
593
470
90
569
2
430
273
536
11
1154
1918
3519
10
102
249
3010
1041
345
69
1232
1388
105
450
9
63
303
183
391
117
45
231
677
1778
2018
1591
3116
3114
859
1662
3823
420
450
60
84
4398
...

result:

ok 200000 numbers

Test #40:

score: 17
Accepted
time: 1254ms
memory: 234436kb

input:

50000 200000
13954 28374 11800 26848 889 38500 12745 39721 6813 38466 23046 26952 6390 29768 45230 9461 32608 14347 29175 46979 7780 19166 24339 23746 48724 46976 20028 31303 1743 17910 7347 45475 19884 3526 40689 39989 3596 27241 46338 6943 7001 7369 16028 27265 7197 45164 35044 47212 37722 21872 3...

output:

583
5030
1276
4132
103
79
1649
31
190
2928
397
951
365
397
520
397
8
1648
11246
1391
7346
1120
30470
5007
1390
21
3
698
951
55
672
349
168
464
3435
3247
500
179
1119
306
482
429
280
71
3428
14771
12
1271
0
989
2157
381
811
36
811
3235
319
5
16
21
582
840
4072
603
9751
31
2896
1638
499
671
1163
79
46...

result:

ok 200000 numbers

Test #41:

score: 17
Accepted
time: 1178ms
memory: 234804kb

input:

50000 200000
36996 3181 11620 3429 35358 34168 48667 28333 29506 32941 5744 32970 31756 19808 43639 13481 43713 44725 33528 29411 29294 10158 13551 3334 45351 24198 35139 44657 31114 12893 47647 17501 38554 32297 14098 17787 9099 20091 12328 45062 7443 2592 9020 49321 41993 17708 12530 12379 31102 2...

output:

655
12269
769
76
117
2371
1293
95
768
2370
5328
1043
13
450
33
1043
3467
3
2207
1
75
1798
3459
1797
2205
7215
766
893
14343
4063
2363
162
449
16
3
402
1681
29561
322
3440
8031
3730
13
6
14195
2939
29162
21695
2718
1115
1468
5788
359
213
2190
43
184
3712
3163
4
1368
882
4376
4376
1899
6
2038
132
43
2...

result:

ok 200000 numbers

Test #42:

score: 17
Accepted
time: 1189ms
memory: 241904kb

input:

50000 200000
27519 38386 26996 34745 17417 13335 4891 17383 12096 10265 20670 16540 42879 39540 2284 9544 31976 47486 41852 39195 3560 48292 45924 13120 21604 2486 23658 32577 19024 9373 28258 7457 6082 19165 22479 4973 36551 35193 8885 11355 1475 47728 42128 31369 3108 26923 12815 42785 9040 24006 ...

output:

8204
4074
30810
589
1640
2
26
9578
720
2
238
387
4
10
13749
238
719
18
100
0
479
8
5253
100
183
8
6
12
8095
384
5233
713
2435
6014
6013
1204
179
5218
5
4020
8048
1860
9
179
25
4009
35
4549
379
4544
5
1
1
1018
2
2749
135
9312
470
0
50
28320
9272
13255
35
575
295
4510
2
27948
292
2728
7906
847
16126
2...

result:

ok 200000 numbers

Test #43:

score: 17
Accepted
time: 1406ms
memory: 248404kb

input:

50000 200000
41928 38140 20927 32889 13587 7566 19308 15849 11660 36495 23766 3147 21244 25794 16293 42941 14708 39580 25737 42685 44736 21610 18716 19662 6604 48837 18272 28457 44686 35314 130 11010 10544 27630 26644 13089 42472 7823 10021 17141 16188 47740 10388 21663 48509 43801 48863 39461 12867...

output:

39
998
5
248
175
12177
175
248
1
3925
24
4941
57
1361
2393
84
4
720
1358
505
358
2385
24
504
5
29236
3
122
3885
6
8
1349
57
5
502
20404
20388
24
501
1346
3
6
82
3859
1
708
7517
9384
1791
23
11
3027
23
976
495
0
1
169
4809
3015
1780
5987
4793
19785
239
2
81
27502
55
23
1318
23
54
79
492
7365
4
167
36...

result:

ok 200000 numbers

Test #44:

score: 17
Accepted
time: 922ms
memory: 218172kb

input:

50000 200000
46590 44034 18071 33305 18068 9254 6913 27880 33800 5672 30923 31456 31265 358 39743 4802 9888 36059 4577 37459 22303 43877 21241 35228 45183 12569 20426 45673 43256 30859 44123 44640 14376 11771 30601 31363 32308 25025 24158 5423 36221 22089 49584 16078 43252 39077 46970 39450 2158 339...

output:

43
567
252
110
43
169
169
6144
372
27
563
27
69
1909
2
6106
28394
12784
1907
27
6
1905
4
851
1
2803
4
2
18474
4
13
4126
18389
69
3
69
10
556
2
4101
27
19
2
43
1871
12494
2758
362
19
69
13
8638
5946
241
162
2730
27
13
106
2722
12320
3
7
42
355
239
820
3
26
2
9
1225
1225
2
18
26
8483
3984
2690
1822
12...

result:

ok 200000 numbers

Test #45:

score: 17
Accepted
time: 970ms
memory: 228356kb

input:

50000 200000
15898 42657 4986 19863 30665 24370 12689 13374 2396 17019 32397 24489 12511 45501 13973 8012 47309 38241 10547 36426 26338 10644 5480 33395 42563 36582 33104 1862 2454 46370 28242 30791 14418 2113 38629 2113 2242 42577 18482 445 3076 297 38402 14798 45114 1189 47937 20443 25826 39208 47...

output:

9228
1485
4
3598
132
958
9184
290
1483
42
289
88
88
6
10
954
5643
10
1
25788
425
18
0
1
27
952
6
5599
130
286
27
638
0
42
286
2
190
8948
285
189
1
86
86
5529
1449
5518
27
285
6
41
2
0
41
41
128
627
24540
283
2
9
5
1
85
3453
3
5
5
14276
2200
9
128
128
187
1
1
187
85
3
3420
1
5366
85
5
186
17
3
40
2
2...

result:

ok 200000 numbers

Test #46:

score: 17
Accepted
time: 924ms
memory: 222936kb

input:

50000 200000
3084 33641 21921 49781 44713 38 28280 45178 32711 39076 37318 5988 7315 17566 25555 23321 5539 16120 27388 30215 31797 36272 6498 17030 38250 40406 22470 3705 29595 38807 48067 17106 3482 17503 21695 17541 47842 14170 21099 762 26631 43803 5189 35139 43921 16104 8069 40554 17808 21791 4...

output:

6
3224
212
6
2027
41
27
24744
511
510
210
41
4
2
2012
92
136
19
8236
3177
2
10
3
813
5
92
92
2
5
506
1
0
24018
41
207
4
8
41
23830
4970
8
1
4
4957
8071
6
13
23538
13
12
3
2
317
59
7
9
9
0
23203
796
9
24
17
1
1
0
316
13196
1250
4870
17
203
3068
7
13108
7
0
37
1932
4830
3
3
3038
312
129
87
87
2
202
12...

result:

ok 200000 numbers

Test #47:

score: 17
Accepted
time: 1483ms
memory: 317220kb

input:

50000 200000
13552 21185 5378 25377 29874 26867 35463 14778 22033 47123 12009 19003 34019 34345 21611 37505 43925 15335 38300 45047 42159 31896 26577 25336 47272 24868 31102 12178 19424 10487 18884 49849 34294 46914 49522 46158 44733 19394 27501 11056 35541 37165 30604 48855 44987 14659 31259 10584 ...

output:

48
24
6
1
3
1562
8097
48
781
97
12
390
1
1213
3125
1
24
6
390
195
6250
195
6250
781
97
0
532
3
8438
0
24
195
12
6250
97
97
6243
6
48
6
11412
3
3
195
195
12485
97
12
97
3
390
1
6
1562
781
195
6242
2830
8507
781
6
3
6
12
1562
781
48
24
195
6250
19710
12363
97
1
12
12
20651
8298
6
5510
3121
12145
390
3...

result:

ok 200000 numbers

Subtask #4:

score: 0
Time Limit Exceeded

Dependency #3:

100%
Accepted

Test #48:

score: 19
Accepted
time: 585ms
memory: 213788kb

input:

100000 400000
6457 23693 90928 23592 90440 75018 16865 3342 83718 16731 95103 31510 38719 27886 29093 41955 6596 46409 51839 10527 91993 61074 14405 34833 53674 42363 11490 43757 46191 6058 59164 96938 57858 40178 97523 84164 21582 72243 11267 47368 97058 6637 95208 60092 53943 16441 28363 64965 522...

output:

68052
31330
65326
18011
17342
3039
78524
96863
67336
53285
90349
20608
8848
44819
3224
10125
60331
57270
93175
79057
26210
66364
5854
11765
64609
11194
56656
47540
62126
86871
41715
19191
26931
83164
77764
77112
39977
72679
78228
8276
15479
24512
12434
57901
25601
5373
7956
60091
45553
89895
18704
7...

result:

ok 400000 numbers

Test #49:

score: 19
Accepted
time: 659ms
memory: 226720kb

input:

100000 400000
82160 95864 48267 17482 19568 35077 14202 20440 4649 64145 148 2227 6969 39096 36508 20991 67700 90300 69215 57284 18492 9246 9629 7538 7845 30368 55600 48445 18542 41242 45052 25380 20894 91677 77040 73134 15572 21966 25343 14501 16227 23870 39207 50024 30787 11148 16884 63700 33205 4...

output:

44575
30395
9143
42642
60224
23333
27348
5581
54179
19477
16028
737
30835
56570
26145
37663
56711
46333
22959
17619
23316
34924
3891
49384
8293
3105
60172
17551
13698
14254
34372
10282
49602
28175
32637
20853
45293
4518
14217
55142
2012
32323
8829
20232
8438
27642
14498
35205
2941
19085
55067
12651
...

result:

ok 400000 numbers

Test #50:

score: 19
Accepted
time: 785ms
memory: 242980kb

input:

100000 400000
25194 62545 57529 6618 90347 4663 56805 81144 16504 79307 43199 91078 67805 33396 46754 26525 75274 39333 20904 40286 76299 83579 79770 37838 8666 33691 40228 71445 16473 53091 68958 32037 72079 38640 89820 67042 68888 34997 65595 87669 425 95432 78811 30382 34738 51750 96653 87265 962...

output:

11002
9281
18187
18679
38948
18695
19832
17107
29643
33646
28689
16954
8046
8795
23052
26764
9297
30202
39160
34212
9917
3201
80
13107
41504
4867
17853
5380
27263
27274
14369
32878
15782
16514
9302
16017
14102
2912
2330
25417
34346
15644
30547
8668
21076
5636
39559
32939
14808
11422
8897
22469
34436...

result:

ok 400000 numbers

Test #51:

score: 19
Accepted
time: 934ms
memory: 266992kb

input:

100000 400000
33869 32276 67595 11863 43366 78922 82984 33614 3349 89624 72004 26796 43181 99767 17557 34237 17402 67395 90333 32805 48065 18758 67335 51494 27849 40763 26396 34814 4622 83315 72679 97608 72899 60645 56697 71509 56066 31804 62175 73302 88129 16166 65481 42106 75805 6462 59931 64760 3...

output:

16263
8261
7996
12255
7380
1406
14051
10617
6070
3714
15759
7239
16306
16492
20435
10120
13381
6096
13736
21314
4473
9305
3220
11990
5923
18235
10968
6629
17165
20664
18846
4024
654
19326
15553
17664
21561
17451
17640
12539
667
19778
5799
8005
5123
16917
13233
16532
4304
17947
19793
7069
1272
19304
...

result:

ok 400000 numbers

Test #52:

score: 19
Accepted
time: 1147ms
memory: 303548kb

input:

100000 400000
20202 95937 59388 22656 52438 32930 5034 5828 47736 1136 86325 30517 98060 3065 87038 7780 79252 23357 30657 39367 65318 82229 57604 36401 60931 35094 22631 8808 73815 59982 13375 6858 21054 24430 58627 54098 50600 60606 29357 14070 86046 26517 36726 52335 67979 76357 5601 23089 31084 ...

output:

8126
10624
4879
10953
3662
9806
3270
8958
7935
1336
9657
10687
2597
7274
8366
6571
8402
5486
5388
7757
6212
194
9832
7099
8261
5084
314
8844
6438
1227
6043
2059
10239
7009
8041
3683
415
9988
9143
9884
10082
8808
9529
1336
4937
5734
7297
4863
993
208
2141
5807
10894
7588
7932
4525
10780
853
1542
4043...

result:

ok 400000 numbers

Test #53:

score: 19
Accepted
time: 1374ms
memory: 341956kb

input:

100000 400000
32714 36692 31083 85620 49990 97881 7729 99744 40147 35697 60981 26710 5344 89140 82549 16186 23397 99781 1198 13479 97345 76067 11166 3816 31696 12712 86322 42387 91034 73311 30204 90186 10698 3027 90469 39773 32444 90557 38037 2811 1511 99399 82904 95751 88183 46088 2411 36754 55537 ...

output:

1976
603
4325
5306
399
1391
3536
5885
1881
490
4958
2201
4696
969
1761
2739
447
5857
4695
3436
4341
5746
3473
251
416
5207
4610
4209
1642
3488
61930
191
4150
227
2878
2218
1566
1441
4121
3894
862
5777
4710
284
2405
4794
1137
2583
1433
2726
3179
3902
5441
2064
1789
510
2134
3292
4393
5031
4278
124
22...

result:

ok 400000 numbers

Test #54:

score: 19
Accepted
time: 1702ms
memory: 381264kb

input:

100000 400000
36665 34048 13767 33770 62077 34740 89600 80503 52776 40093 32294 4636 89965 40716 66459 28480 98172 65499 75307 50198 69522 69117 76142 43885 44253 95772 9808 24606 44782 232 53978 39817 47787 64598 64212 62212 95626 12362 43307 53664 69332 64445 43969 92373 79331 70902 8966 94532 701...

output:

172
2593
2059
370
587
358
2956
2128
2643
1698
1030
2439
1575
716
1289
465
290
747
252
544
2492
1082
1677
1769
140
358
2273
3639
2168
841
205
1282
1507
1036
2447
796
2637
1914
179
2663
1097
2214
3243
2896
2749
1253
2055
1914
1196
1034
2685
1885
1521
1827
2383
1392
993
2973
1159
173
947
1420
1633
60
2...

result:

ok 400000 numbers

Test #55:

score: 19
Accepted
time: 2145ms
memory: 425780kb

input:

100000 400000
25285 42985 85118 92894 42132 44140 53975 26689 61784 14964 16282 25047 75597 64954 5953 94806 31813 46882 99124 69274 16563 99491 48901 49282 93968 37463 87063 44721 80224 27813 69865 92499 37290 89151 9013 14686 53743 22181 97387 1651 98349 83530 72377 18130 14740 56916 51137 96409 3...

output:

591
2198
553
2338
841
705
969
689
758
913
1287
549
515
224
62
1326
98
22
1292
91
1359
1137
766
1404
1018
1264
412
504
1315
9469
1343
952
479
1374
666
824
1207
1283
1310
1248
483
279
616
713
1035
1238
266
453
231
519
62
728
990
934
458
924
1072
819
1257
805
581
875
951
1019
839
587
793
8025
475
531
1...

result:

ok 400000 numbers

Test #56:

score: 19
Accepted
time: 3255ms
memory: 464104kb

input:

100000 400000
45641 92812 19273 534 22918 95339 49623 85082 11614 28980 94623 62966 94029 89417 32026 67387 21098 88461 79787 80579 70439 2237 33005 12097 54566 79993 8709 84315 71961 30427 71102 53068 64440 91069 37835 78768 69298 89753 74749 31675 88761 16128 30652 40027 61119 7929 58346 90950 467...

output:

47
262
531
247
547
126
413
382
501
311
450
420
450
5634
908
232
438
2542
3981
407
165
469
1005
245
3035
367
266
90
69
111
263
136
296
103
390
394
28
190
52
48
1023
771
275
258
95
5980
780
379
461
3
297
1097
267
867
84
132
1978
4428
576
1035
378
182
372
210
972
326
325
1113
308
412
1422
378
188
249
3...

result:

ok 400000 numbers

Test #57:

score: 19
Accepted
time: 2663ms
memory: 454164kb

input:

100000 400000
27336 37910 97070 44183 29995 49758 375 48516 91840 91049 29697 89681 32833 2308 86559 61177 42205 96692 91604 2444 91144 27682 4676 99797 22019 16247 9417 50225 31431 70808 46328 50017 63524 5278 18670 63198 15944 74354 67677 93050 12088 76013 79026 55614 12339 14182 46310 13428 99162...

output:

1948
303
171
2144
1025
1121
1049
1370
2040
2421
1708
4949
259
1369
965
517
78
1989
131
37
553
335
3436
115
989
73
178
59
2354
27
242
3632
1096
45
45
1012
104
3905
250
4492
115
769
3565
1276
600
4491
3020
2196
35
438
1168
706
290
5
432
3244
67
29
1707
91
8199
44723
88
1785
1192
0
762
588
146
314
19
1...

result:

ok 400000 numbers

Test #58:

score: 0
Time Limit Exceeded

input:

100000 400000
68832 32373 8416 96939 39398 89861 29491 80771 77258 91216 42470 36368 41607 85762 23748 83036 89913 79306 47521 95952 29390 20501 22320 61997 44162 1438 68695 60447 44225 2645 58263 31482 15544 53525 58961 27875 52303 33973 73625 90950 47618 59073 53737 73936 31350 51029 30325 80075 6...

output:


result:


Subtask #5:

score: 0
Wrong Answer

Test #67:

score: 0
Wrong Answer
time: 807ms
memory: 312556kb

input:

100000 1000000
6457 23693 90928 23592 90440 75018 16865 3342 83718 16731 95103 31510 38719 27886 29093 41955 6596 46409 51839 10527 91993 61074 14405 34833 53674 42363 11490 43757 46191 6058 59164 96938 57858 40178 97523 84164 21582 72243 11267 47368 97058 6637 95208 60092 53943 16441 28363 64965 52...

output:

52956
18767
1319
13405
11021
455
50595
81481
6813
3640
58937
10991
70
4713
36
9517
39731
1166
67346
74637
2667
45182
4914
6774
1625
4198
52270
30435
60137
48654
29768
2815
6846
73091
21944
49693
9923
46795
29787
6866
2435
20773
2959
34666
4377
2428
4582
7527
38292
7253
3586
63817
28075
43828
20215
1...

result:

wrong answer 76361st numbers differ - expected: '0', found: '1'

Subtask #6:

score: 0
Skipped

Dependency #1:

100%
Accepted

Dependency #2:

0%