QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#619839#4924. 蜘蛛爬树Hunster58 2709ms158804kbC++2010.2kb2024-10-07 15:35:402024-10-07 15:35:40

Judging History

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

  • [2024-10-07 15:35:40]
  • 评测
  • 测评结果:58
  • 用时:2709ms
  • 内存:158804kb
  • [2024-10-07 15:35:40]
  • 提交

answer

#include <bits/stdc++.h>

namespace IO {
    #ifdef _DEBUG
    constexpr int MAX_SIZE = 1;
    #else
    constexpr int MAX_SIZE = 1 << 20;
    #endif
    class Reader {
    private:
        FILE *file;
        char buff[MAX_SIZE], *p1, *p2;
        int getchar() {
            if (p1 == p2) p2 = (p1 = buff) + fread(buff, 1, MAX_SIZE, file);
            return p1 == p2 ? EOF : *p1++;
        }
    public:
        Reader(FILE *_file) {
            file = _file;
            p1 = p2 = buff;
        }
        Reader(const char* file_dir) {
            file = std::fopen(file_dir, "r");
            p1 = p2 = buff;
        }
        void read() {}
        template<typename... Args>
        void read(int &x, Args &...other) {
            int f, ch;
            x = f = 0;
            ch = getchar();
            for (; !isdigit(ch); ch = getchar()) f ^= ch == '-';
            for (; isdigit(ch); ch = getchar()) x = x * 10 + (ch ^ 48);
            if (f) x = -x;
            read(other...);
        }
        template<typename... Args>
        void read(long long &x, Args &...other) {
            int f, ch;
            x = f = 0;
            ch = getchar();
            for (; !isdigit(ch); ch = getchar()) f ^= ch == '-';
            for (; isdigit(ch); ch = getchar()) x = x * 10 + (ch ^ 48);
            if (f) x = -x;
            read(other...);
        }
        template<typename... Args>
        void read(__int128 &x, Args &...other) {
            int f, ch;
            x = f = 0;
            ch = getchar();
            for (; !isdigit(ch); ch = getchar()) f ^= ch == '-';
            for (; isdigit(ch); ch = getchar()) x = x * 10 + (ch ^ 48);
            if (f) x = -x;
            read(other...);
        }
       template<typename... Args>
        void read(unsigned int &x, Args &...other) {
            int ch;
            x = 0;
            ch = getchar();
            for (; !isdigit(ch); ch = getchar()) ;
            for (; isdigit(ch); ch = getchar()) x = x * 10 + (ch ^ 48);
            read(other...);
        }
        template<typename... Args>
        void read(unsigned long long &x, Args &...other) {
            int ch;
            x = 0;
            ch = getchar();
            for (; !isdigit(ch); ch = getchar()) ;
            for (; isdigit(ch); ch = getchar()) x = x * 10 + (ch ^ 48);
            read(other...);
        }
        template<typename... Args>
        void read(unsigned __int128 &x, Args &...other) {
            int ch;
            x = 0;
            ch = getchar();
            for (; !isdigit(ch); ch = getchar()) ;
            for (; isdigit(ch); ch = getchar()) x = x * 10 + (ch ^ 48);
            read(other...);
        }
        template<typename... Args>
        void read(double &x, Args &...other) {
            int f, ch;
            x = f = 0;
            ch = getchar();
            for (; !isdigit(ch); ch = getchar()) f ^= ch == '-';
            for (; isdigit(ch); ch = getchar()) x = x * 10 + (ch ^ 48);
            if (ch == '.') {
                double e = 1;
                for (ch = getchar(); isdigit(ch); ch = getchar())
                    x += (ch ^ 48) * (e *= .1);
            }
            if (f) x = -x;
            read(other...);
        }
        template<typename... Args>
        void read(char &ch, Args &...other) {
            ch = getchar();
            while (!isgraph(ch)) ch = getchar();
            read(other...);
        }
        template<typename... Args>
        void read(std::string &s, Args &...other) {
            char ch;
            s = "";
            ch = getchar();
            for (; !isgraph(ch);) ch = getchar();
            for (; isgraph(ch); ch = getchar()) s += ch;
            read(other...);
        }
        template<typename... Args>
        void read(long double &x, Args &...other) {
            int f, ch;
            x = f = 0;
            ch = getchar();
            for (; !isdigit(ch); ch = getchar()) f ^= ch == '-';
            for (; isdigit(ch); ch = getchar()) x = x * 10 + (ch ^ 48);
            if (ch == '.') {
                long double e = 1;
                for (ch = getchar(); isdigit(ch); ch = getchar())
                    x += (ch ^ 48) * (e *= .1);
            }
            if (f) x = -x;
            read(other...);
        }
        void read(char* s) {
            char ch;
            ch = getchar();
            while (!isgraph(ch)) ch = getchar();
            for (; isgraph(ch); ch = getchar()) *s++ = ch;
            *s = 0;
        }
    };
}
IO::Reader reader(stdin);

using LL = long long;
constexpr int inf32 = (int)(1e9) + 9;
constexpr LL inf64 = (LL)(1e18) + 18;

constexpr int N = 200005;

int n, m, q, a[N];
std::vector<std::pair<int, LL>> graph[N];

struct Func {
    LL k, b;
    LL operator()(LL x) { return k * x + b; }
};
struct ST1 {
    struct Node {
        int son[2];
        Func func;
    };
    int tot;
    Node node[N * 400];
    int &ls(int u) { return node[u].son[0]; }
    int &rs(int u) { return node[u].son[1]; }
    void insert(int &u, int l, int r, Func func) {
        if (!u) {
            u = ++tot;
            ls(u) = rs(u) = 0;
            node[u].func = func;
            return;
        }
        int mid = (l + r) >> 1;
        if (func(mid) < node[u].func(mid)) std::swap(func, node[u].func);
        if (l == r) return;
        if (func(l) < node[u].func(l)) insert(ls(u), l, mid, func);
        if (func(r) < node[u].func(r)) insert(rs(u), mid + 1, r, func);
    }
    LL query(int u, int l, int r, int x) {
        if (!u) return inf64;
        LL res = node[u].func(x);
        int mid = (l + r) >> 1;
        if (x <= mid) res = std::min(res, query(ls(u), l, mid, x));
        else res = std::min(res, query(rs(u), mid + 1, r, x));
        return res;
    }
};
ST1 st1;
struct ST2 {
    int tree[N << 2];
    int ls(int u) { return u << 1; }
    int rs(int u) { return u << 1 | 1; }
    void clear(int u, int l, int r) {
        tree[u] = 0;
        if (l == r) return;
        int mid = (l + r) >> 1;
        clear(ls(u), l, mid);
        clear(rs(u), mid + 1, r);
    }
    void insert(int u, int l, int r, int x, Func func) {
        st1.insert(tree[u], 0, m, func);
        if (l == r) return;
        int mid = (l + r) >> 1;
        if (x <= mid) insert(ls(u), l, mid, x, func);
        else insert(rs(u), mid + 1, r, x, func);
    }
    LL query(int u, int l, int r, int x, int y, int p) {
        if (x <= l && r <= y) return st1.query(tree[u], 0, m, p);
        LL res = inf64;
        int mid = (l + r) >> 1;
        if (x <= mid) res = std::min(res, query(ls(u), l, mid, x, y, p));
        if (y > mid) res = std::min(res, query(rs(u), mid + 1, r, x, y, p));
        return res;
    }
};
ST2 st2;

LL dis[N], wt[N];
int dep[N], fa[N], size[N], wson[N], top[N], dfc, dfn[N];
void pre_dfs1(int u, int p) {
    size[u] = 1;
    dep[u] = dep[p] + 1;
    for (auto [v, w] : graph[u]) {
        if (v == p) continue;
        wt[v] = w;
        fa[v] = u;
        dis[v] = dis[u] + w;
        pre_dfs1(v, u);
        size[u] += size[v];
        if (size[v] > size[wson[u]]) wson[u] = v;
    }
}
void pre_dfs2(int u, int t) {
    top[u] = t;
    dfn[u] = ++dfc;
    if (wson[u]) pre_dfs2(wson[u], t);
    for (auto [v, w] : graph[u]) {
        if (v == fa[u]) continue;
        if (v == wson[u]) continue;
        pre_dfs2(v, v);
    }
}
int lca(int x, int y) {
    while (top[x] != top[y]) {
        if (dep[top[x]] > dep[top[y]]) std::swap(x, y);
        y = fa[top[y]];
    }
    if (dep[x] > dep[y]) std::swap(x, y);
    return x;
}

std::tuple<int, int, int> e[N]; 
LL ans0[N], ans1[N];
std::vector<std::tuple<int, int, LL>> h[N];

int main() {
    reader.read(n, m, q);
    for (int i = 1; i <= n; i++) reader.read(a[i]);
    for (int i = 1; i < n; i++) {
        int x, y; LL w;
        reader.read(x, y, w);
        graph[x].push_back({y, w});
        graph[y].push_back({x, w});
    }
    pre_dfs1(1, 0);
    pre_dfs2(1, 1);
    for (int i = 1; i <= q; i++) {
        LL u0, u1, v0, v1;
        reader.read(u1, v1);
        u0 = (u1 - 1) / n;
        u1 -= u0 * n;
        v0 = (v1 - 1) / n;
        v1 -= v0 * n;
        int d = std::abs(u0 - v0), p = lca(u1, v1);
        ans0[i] = dis[u1] + dis[v1] - 2 * dis[p];
        ans1[i] = inf64;
        e[i] = {(int)u1, (int)v1, d};
    }
    for (int i = 1; i <= n; i++) {
        st2.insert(1, 1, n, dfn[i], {a[i], 0});
        for (int j = fa[top[i]]; j; j = fa[top[j]])
            st2.insert(1, 1, n, dfn[j], {a[i], 2 * (dis[i] - dis[j])});
    }
    for (int i = 1; i <= q; i++) {
        auto [u1, v1, d] = e[i];
        int p = lca(u1, v1);
        h[p].push_back({i, d, -2 * dis[p]});
        for (int u = u1, t; dep[u] >= dep[p]; u = fa[t]) {
            h[u].push_back({i, d, -2 * dis[u]});
            t = dep[top[u]] > dep[p] ? top[u] : p;
            ans1[i] = std::min(ans1[i], st2.query(1, 1, n, dfn[t], dfn[u], d));
        }
        for (int u = v1, t; dep[u] >= dep[p]; u = fa[t]) {
            h[u].push_back({i, d, -2 * dis[u]});
            t = dep[top[u]] > dep[p] ? top[u] : p;
            ans1[i] = std::min(ans1[i], st2.query(1, 1, n, dfn[t], dfn[u], d));
        }
    }
    st1.tot = 0;
    st2.clear(1, 1, n);
    for (int i = 1; i <= n; i++) {
        st2.insert(1, 1, n, dfn[i], {a[i], -2 * dis[i]});
        for (int j = fa[top[i]]; j; j = fa[top[j]])
            st2.insert(1, 1, n, dfn[j], {a[i], 2 * dis[i] - 4 * dis[j]});
    }
    for (int i = 1; i <= q; i++) {
        auto [u1, v1, d] = e[i];
        int p = lca(u1, v1);
        for (int u = p; u; u = fa[top[u]]) {
            h[u].push_back({i, d, 2 * dis[p] - 4 * dis[u]});
            ans1[i] = std::min(ans1[i], st2.query(1, 1, n, dfn[top[u]], dfn[u], d) + 2 * dis[p]);
        }
    }
    st1.tot = 0;
    st2.clear(1, 1, n);
    for (int i = 1; i <= n; i++) st2.insert(1, 1, n, dfn[i], {a[i], 2 * dis[i]});
    for (int i = 1; i <= n; i++) {
        int l = dfn[i], r = l + size[i] - 1;
        for (auto [id, d, v] : h[i]) ans1[id] = std::min(ans1[id], st2.query(1, 1, n, l, r, d) + v);
    }
    for (int i = 1; i <= q; i++) printf("%lld\n", ans0[i] + ans1[i]);
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 3
Accepted

Test #1:

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

input:

97 99 1000
763118300 558295517 80676328 362318619 473105413 468927175 311496507 936935430 176032966 304576040 308583326 681580095 549392233 518152994 829474320 751189715 542810029 587869244 878512027 530678371 832766129 535259635 799122942 596982955 884696876 605325753 495661541 506105495 561218313 ...

output:

6130845802041
10806758605627
3440559556796
5426989115608
4458875959622
1566659300400
7908007295597
1846030561682
5112206409383
6968388472340
4706970599850
5270158948178
4633066810868
3176122148295
2331646415266
961435137842
14353365296423
9675072605938
4256954122467
7333255321628
8376795894537
12319...

result:

ok 1000 lines

Test #2:

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

input:

96 100 1000
31199641 534644486 57980198 794620020 322548308 524438614 467991232 68617179 243820212 229414440 471419229 316085673 271698528 136252783 926625435 615138376 200446739 551914057 483498389 879166147 512229523 45850421 337184110 799426876 46405170 427929494 235848997 861270528 291868400 616...

output:

2436336301732
4467388472930
6498834342013
6450642313333
4049880787954
7509100670176
5831628235154
4150554274586
3112250048344
202594784082
2974050754796
8714737807242
7727115169865
1321297431165
3071603311467
4662413775237
5469193332429
2306749862693
6240860740176
1297819731517
5602374629655
5876108...

result:

ok 1000 lines

Test #3:

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

input:

96 100 1000
557703101 38662752 91559144 406758463 248251717 279124287 667387330 272252891 892434115 281731667 162886140 786660171 350559478 909940602 476034354 78826379 748607300 381191755 708777514 223906483 954905399 405424569 356033791 565979037 5787205 21241249 399771402 280058652 527147793 5875...

output:

80606469890
86777173467
35481695596
11498756054
87983213070
37171191055
33172639202
31451029430
105454750479
31626589074
105218154775
46986908645
14488184465
20368758481
41150521804
57639739744
45269689956
24620398400
51392609182
44732144926
72097558763
13572235163
78364419227
40255815091
1195379951...

result:

ok 1000 lines

Test #4:

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

input:

96 96 1000
651436202 969634688 411838043 313319930 906863003 709869271 467187062 352351954 116039480 172098032 933097773 469945118 162439715 767382758 713254949 387661957 387494696 343642279 730353853 607472395 431993920 231539946 570437226 454446439 941394569 230535263 758579901 173778951 636556431...

output:

81136576805
65057090263
57308140599
70187240654
42682272024
83341639885
53487742661
53219947761
14656518493
18143524741
27930061212
75815621849
67528908552
39936561353
44548681818
122544815339
64143328818
13510734748
16412423500
108236922255
83503599273
53331146110
59331932211
93957710008
3825533077...

result:

ok 1000 lines

Test #5:

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

input:

100 97 1000
9442498 799978686 853182282 938513473 647407813 233204982 473300672 884708491 641608620 453797741 412704210 204494322 711344505 287815571 401113141 110034416 590478367 831110886 255614524 234577289 759353531 774504637 366342991 154214800 692604750 308540773 768713312 121270668 425512518 ...

output:

5006945326
9445360831
13045856109
4494648380
6833826505
3769548416
11380661054
5754815524
8246147623
4801077020
5798520769
1392753490
6948207422
12106173499
6097834765
4210216111
3541517785
5402770609
8790748574
10564152311
2826265999
5688050930
7790838243
2760570076
4835335024
5099967138
3178901350...

result:

ok 1000 lines

Test #6:

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

input:

100 100 1000
72360333 314738290 34206178 541145218 174183915 396182816 34673830 913434757 537587312 731274646 498514633 251108131 102959912 646618466 457048174 475505598 769612876 452196872 718739596 624410437 9031420 286458655 569299852 299007318 306647081 98662275 920437282 210801779 674405507 219...

output:

3655918495
8154487755
14137574021
9267685665
7011313073
12013474026
11488238672
8912382325
14741526855
17840835926
8748441239
7607949288
7949030269
10402650219
7895349896
9942798476
19632481428
6001424701
5150011606
14328944041
7536672479
10941755235
8915887826
11121022173
5570869661
5489621389
7171...

result:

ok 1000 lines

Test #7:

score: 3
Accepted
time: 3ms
memory: 16296kb

input:

100 100 1000
671289501 901524700 187943785 477991411 752983691 647246158 953320691 934684418 412368667 925367409 762075316 358848462 963075530 457549089 783006165 5363230 270806670 315603863 281313188 630063184 613102269 512390085 496057389 735900160 98801654 915737591 295267905 169463128 895274860 ...

output:

109982431024
38431175833
69772178732
48480356522
11451380583
20622728312
34853416584
49223376377
50708590192
23464488129
66396102290
49072787090
63071461232
100259758746
39605337609
43518034110
69171797185
76120124501
31732771736
43824267429
50401683487
18812219611
17592704047
40305088337
8902132735...

result:

ok 1000 lines

Test #8:

score: 3
Accepted
time: 3ms
memory: 14232kb

input:

100 100 1000
97012332 782222818 959933898 427265795 145416034 1879121 649904335 612684991 536487830 163534103 503165874 529288026 317196350 758782134 932469419 45296081 275446181 306725071 736168208 601979715 145679830 269223691 287672389 93736686 102440922 49242307 14300820 7040380 666185124 780231...

output:

43197564487
61281841688
44768770079
49385322040
35679440075
61129947858
71570620926
54095812113
65913522420
61326476305
50331061951
39723327870
52634647963
37572255373
44983995360
20296010788
65756945356
16562779626
52036714858
19671474013
46849723315
81935125579
28823217661
58491548742
63997977890
...

result:

ok 1000 lines

Test #9:

score: 3
Accepted
time: 2ms
memory: 10000kb

input:

1 2 5
1000000000
1 1
1 2
2 1
2 2
1 1

output:

0
1000000000
1000000000
0
0

result:

ok 5 lines

Test #10:

score: 3
Accepted
time: 2ms
memory: 16248kb

input:

2 1 5
2 1
1 2 1000000000000
1 1
1 2
2 2
1 1
2 1

output:

0
1000000000000
0
0
1000000000000

result:

ok 5 lines

Subtask #2:

score: 5
Accepted

Dependency #1:

100%
Accepted

Test #11:

score: 5
Accepted
time: 16ms
memory: 18388kb

input:

4968 1000000000 4947
35398 17280 28501 30106 20289 12704 8742 38872 40600 32757 4709 49509 18925 8232 12657 5856 35298 16182 34878 29788 22757 3667 6147 33251 10280 21807 9932 43760 25234 21837 2000 42316 42227 30480 48217 18842 12065 3569 33962 10434 9965 6816 46030 14352 7696 39388 37027 2641 4927...

output:

27171080853044
16475800995047
47858729923137
38839226619025
68829717991555
66238455750161
69391451769289
61015426629738
34984939995941
46894448125681
66492516637760
84920329286569
37539473678478
26863746705396
24228771920185
20757319444368
62547461012321
29240639472051
33274823206812
29763531850641
...

result:

ok 4947 lines

Test #12:

score: 5
Accepted
time: 21ms
memory: 16092kb

input:

4981 1000000000 4953
151742 15587 142065 128832 78714 10584 76914 106299 31568 52704 188707 28416 12984 61582 32999 186530 140703 147751 47543 175894 7752 191829 63929 114837 92045 50348 9699 45344 118713 116457 164914 29571 114745 130797 196228 187265 10152 1229 3383 97088 55723 174984 127564 39677...

output:

39175214953945
26200723643487
46943276265557
28283755650448
27784497704623
47477663513975
25153955655196
34658568119723
36390677477885
33283868432417
45462962712646
12634898326814
12553555762696
29763136584312
59969070638872
32014006456467
32113426391414
28135433219086
47248493737483
56523379856914
...

result:

ok 4953 lines

Test #13:

score: 5
Accepted
time: 14ms
memory: 20196kb

input:

5000 1000000000 5000
7709 49516 81404 252939 337304 22843 327351 119119 469819 411352 375305 439834 224988 108405 27787 377575 382742 28074 255120 112472 244686 267973 224537 126626 101857 58364 298859 89790 474293 329321 441367 108105 278126 181944 246403 415680 273376 409094 169364 339149 196519 3...

output:

224644098442606
54861440986602
467147774410064
30362267317869
296379104994566
473075396075640
122083966788904
272566888272189
216858876719405
215746767255802
347849462280931
520897037387102
19480747175957
76784800656757
227716313122157
66425147109923
371507621482925
352677699283994
15598007683275
59...

result:

ok 5000 lines

Test #14:

score: 5
Accepted
time: 13ms
memory: 13916kb

input:

5000 1000000000 5000
253265 289565 480218 817881 388719 980412 67414 134135 762536 232380 406531 204614 200869 487447 967573 799195 802628 529421 333062 23170 711366 781842 202481 635401 256687 178162 589701 440119 691724 314358 566777 600174 401029 556684 811778 442351 501890 561627 65781 824606 38...

output:

229741484116980
164175833276967
99443665231144
54979925948709
767846577154984
82615685235989
491961122361479
258830345532802
337194117311972
330754218569722
208052850590856
109736272716532
772091540293926
46512912591879
222739255582971
104104517451050
155728909685296
619218590510841
329616510853980
...

result:

ok 5000 lines

Test #15:

score: 5
Accepted
time: 22ms
memory: 14428kb

input:

5000 1000000000 5000
9165442 10032926 9324284 18687554 9961685 9532269 9821667 10084498 8903944 10118365 9775765 19733471 25638562 9383006 8825736 10428746 9066921 9401601 11694769 9998610 8896431 9186888 9834954 10583130 9321162 8943766 18203176 9463949 9187659 9612570 15398089 9597271 9774891 1006...

output:

3346954835952024
9683326417379824
3034185194974329
5653331361714484
4883637125911652
4144529883528686
1550288375157255
4849179484656607
7780090186793507
8760876193430258
2791370216037543
7961795785990098
3625625101008354
830776458752577
1201598422493424
5284514192781053
4673390841578381
221202738816...

result:

ok 5000 lines

Test #16:

score: 5
Accepted
time: 28ms
memory: 20672kb

input:

5000 1000000000 5000
10328285 10154180 9849852 9978950 9899905 10007975 9932544 9993918 9897530 10042306 9913325 9834599 10081669 9949843 12994559 10008823 9910840 11562770 9903505 10076660 9980716 9890836 9934511 12177770 9904174 9911365 10195395 9827430 9905113 10026600 9830577 9852209 10069231 99...

output:

1647385331743507
5524865815859729
3059643445230206
9470053705989838
9178562810279320
7549445324071426
2027312277087798
8273023856964174
9615573793436228
8112830816194948
8931306355319079
5885476349335756
1381279438337504
8765067046522175
2086999576794297
4002632440712670
7924144870658890
79357254043...

result:

ok 5000 lines

Test #17:

score: 5
Accepted
time: 26ms
memory: 20540kb

input:

5000 1000000000 5000
2513000 70283 123233 147800 2407113 6750 548577 2496501 1589521 382060 1078641 28843 12885 979911 249118 399277 335551 1496141 1161882 94180 1562518 1846018 2023612 688097 1505606 37597 1714464 2071436 2225125 2437519 1190287 1307370 1559871 443072 285850 1245177 429584 1750366 ...

output:

416853386301
245456106087
329277735132
507750960639
544942162618
258694401397
376595479438
395068151898
515513005035
523563370330
378130973019
272463853221
335748583419
223192323740
328497513286
436111548238
380723617773
389134126388
418340678864
415228727699
338316467895
344020792244
444955157605
5...

result:

ok 5000 lines

Test #18:

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

input:

1 2 5
1000000000
1 1
1 2
2 1
2 2
1 1

output:

0
1000000000
1000000000
0
0

result:

ok 5 lines

Test #19:

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

input:

2 1 5
2 1
1 2 1000000000000
1 1
1 2
2 2
1 1
2 1

output:

0
1000000000000
0
0
1000000000000

result:

ok 5 lines

Subtask #3:

score: 11
Accepted

Test #20:

score: 11
Accepted
time: 1741ms
memory: 105992kb

input:

200000 20 200000
679416469 548913625 468159997 137709609 883140368 682558021 473174374 400192350 124143873 825920417 372498686 851213321 822264481 78195915 5427143 453304163 233551905 810910186 810046144 52603791 282167184 385032797 81387991 747194790 917579656 585184539 12659388 249218417 158295502...

output:

920563165
270738856
355012553
363898450
515535908
734168762
81197110
448355845
204186827
966151314
377621564
856252543
311456222
368700872
197258906
567302636
172379629
579171621
1043838058
244996663
621435809
278057792
727463012
573783312
395879848
500677226
891900111
1031612062
771021332
691010101...

result:

ok 200000 lines

Test #21:

score: 11
Accepted
time: 1101ms
memory: 95136kb

input:

199998 20 199928
841581743 193826897 19260647 316900759 938030012 734551083 200340391 232139411 654311599 1143318 596086442 603556286 904977745 575551276 670573487 214312499 155571640 318139630 664877075 921888211 314261245 840096855 656620366 784431866 158438090 761901044 794827280 603867695 489777...

output:

623283525
8593864781
7874704109
155914357
3646556950
3740880356
3717912008
12901066587
1524759519
4985719750
2248493864
5114948482
3925676469
579421045
1507306567
2095047126
606785057
146334438
4045519468
8910005611
4581660381
4073333567
3935919804
676004871
2344714675
5021627074
5038533943
15002805...

result:

ok 199928 lines

Test #22:

score: 11
Accepted
time: 1434ms
memory: 107712kb

input:

200000 20 200000
986369289 907363922 363774806 860858089 709715562 958810333 925993952 387795500 17150414 148015078 97834597 563293239 667378418 806659943 610215443 524417320 750481911 623874575 259982271 991286339 284729472 528334897 723997495 992805109 87608435 211268145 108070673 872622387 564643...

output:

10054223674
507380699
3217502558
539269
6315538
1928038308
1387049352
9511170763
5162637476
42235828
121118538
4623727820
10063019655
3205838882
4165257188
7261364
8095368917
8506365
5447619
2143078432
7359894792
10046658768
5435463
9232067090
6457897508
9629262
6399644
10022553858
6118703
8574986
1...

result:

ok 200000 lines

Test #23:

score: 11
Accepted
time: 2372ms
memory: 143880kb

input:

200000 20 200000
747319812 390314311 314857121 211725609 263470750 979001169 50249481 658501549 959367948 893597081 177095123 795316289 460892240 678153548 117315462 524637159 259809686 647733605 266923024 115001443 857165610 939992604 661082449 538356122 31381162 71199751 506277142 981277756 241363...

output:

13662467103
15058589930
16458374764
15068421502
15811563571
13609092499
11356368656
16879299235
11336754159
13516222673
12846976402
18034454674
13386369283
17622328679
18631538755
15324696769
16685528530
14449065100
9460517704
13186912844
13733806309
18274703051
15926306728
14858932320
16642420472
1...

result:

ok 200000 lines

Test #24:

score: 11
Accepted
time: 1327ms
memory: 122912kb

input:

200000 20 200000
583112253 665093743 182048276 129269058 978415657 935953723 213813205 484649825 261214425 779189226 703649598 549454855 77715802 293926531 52713413 268118203 466091215 231039312 656528084 638468205 591205307 677293897 835642445 551021744 925782487 807259560 868830834 350378234 29765...

output:

316570302401
913144581593
913146543686
816894767104
544003812147
913148786078
468597633695
913144020995
913144301294
913147945181
183683477907
0
617634383371
666551848769
913147945181
5219486966
433656750247
524020417620
738877896143
913144301294
663163982315
913146543686
463256538270
913144861892
9...

result:

ok 200000 lines

Test #25:

score: 11
Accepted
time: 1356ms
memory: 95084kb

input:

199962 20 199931
203506003 500751161 109978444 459010003 360964084 934576878 62980626 287820619 391197904 676602559 355742604 562232069 46776374 245111830 792609360 310542062 980352907 366602017 761654096 990177701 115948816 787238197 996548404 415779854 365866565 515988075 727704701 717436079 63512...

output:

798529011
60397088
1873438365
2138547241
1144282606
4083769129
4025496730
2344294194
200221409
1327038796
156436273
2085005208
76583374
1449673130
1074781339
257136048
3879420993
1472989996
25734720
1192283175
3633170363
1661044557
1096662244
257544665
540683798
2288140683
601119764
3096222006
21406...

result:

ok 199931 lines

Test #26:

score: 11
Accepted
time: 3ms
memory: 16184kb

input:

1 2 5
1000000000
1 1
1 2
2 1
2 2
1 1

output:

0
1000000000
1000000000
0
0

result:

ok 5 lines

Test #27:

score: 11
Accepted
time: 0ms
memory: 16144kb

input:

2 1 5
2 1
1 2 1000000000000
1 1
1 2
2 2
1 1
2 1

output:

0
1000000000000
0
0
1000000000000

result:

ok 5 lines

Subtask #4:

score: 12
Accepted

Test #28:

score: 12
Accepted
time: 787ms
memory: 89900kb

input:

200000 1000000000 200000
28270302 472359923 262785485 923929785 393684160 761485431 72038469 116384740 426631758 437934930 610834083 455314140 734276543 903544756 220163018 756113376 732404264 947339315 109784905 625451008 794076307 818852312 758007217 124450858 674924509 311761991 507260538 7032362...

output:

29294995135992468
9003943574137677
39324997066279292
37544709020512848
57388992119827952
54425124319330092
19450449300737912
25838911017710871
2608104102967357
32395369352281774
5765752637876701
65609495812941401
57820177390587134
1971831067795873
19213682025389514
30244870693646792
3672338761985429...

result:

ok 200000 lines

Test #29:

score: 12
Accepted
time: 789ms
memory: 96052kb

input:

199957 1000000000 199978
484184824 891546207 975734696 100539020 831491149 39172314 864159331 720402805 776042647 843662372 935604278 544595844 393931465 659783207 863682602 900000494 79169772 921429466 469390191 891091094 53691506 616777249 622575840 230565013 939987814 175664187 663514526 67841276...

output:

19959327553591648
32010533345091793
15410299665390255
71446530548310580
42757122329520314
44547359192496305
40421459068680865
12617048458606361
68505071787885633
20229193415512477
3959463349380309
52345766780671421
22183426380065088
29440145261757182
3846326653273891
34476543006148377
40819831884710...

result:

ok 199978 lines

Test #30:

score: 12
Accepted
time: 1136ms
memory: 113384kb

input:

200000 1000000000 200000
422691889 268096182 223379104 268498792 392869265 1000000000 417073437 318368899 256962522 269513908 419697397 238567965 335189697 385837139 224219570 512586026 262793940 382819306 336110315 334843736 221179169 333772959 246702289 246377232 468460842 481454739 360039636 4372...

output:

224180993880896775
289564129076952626
275865980455069675
157628887637311054
198006388889029310
171540845366364406
335236582279069778
233727831092410768
286541513965424592
374120296090502383
310438489863336356
103195240752822032
189760302415610937
298279318492947402
291103583974138676
194715458020342...

result:

ok 200000 lines

Test #31:

score: 12
Accepted
time: 722ms
memory: 124140kb

input:

200000 1000000000 200000
602692841 601218040 601028255 1000000000 600403832 600232743 1000000000 599827124 599554412 1000000000 599301448 599113416 598989376 598786010 598636538 598553391 598370071 1000000000 598097301 598050441 597961490 1000000000 597806035 1000000000 597567223 597431163 597303663...

output:

209319542988838768
110577432223619722
125560261182969181
113185646498525815
136111861598679143
41978037866824629
96633947494918877
98374850209472659
242090527128147826
294694667971307324
138693418992158068
268811154379707206
69619449407249103
70205711769209505
59220392077886910
77428322381245404
195...

result:

ok 200000 lines

Test #32:

score: 12
Accepted
time: 2249ms
memory: 151744kb

input:

199931 1000000000 199922
4013211 29714 1234462 1104572 1387655 273547 2854143 48754 3708907 92381 2416194 746211 782254 120292 5006444 2861799 5079340 2465365 2124023 4872770 133080 4355785 24081 4909586 243019 478235 278274 765568 1623339 518688 1021168 1990694 15052 3907624 3158505 4801536 2792353...

output:

396961167374
239043328316
303627822911
432749619117
361386708539
232557605389
310510144596
367430698623
278512942021
502706642903
232040628241
132457354501
521368949201
242967590974
429550834513
471199557886
266915933583
223731337727
151159169817
156285897711
298457093414
348439300538
252319058294
3...

result:

ok 199922 lines

Test #33:

score: 12
Accepted
time: 2709ms
memory: 158804kb

input:

200000 1000000000 200000
5099932 4728906 2664545 3492339 646363 4078 481407 651875 32539 107203 1903484 515880 757323 3210572 10151 4880869 2293417 47189 3005497 2964135 91971 1797360 5095111 1494940 234796 3878867 4688923 399250 4093489 4917976 3217920 1135442 278278 2617067 2494154 4981268 4413226...

output:

491847427429
221565577072
416295244945
372886641436
238900215923
42152037417
220171926078
356278662471
242256776253
477527214604
97990314803
194326826650
543508546303
455921465239
422936284306
62633776772
240775687183
325298847287
546245176672
311618424599
365337654397
471518661673
232566667212
4090...

result:

ok 200000 lines

Test #34:

score: 12
Accepted
time: 0ms
memory: 10056kb

input:

1 2 5
1000000000
1 1
1 2
2 1
2 2
1 1

output:

0
1000000000
1000000000
0
0

result:

ok 5 lines

Test #35:

score: 12
Accepted
time: 2ms
memory: 14104kb

input:

2 1 5
2 1
1 2 1000000000000
1 1
1 2
2 2
1 1
2 1

output:

0
1000000000000
0
0
1000000000000

result:

ok 5 lines

Subtask #5:

score: 9
Accepted

Test #36:

score: 9
Accepted
time: 623ms
memory: 78488kb

input:

199918 1000000000 199903
1496 2382 3896 3664 1177 1627 2821 4200 3074 3783 2069 4403 629 2610 4991 4074 3033 2798 4333 3501 3667 3064 663 2821 2818 458 2950 4020 2665 3578 63 4855 4941 3492 2423 4510 1489 1018 4829 1912 3133 3174 309 287 2909 4102 4296 4526 3170 3683 4960 4863 4738 2927 2405 3600 44...

output:

1352416884531
1380463318391
923920163167
1525224977139
1405019709299
869269749781
715671043328
876194052054
1358007874327
127994985855
1230162209719
1532026808855
611656467332
1023855959729
414792924571
1316679734677
827308370883
1265411315424
821484360433
1051517948640
837509712760
582943943131
457...

result:

ok 199903 lines

Test #37:

score: 9
Accepted
time: 582ms
memory: 78412kb

input:

200000 1000 200000
809770918 700177243 142627650 840666719 799717263 288840787 130614153 965150450 584417569 833256629 453961603 553430999 842122932 156970995 233405993 462368588 449589390 97217337 576814616 526506175 16887352 919946415 588340411 47310125 508028561 746882745 289969878 38349443 85588...

output:

1585694392495
706038536805
586801212025
729763504879
1121912701709
602929530934
1384874490966
932809860298
1786651350814
1173133997984
642188971333
1847564817170
874110129257
1634207197990
1165001912684
860420326934
364758620851
736767366986
901294347345
1499330839732
451636930949
1002710230684
1556...

result:

ok 200000 lines

Test #38:

score: 9
Accepted
time: 1108ms
memory: 103388kb

input:

200000 1000000000 200000
399998482 399998882 643012112 481981456 399998451 475990021 399997292 399997409 399996369 399998092 399998185 399998416 399998701 399997027 399996347 1000000000 411997672 399996237 399997188 402404134 399996973 399998072 459327897 399997196 399997360 606704265 399997369 3999...

output:

56425935917250335
348929904541748910
43150321666095229
218746357373815571
108846332361563136
211578526026780722
142755080047590213
244555928973138123
59355666550218703
274305014995294225
171177308635990844
94566903236734112
84270300399685207
317423517245573254
902979060499211
14514565807335715
18696...

result:

ok 200000 lines

Test #39:

score: 9
Accepted
time: 1482ms
memory: 150172kb

input:

199989 1000000000 199949
5101893 2534711 252776 33497 4575476 620658 35790 1061631 1362697 834917 2062598 2789238 2540552 2557066 725856 2407848 4266144 1731334 653868 4676650 235573 2010805 1576557 922173 617762 1140093 387911 618359 2084018 2717580 9938 4014950 411349 3801906 341206 665844 2556003...

output:

376419619600
353028349944
783455928283
427146243318
508001272847
231025894377
614377184831
496116219491
384142701402
337878147372
528478063399
414595122323
604998898988
244135680083
319848781263
358386785447
481117281935
464006706964
356458898506
260105342030
610113746365
259007651455
414991108424
2...

result:

ok 199949 lines

Test #40:

score: 9
Accepted
time: 1443ms
memory: 152060kb

input:

200000 1000000000 200000
1101540 573488 61066 1014872 39283 626062 84341 591377 109026 505272 1339 74452 729192 49315 521939 959958 249731 940337 56264 1071790 609623 239862 57448 809987 464526 111430 226312 124386 673550 421690 211347 45875 138962 705453 739456 464892 44238 52980 905593 205558 5198...

output:

655436303263
616441802310
638361564730
586321577191
519122088245
660130086237
389806954608
241891011597
423594953230
510963332372
630353140994
627262451077
339051346548
308888235187
550167732447
354951509166
308776095000
597351022439
625625736560
772346222022
549689478477
667370706484
319926160326
2...

result:

ok 200000 lines

Test #41:

score: 9
Accepted
time: 2ms
memory: 12108kb

input:

1 2 5
1000000000
1 1
1 2
2 1
2 2
1 1

output:

0
1000000000
1000000000
0
0

result:

ok 5 lines

Test #42:

score: 9
Accepted
time: 0ms
memory: 16148kb

input:

2 1 5
2 1
1 2 1000000000000
1 1
1 2
2 2
1 1
2 1

output:

0
1000000000000
0
0
1000000000000

result:

ok 5 lines

Subtask #6:

score: 0
Time Limit Exceeded

Test #43:

score: 22
Accepted
time: 1267ms
memory: 98780kb

input:

200000 1000000000 200000
81882094 47220813 43282454 17633207 52769165 4830673 31396360 64793163 9174729 36727563 71268262 24662923 40146030 1430053 62926106 30042905 1330107 81817720 98841078 87766129 51155045 23216268 79896310 66625868 87854925 42976560 86542933 28336449 34932261 19698851 584453 90...

output:

516260625003899
380880451347644
183401242058615
56975236749493
349851829300288
188845759476214
188011317678919
414887287533565
111834744858133
305218494040213
227244584301956
365579485207024
201761449059479
246263150359463
468212144364502
389353276591541
207814284476264
341801277159919
4270404442188...

result:

ok 200000 lines

Test #44:

score: 22
Accepted
time: 813ms
memory: 91180kb

input:

200000 1000000000 200000
885272642 374759028 888606054 718260881 712640799 453067010 847699265 597983546 473777736 340935923 415594372 874762802 957196626 674414761 601425225 628341608 249369250 380959879 619963443 106167226 73865409 826858024 56062512 437693354 340445108 604619683 791991483 7300264...

output:

7769103153522109
21209520101497866
12453875916706553
21861512525349055
21994844775114551
22606385523748384
4962030058940312
20614777846726216
4514335046749431
20346398113954539
16479975916989640
2806007917483201
19622386582746420
22955087055842971
21041026349491377
24046136537255789
2041470515268697...

result:

ok 200000 lines

Test #45:

score: 22
Accepted
time: 871ms
memory: 91164kb

input:

200000 1000000000 200000
221911326 672598376 586864284 652343839 645072453 477182516 470253244 169559270 913860372 153896545 452982258 356042452 131678734 285479642 780356439 919192461 374130593 89810026 390686444 990599905 300023735 916489417 40995583 613948336 361863393 17299001 909709725 80365886...

output:

3850358894573407
4727815116715378
6494041025937004
4824435980551637
3378697610475978
5909426402365293
5518872599382274
4158124880334301
3937773073272371
9687643834151992
2427228601277127
2243767802218885
2464182590746753
8320457785791601
2372831686710907
7624139791764704
2729257787239080
90363701429...

result:

ok 200000 lines

Test #46:

score: 22
Accepted
time: 1662ms
memory: 112540kb

input:

199997 1000000000 200000
418668520 349968181 349972501 413151936 413168716 358529603 413712865 419740996 413260207 413754768 413754409 413644778 352475862 391987463 349972716 1000000000 349968635 376567534 413307389 413513241 392814142 413753730 349967166 349969051 365151841 349973369 413757992 3499...

output:

246430378081337415
289991643186437654
296315729206931331
364169975100364021
192595239991666627
57389957577630585
322772936556813385
154410265195118126
15121202928554667
95942665106074526
29110913867320341
247647043585119923
331278885019774528
399239706543450142
259799041077439947
308782410202237399
...

result:

ok 200000 lines

Test #47:

score: 0
Time Limit Exceeded

input:

199997 1000000000 200000
5099350 2290489 288943 3023893 498119 1980893 61654 4972753 2125310 135980 1090538 2954994 4015300 812572 4645903 3233143 1379788 818444 1534283 4069851 19634 2435868 4145501 16053 5943 3925849 3172608 871962 1005093 1205114 8917 758532 3035834 2817889 545073 3670544 5057079...

output:


result:


Subtask #7:

score: 18
Accepted

Dependency #1:

100%
Accepted

Dependency #2:

100%
Accepted

Test #63:

score: 18
Accepted
time: 311ms
memory: 39412kb

input:

49968 1000000000 49902
4944156 4815511 9240823 7764082 994590 2019985 2016609 9208180 4884222 2671715 5813918 8082427 5690017 4750252 6475214 2447878 7680249 8636430 6031922 1028528 2689700 1920015 8635882 5610090 9361349 7547902 5838245 7362790 240533 4193002 8850309 9498339 6763561 8096700 8938068...

output:

147810152409397
230645425302306
160441304695433
238455725485197
151518420272795
89423905495676
264381463305791
26003135435070
141049604858403
296733080938929
124815908476291
103612265239190
294621330837151
37345286479070
173931506215139
338013536841813
141749423526071
176332685271868
100579949751669...

result:

ok 49902 lines

Test #64:

score: 18
Accepted
time: 213ms
memory: 38448kb

input:

49992 1000000000 49940
2003853 7162895 5073437 4687230 8733918 4891966 9585850 2787024 4490309 8951710 3084011 2017075 6331315 9471938 4634613 7380596 9393089 7480628 8641884 7499894 7617210 7320006 2963810 8874914 1239543 2201128 367683 493261 8804646 2002828 2587756 2537102 5825294 2635981 2317652...

output:

1192124558433116
1981653758398286
131492379503681
1828718161216319
1958322264535191
2718288833339193
5545525628339003
1258671741508850
2038470552100596
158125886432957
7090062507557303
3100175107739547
4892661001763203
1058226003141961
6196281372191372
5857262064868095
5606420153949008
2324906833451...

result:

ok 49940 lines

Test #65:

score: 18
Accepted
time: 371ms
memory: 43176kb

input:

49998 1000000000 50000
86612478 86619871 86616593 86625839 125331781 89547617 86609503 91605216 108492497 86619067 108490056 102573028 100123774 86612275 108490617 100411209 86619293 108059385 86615859 86615581 86618876 102515951 86618273 108491746 86615096 86608662 86619989 95461459 108495689 10849...

output:

46588007956780978
16912616922030347
68816440058802851
59859890761572687
4324584371603449
41150830836227761
98964682918220242
16463790885070539
26923559929848641
34741982419511508
44081880582162509
16699955791334029
77486763689299350
47644447361354873
20590488138222942
42624882630816855
1943676197576...

result:

ok 50000 lines

Test #66:

score: 18
Accepted
time: 886ms
memory: 55388kb

input:

49998 1000000000 50000
147276 726692 85428 364478 261162 131999 5975 127116 255850 168671 8771 625319 250764 85078 20478 322021 673710 731815 271166 76570 89 641922 488850 545498 442407 235502 589490 10461 342766 204843 115760 21241 507284 353955 225355 238664 774748 121955 46987 283156 534477 11003...

output:

405732964288
389815059145
366883155022
480576233423
340957673244
276886953621
266040314535
315483568795
377498543215
287967570570
173379088116
425184427202
483249470808
316165910245
232288690777
326506749047
382101599711
319831809610
351707633713
302302658790
329611681562
313791814464
555167428970
1...

result:

ok 50000 lines

Test #67:

score: 18
Accepted
time: 606ms
memory: 50880kb

input:

50000 1000000000 50000
101262401 100536143 100365435 100184486 100243584 100284228 100198552 100169888 100093151 100108707 100205110 100169179 100143527 100103752 100198232 100161905 100137347 100040613 100060084 100062817 100081982 100106460 100093383 100082173 1000000000 1000000000 100066792 10004...

output:

47901860626149350
52232382847914312
90218649968616572
42631382542909940
36647005348668799
19354952802130848
97004968886549839
72457296305191529
29345838211855395
98177404260939908
68428525460081338
52198364330694788
77047427420663132
90114074853245639
16497709368555684
52426747053589783
459259106355...

result:

ok 50000 lines

Test #68:

score: 18
Accepted
time: 1122ms
memory: 67260kb

input:

50000 1000000000 50000
524803 524795 524761 524776 524784 524341 524752 524739 524406 524723 524693 524102 519665 524065 524676 524710 524647 523226 523524 524248 524386 524653 524588 523964 523483 493454 504537 523362 524045 524572 524540 524663 524639 524320 523998 516523 521071 522484 523255 5212...

output:

520801563887
424710496333
564668062064
519086118087
236559320312
321406462613
379662255710
561248644898
429089082728
278382083590
414240297257
420461694620
287355108541
650311376394
659818333322
375016109570
554437046804
290748686350
502354098558
290351680545
639284778784
619269650687
283577630955
5...

result:

ok 50000 lines

Test #69:

score: 18
Accepted
time: 356ms
memory: 47112kb

input:

49967 100000000 49939
701117221 588646986 250635677 490819080 359508742 82912689 975640737 148951097 961563837 896611020 819557131 873501952 449957989 404623941 210177503 597538891 917200690 672566561 463554086 287628304 183478309 501551961 334152945 392987668 73509920 772390859 839262537 574096155 ...

output:

1207936031638
118747020859
913818453498
1644050354708
817223329561
706074172118
1672964443553
141066605382
1407145149269
1688560430308
1609407772178
1043340942347
1038662043365
85922400375
500088949508
644923691873
737314327467
815737936927
766241606028
749631859737
1277317624066
387011109167
129041...

result:

ok 49939 lines

Test #70:

score: 18
Accepted
time: 512ms
memory: 47720kb

input:

49913 1000000000 49979
99810504 99876070 99674859 99671842 121208696 109186471 99585115 115003368 99783969 99704451 99754263 99600541 100684297 99559144 99580001 99741149 99530973 99522901 116531393 100029706 99610891 99694872 99612585 102122420 99797856 99715650 99824358 99846342 99489115 99593830 ...

output:

75021083161705494
3687116444114934
33411361173222204
79126378651836082
56591495019562750
1482076097167512
56522532505669444
80695581931849593
52335904470582196
93704259183420706
4723285457422075
19569230326587661
42900419987961232
27328370250770456
22085284801732060
30297428495631749
974078059303944...

result:

ok 49979 lines

Test #71:

score: 18
Accepted
time: 312ms
memory: 40088kb

input:

50000 1000000000 50000
95103343 149617502 97279041 103251933 102014267 119508947 98353262 101480638 102415936 97068407 100900889 121682528 103955675 97356468 95203299 100042191 106251861 98783592 98593775 99517269 97086090 121697940 124801062 100042858 101718302 96554305 96694019 98129049 95005801 9...

output:

47008496048832832
6162516818596597
70951257176722118
29100759507151473
88166200321392274
64056598481648073
66156822633782521
66675935261416948
37939987904485364
49032894641764951
3714533953620752
11014195987141948
53746717224033312
17686292264159632
28488972544308603
30657743644699744
11360321361349...

result:

ok 50000 lines

Test #72:

score: 18
Accepted
time: 197ms
memory: 39088kb

input:

50000 1000000000 50000
103326936 219737816 232003032 108252350 99998460 99998868 99999526 99999106 100000799 99999969 99999445 100000048 104592491 99999283 99998538 100001653 99999850 102463592 99998771 100000433 99998474 141904675 100000723 99999604 99999476 99998172 99999577 99998668 99999804 1085...

output:

77396062051816824
74085671312607659
95614601954590434
1170817688923755
68322185067625298
21395762642211971
5865433735431284
87051278899282142
10178618350135518
17930038769889394
66935732691981770
50355134911706497
91271949883795850
22072995466334107
65606069221844581
8650047742615250
902729326985898...

result:

ok 50000 lines

Test #73:

score: 18
Accepted
time: 1098ms
memory: 61208kb

input:

49975 1000000000 49931
84211 55336 252755 15254 246875 187979 49163 126582 104827 58559 36655 17384 81160 253364 81593 1088 6290 14081 251659 4443 118797 60225 53745 162953 15582 244560 117951 269103 42702 6237 50099 3903 21127 72300 9840 56844 214011 45170 68840 3741 273694 180905 197439 63969 8999...

output:

575538275842
300512392765
469007988507
267686303867
349105411769
426565773268
238390907849
587417902212
533805438581
543593700291
366847933070
532552325620
510568807260
496054751124
415287402994
471817548429
466789246262
29802468507
455288062652
310589058150
258539566001
285101078148
570433865779
22...

result:

ok 49931 lines

Test #74:

score: 18
Accepted
time: 707ms
memory: 48636kb

input:

50000 1000000000 50000
754556 604242 30208 542679 448867 603232 169511 354225 393639 16940 2193 368268 43224 102249 241678 534317 671413 332623 11291 665173 445259 11441 578280 424891 314203 550049 313612 20072 139534 290088 62216 145495 73893 192190 175869 47215 655361 3515 619712 42608 701347 6795...

output:

421930105097
547218226844
543311314309
361472439272
438190520204
509582782153
230599478684
307470715330
309194170439
285783941979
258161362851
537532959643
429828501604
81224380835
188673519826
467110827147
605775726908
316487391961
532219227736
187828657740
567658393497
314324203311
209209137040
19...

result:

ok 50000 lines

Test #75:

score: 18
Accepted
time: 514ms
memory: 49564kb

input:

50000 1000000000 50000
1134165 347193 180933 1053859 2312 372547 1078267 1083658 382385 429520 845927 395979 56002 1225717 5183 967972 32075 9216 287034 751452 628631 7947 130616 668468 381268 494670 63653 785586 63015 1106385 403603 690434 834061 44355 63162 1080532 968842 1138436 352645 340186 112...

output:

349435172399
586604962022
606751966296
387956419936
324606135217
566474644490
481850670002
415647494771
497633859377
242556355951
527762334456
385191095006
290638807846
404327548248
397808031771
263595093054
593329584989
626157577441
353475221277
368014304022
575210926858
504674983709
508778344452
4...

result:

ok 50000 lines

Test #76:

score: 18
Accepted
time: 1072ms
memory: 59628kb

input:

50000 1000000000 50000
274244 273876 274594 271268 273839 274432 274721 268995 270279 273020 273609 274253 273402 274649 274806 263610 265880 267775 267994 272814 272654 259494 271788 274185 273958 272774 272647 274201 274141 274851 274655 262196 233119 253829 265810 265620 264446 264733 265915 2722...

output:

55136692089
250834673323
344674479053
78834875741
236060056920
126799931193
204097179679
123034533236
400642413809
145026515187
220587028923
222928708321
273855371961
222554351044
163751461798
177715135672
177886265475
335250135690
163796577274
275368772016
344319231518
181453404240
287633135961
103...

result:

ok 50000 lines

Test #77:

score: 18
Accepted
time: 2ms
memory: 10164kb

input:

1 2 5
1000000000
1 1
1 2
2 1
2 2
1 1

output:

0
1000000000
1000000000
0
0

result:

ok 5 lines

Test #78:

score: 18
Accepted
time: 3ms
memory: 14148kb

input:

2 1 5
2 1
1 2 1000000000000
1 1
1 2
2 2
1 1
2 1

output:

0
1000000000000
0
0
1000000000000

result:

ok 5 lines

Test #79:

score: 18
Accepted
time: 250ms
memory: 38452kb

input:

50000 4000000 50000
382301843 633396262 827855850 48475432 887864673 687939704 607616554 120228975 79407125 84139528 423498566 584293361 905756486 849324647 151892270 764293038 694946413 931202330 770860665 393234279 567989976 686902309 361150294 994395718 504779657 289443347 75618549 598869058 3999...

output:

424106350335457
1125014398223421
455079888665385
766178112932568
527984154416466
619833051400100
1123830521865158
1125226434262619
148338745040548
971461232920796
414954093909887
622070581630960
512228784337357
895851145651473
881736770328828
969296466259934
537957040677244
1123619626410926
57196391...

result:

ok 50000 lines

Test #80:

score: 18
Accepted
time: 236ms
memory: 37652kb

input:

50000 1000000000 50000
3449221 2102673 2176708 696083 2506047 2432759 3297061 3076792 540192 1174 269187 243193 526878 3817928 3323318 2451113 2785608 3544672 707021 382876 3819594 2558361 595693 1282087 2296605 3089284 3989615 2265754 1949186 550386 2291305 899744 2631735 3181412 367832 3727 214611...

output:

508181937298650
46279739241752
1018973544656104
1265677558399170
629480405891489
48385337538677
806138663484583
1042571321208996
818149646972220
569452420814038
123280847744172
1265741747019876
714734464602640
286481219912146
1265727961782487
756563441554218
716054097571375
171322023576204
126565268...

result:

ok 50000 lines

Test #81:

score: 18
Accepted
time: 539ms
memory: 49772kb

input:

50000 1000000000 50000
99576593 98734697 97524742 97810575 99289324 98135482 97797653 98620702 97695682 163605131 97936493 98333350 98003113 99273070 97575097 98634231 97462634 97943735 97594517 98038106 97630836 100822998 98135923 97939696 106718214 98140511 98659048 97615297 98503308 101723090 992...

output:

82950625033043526
74253135347159837
60884710255754091
84740747428531022
66956889787680848
21526721179617801
46875382323933928
26884330743856575
51455205640946454
86503964949033473
66869460714280650
22310817075948757
20187728367206704
38976799423009773
87817556427002773
38579576546564774
699333023072...

result:

ok 50000 lines

Test #82:

score: 18
Accepted
time: 1187ms
memory: 66632kb

input:

50000 1000000000 50000
447243 16285 126704 6176 53588 87042 261073 395620 76727 336604 47553 487612 219730 46634 431675 305257 1800 19013 214222 2324 18455 394370 442219 419889 171 230338 2889 518616 454899 53901 449709 69183 414430 43 104954 458113 109502 302689 83202 6297 14561 290169 80230 90905 ...

output:

373917380256
378326235442
422123400
72615600
278817150388
375477068213
268375058031
268753664685
223496700
326275942584
88046683618
155838421208
3782880459
294486412398
375408863513
179078632044
261331037610
158744400
350019357893
157523165141
378079747280
191464466775
87594736848
278073519674
31828...

result:

ok 50000 lines

Test #83:

score: 18
Accepted
time: 1191ms
memory: 70744kb

input:

50000 1000000000 50000
233570 4572 265455 26312 194346 256089 156368 192860 91078 252234 27682 172842 31727 92384 16930 162122 84095 911 184949 158481 58631 244106 179366 1656 115521 5587 265185 123234 9568 32678 40157 158757 8050 101042 35141 10232 132569 155735 153746 223237 249962 3881 119542 253...

output:

121669595177
283246371516
278267972133
223194073315
261820205854
321376970576
313046043702
180048804510
362418761931
223964070367
405564550265
248415535249
257550775258
254709096137
166837269756
295074013994
277887325188
387123587634
330498043181
342157238429
229396986326
362931606211
239179644224
3...

result:

ok 50000 lines

Test #84:

score: 18
Accepted
time: 530ms
memory: 48616kb

input:

50000 1000000000 50000
116148600 96494196 96846514 102901566 95839781 96755789 97247372 114734508 95819490 95644709 95633495 99580181 106565039 98930619 95824589 98207917 96246800 97927785 97962897 100846363 95697463 95758986 106405173 95904121 101525399 98757319 98937921 96940376 102559409 98572697...

output:

76042316296232337
79190014018617130
50958903488352320
45733597598894250
84359580387743721
7411365772197816
82484049041815905
51983488354616909
92619695827498568
84091249944402926
30168374771314228
62304529338472472
46777277486973575
42293296273527556
81745618788159884
12278184899304622
1844182841943...

result:

ok 50000 lines

Subtask #8:

score: 0
Skipped

Dependency #1:

100%
Accepted

Dependency #2:

100%
Accepted

Dependency #3:

100%
Accepted

Dependency #4:

100%
Accepted

Dependency #5:

100%
Accepted

Dependency #6:

0%