QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#525707#2674. Vision programarbuzick#32 22ms5352kbC++204.6kb2024-08-20 20:55:362024-08-20 20:55:39

Judging History

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

  • [2024-08-20 20:55:39]
  • 评测
  • 测评结果:32
  • 用时:22ms
  • 内存:5352kb
  • [2024-08-20 20:55:36]
  • 提交

answer

#include "vision.h"

#include <bits/stdc++.h>

using namespace std;

vector<int> get_short(vector<int> ns) {
    map<int, int> cnt;
    for (auto vl : ns) {
        cnt[vl]++;
    }
    vector<int> ns2;
    for (auto [vl, c] : cnt) {
        if (c % 2 == 1) {
            ns2.push_back(vl);
        }
    }
    if (ns2.empty()) {
        ns2.push_back(ns[0]);
        ns2.push_back(ns[0]);
    }
    return ns2;
}

vector<vector<int>> multiply(vector<int> a, vector<int> b) {
    vector<vector<int>> res(a.size() + b.size() - 1);
    if (a.size() == 1) {
        for (int i = 0; i < (int)res.size(); ++i) {
            res[i].push_back(add_and({a[0], b[i]}));
        }
        return res;
    }
    vector<int> a1, a2, b1, b2;
    for (int i = 0; i < (int)a.size() / 2; ++i) {
        a1.push_back(a[i]);
    }
    for (int i = (int)a.size() / 2; i < (int)a.size(); ++i) {
        a2.push_back(a[i]);
    }
    for (int i = 0; i < (int)b.size() / 2; ++i) {
        b1.push_back(b[i]);
    }
    for (int i = (int)b.size() / 2; i < (int)b.size(); ++i) {
        b2.push_back(b[i]);
    }

    vector<int> a12(max(a1.size(), a2.size())), b12(max(b1.size(), b2.size()));
    for (int i = 0; i < (int)a12.size(); ++i) {
        if (i < (int)a1.size() && i < (int)a2.size()) {
            a12[i] = add_xor({a1[i], a2[i]});
        } else if (i < (int)a1.size()) {
            a12[i] = a1[i];
        } else {
            a12[i] = a2[i];
        }
    }
    for (int i = 0; i < (int)b12.size(); ++i) {
        if (i < (int)b1.size() && i < (int)b2.size()) {
            b12[i] = add_xor({b1[i], b2[i]});
        } else if (i < (int)b1.size()) {
            b12[i] = b1[i];
        } else {
            b12[i] = b2[i];
        }
    }

    vector<vector<int>> res1 = multiply(a1, b1), res2 = multiply(a12, b12), res3 = multiply(a2, b2);
    vector<vector<int>> temp(res.size());
    for (int i = 0; i < (int)res2.size(); ++i) {
        if (i < (int)res1.size() && i < (int)res2.size()) {
            for (auto vl : res1[i]) {
                temp[i + a1.size()].push_back(vl);
            }
            for (auto vl : res3[i]) {
                temp[i + a1.size()].push_back(vl);
            }
        } else if (i < (int)res1.size()) {
            for (auto vl : res1[i]) {
                temp[i + a1.size()].push_back(vl);
            }
        } else if (i < (int)res3.size()) {
            for (auto vl : res3[i]) {
                temp[i + a1.size()].push_back(vl);
            }
        }
    }
    for (int i = 0; i < (int)res1.size(); ++i) {
        for (auto vl : res1[i]) {
            temp[i].push_back(vl);
        }
    }
    for (int i = 0; i < (int)res2.size(); ++i) {
        for (auto vl : res2[i]) {
            temp[i + a1.size()].push_back(vl);
        }
    }
    for (int i = 0; i < (int)res3.size(); ++i) {
        for (auto vl : res3[i]) {
            temp[i + a1.size() + b1.size()].push_back(vl);
        }
    }

    return temp;
}

void construct_network(int h, int w, int k) {
    vector<int> hs(h), ws(w);
    for (int i = 0; i < h; ++i) {
        vector<int> ns;
        for (int j = 0; j < w; ++j) {
            ns.push_back(i * w + j);
        }
        hs[i] = add_or(ns);
    }
    for (int i = 0; i < w; ++i) {
        vector<int> ns;
        for (int j = 0; j < h; ++j) {
            ns.push_back(j * w + i);
        }
        ws[i] = add_or(ns);
    }
    vector<int> hd(h), wd(w);
    vector<int> a = hs, b = hs;
    reverse(b.begin(), b.end());
    vector<vector<int>> res = multiply(a, b);
    hd[0] = add_xor(hs);
    for (int i = 1; i < h; ++i) {
        res[h - 1 - i] = get_short(res[h - 1 - i]);
        res[h - 1 + i] = get_short(res[h - 1 + i]);
        int t1 = add_xor(res[h - 1 - i]);
        // int t2 = add_xor(res[h - 1 + i]);
        // hd[i] = add_or({t1, t2});
        hd[i] = t1;
    }
    a = ws, b = ws;
    reverse(b.begin(), b.end());
    res = multiply(a, b);
    wd[0] = add_xor(ws);
    for (int i = 1; i < w; ++i) {
        res[w - 1 - i] = get_short(res[w - 1 - i]);
        res[w - 1 + i] = get_short(res[w - 1 + i]);
        int t1 = add_xor(res[w - 1 - i]);
        // int t2 = add_xor(res[w - 1 + i]);
        // wd[i] = add_or({t1, t2});
        wd[i] = t1;
    }
    vector<int> temp;
    for (int i = 0; i < (int)hd.size() && i <= k; ++i) {
        if (k - i < (int)wd.size()) {
            if (w != 1 && h != 1) {
                temp.push_back(add_and({hd[i], wd[k - i]}));
            } else if (i == 0 || i == k) {
                temp.push_back(add_and({hd[i], wd[k - i]}));
            }
        }
    }
    add_or(temp);
}

详细

Subtask #1:

score: 10
Accepted

Test #1:

score: 10
Accepted
time: 0ms
memory: 3740kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
1 3 1
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
24
1 3 0 1 2
1 1 0
1 1 1
1 1 2
0 2 3 3
2 1 3
2 2 4 5
2 2 6 5
0 2 4 6
2 2 9 6
2 2 10 4
0 2 9 10
0 2 12 13
0 2 6 4
2 2 5 6
2 2 5 4
0 2 5 5
0 2 17 18
0 2 6 4
2 3 4 5 6
2 3 11 14 19
2 1 11
0 2 8 23
1 1 25

result:

ok 

Test #2:

score: 10
Accepted
time: 0ms
memory: 3796kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
1 3 2
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
24
1 3 0 1 2
1 1 0
1 1 1
1 1 2
0 2 3 3
2 1 3
2 2 4 5
2 2 6 5
0 2 4 6
2 2 9 6
2 2 10 4
0 2 9 10
0 2 12 13
0 2 6 4
2 2 5 6
2 2 5 4
0 2 5 5
0 2 17 18
0 2 6 4
2 3 4 5 6
2 3 11 14 19
2 1 11
0 2 8 24
1 1 25

result:

ok 

Test #3:

score: 10
Accepted
time: 0ms
memory: 3788kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
3 1 1
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
24
1 1 0
1 1 1
1 1 2
1 3 0 1 2
2 2 3 4
2 2 5 4
0 2 3 5
2 2 7 5
2 2 8 3
0 2 7 8
0 2 10 11
0 2 5 3
2 2 4 5
2 2 4 3
0 2 4 4
0 2 15 16
0 2 5 3
2 3 3 4 5
2 3 9 12 17
2 1 9
0 2 6 6
2 1 6
0 2 21 24
1 1 25

result:

ok 

Test #4:

score: 10
Accepted
time: 0ms
memory: 3868kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
3 1 2
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
24
1 1 0
1 1 1
1 1 2
1 3 0 1 2
2 2 3 4
2 2 5 4
0 2 3 5
2 2 7 5
2 2 8 3
0 2 7 8
0 2 10 11
0 2 5 3
2 2 4 5
2 2 4 3
0 2 4 4
0 2 15 16
0 2 5 3
2 3 3 4 5
2 3 9 12 17
2 1 9
0 2 6 6
2 1 6
0 2 22 24
1 1 25

result:

ok 

Test #5:

score: 10
Accepted
time: 0ms
memory: 4100kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
2 2 1
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
21
1 2 0 1
1 2 2 3
1 2 0 2
1 2 1 3
2 2 4 5
2 2 5 4
0 2 4 5
0 2 8 9
0 2 5 4
2 2 4 5
2 1 10
2 2 6 7
2 2 7 6
0 2 6 7
0 2 15 16
0 2 7 6
2 2 6 7
2 1 17
0 2 13 21
0 2 14 20
1 2 22 23

result:

ok 

Test #6:

score: 10
Accepted
time: 0ms
memory: 3788kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
2 2 2
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
20
1 2 0 1
1 2 2 3
1 2 0 2
1 2 1 3
2 2 4 5
2 2 5 4
0 2 4 5
0 2 8 9
0 2 5 4
2 2 4 5
2 1 10
2 2 6 7
2 2 7 6
0 2 6 7
0 2 15 16
0 2 7 6
2 2 6 7
2 1 17
0 2 14 21
1 1 22

result:

ok 

Test #7:

score: 10
Accepted
time: 0ms
memory: 3792kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
2 3 1
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
31
1 3 0 1 2
1 3 3 4 5
1 2 0 3
1 2 1 4
1 2 2 5
2 2 6 7
2 2 7 6
0 2 6 7
0 2 11 12
0 2 7 6
2 2 6 7
2 1 13
2 2 8 9
2 2 10 9
0 2 8 10
2 2 18 10
2 2 19 8
0 2 18 19
0 2 21 22
0 2 10 8
2 2 9 10
2 2 9 8
0 2 9 9
0 2 26 27
0 2 10 8
2 3 8 9 10
2 3 20 23 28
2 1 20
0 2 16 ...

result:

ok 

Test #8:

score: 10
Accepted
time: 0ms
memory: 4076kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
2 3 2
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
31
1 3 0 1 2
1 3 3 4 5
1 2 0 3
1 2 1 4
1 2 2 5
2 2 6 7
2 2 7 6
0 2 6 7
0 2 11 12
0 2 7 6
2 2 6 7
2 1 13
2 2 8 9
2 2 10 9
0 2 8 10
2 2 18 10
2 2 19 8
0 2 18 19
0 2 21 22
0 2 10 8
2 2 9 10
2 2 9 8
0 2 9 9
0 2 26 27
0 2 10 8
2 3 8 9 10
2 3 20 23 28
2 1 20
0 2 16 ...

result:

ok 

Test #9:

score: 10
Accepted
time: 0ms
memory: 3784kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
2 3 3
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
30
1 3 0 1 2
1 3 3 4 5
1 2 0 3
1 2 1 4
1 2 2 5
2 2 6 7
2 2 7 6
0 2 6 7
0 2 11 12
0 2 7 6
2 2 6 7
2 1 13
2 2 8 9
2 2 10 9
0 2 8 10
2 2 18 10
2 2 19 8
0 2 18 19
0 2 21 22
0 2 10 8
2 2 9 10
2 2 9 8
0 2 9 9
0 2 26 27
0 2 10 8
2 3 8 9 10
2 3 20 23 28
2 1 20
0 2 17 ...

result:

ok 

Test #10:

score: 10
Accepted
time: 0ms
memory: 3788kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
3 2 1
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
31
1 2 0 1
1 2 2 3
1 2 4 5
1 3 0 2 4
1 3 1 3 5
2 2 6 7
2 2 8 7
0 2 6 8
2 2 11 8
2 2 12 6
0 2 11 12
0 2 14 15
0 2 8 6
2 2 7 8
2 2 7 6
0 2 7 7
0 2 19 20
0 2 8 6
2 3 6 7 8
2 3 13 16 21
2 1 13
2 2 9 10
2 2 10 9
0 2 9 10
0 2 27 28
0 2 10 9
2 2 9 10
2 1 29
0 2 24 33...

result:

ok 

Test #11:

score: 10
Accepted
time: 0ms
memory: 3788kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
3 2 2
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
31
1 2 0 1
1 2 2 3
1 2 4 5
1 3 0 2 4
1 3 1 3 5
2 2 6 7
2 2 8 7
0 2 6 8
2 2 11 8
2 2 12 6
0 2 11 12
0 2 14 15
0 2 8 6
2 2 7 8
2 2 7 6
0 2 7 7
0 2 19 20
0 2 8 6
2 3 6 7 8
2 3 13 16 21
2 1 13
2 2 9 10
2 2 10 9
0 2 9 10
0 2 27 28
0 2 10 9
2 2 9 10
2 1 29
0 2 25 33...

result:

ok 

Test #12:

score: 10
Accepted
time: 0ms
memory: 3792kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
3 2 3
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
30
1 2 0 1
1 2 2 3
1 2 4 5
1 3 0 2 4
1 3 1 3 5
2 2 6 7
2 2 8 7
0 2 6 8
2 2 11 8
2 2 12 6
0 2 11 12
0 2 14 15
0 2 8 6
2 2 7 8
2 2 7 6
0 2 7 7
0 2 19 20
0 2 8 6
2 3 6 7 8
2 3 13 16 21
2 1 13
2 2 9 10
2 2 10 9
0 2 9 10
0 2 27 28
0 2 10 9
2 2 9 10
2 1 29
0 2 26 33...

result:

ok 

Test #13:

score: 10
Accepted
time: 0ms
memory: 3796kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
3 3 1
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
41
1 3 0 1 2
1 3 3 4 5
1 3 6 7 8
1 3 0 3 6
1 3 1 4 7
1 3 2 5 8
2 2 9 10
2 2 11 10
0 2 9 11
2 2 15 11
2 2 16 9
0 2 15 16
0 2 18 19
0 2 11 9
2 2 10 11
2 2 10 9
0 2 10 10
0 2 23 24
0 2 11 9
2 3 9 10 11
2 3 17 20 25
2 1 17
2 2 12 13
2 2 14 13
0 2 12 14
2 2 31 14
2...

result:

ok 

Test #14:

score: 10
Accepted
time: 0ms
memory: 4092kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
3 3 2
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
42
1 3 0 1 2
1 3 3 4 5
1 3 6 7 8
1 3 0 3 6
1 3 1 4 7
1 3 2 5 8
2 2 9 10
2 2 11 10
0 2 9 11
2 2 15 11
2 2 16 9
0 2 15 16
0 2 18 19
0 2 11 9
2 2 10 11
2 2 10 9
0 2 10 10
0 2 23 24
0 2 11 9
2 3 9 10 11
2 3 17 20 25
2 1 17
2 2 12 13
2 2 14 13
0 2 12 14
2 2 31 14
2...

result:

ok 

Test #15:

score: 10
Accepted
time: 0ms
memory: 3816kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
3 3 3
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
41
1 3 0 1 2
1 3 3 4 5
1 3 6 7 8
1 3 0 3 6
1 3 1 4 7
1 3 2 5 8
2 2 9 10
2 2 11 10
0 2 9 11
2 2 15 11
2 2 16 9
0 2 15 16
0 2 18 19
0 2 11 9
2 2 10 11
2 2 10 9
0 2 10 10
0 2 23 24
0 2 11 9
2 3 9 10 11
2 3 17 20 25
2 1 17
2 2 12 13
2 2 14 13
0 2 12 14
2 2 31 14
2...

result:

ok 

Test #16:

score: 10
Accepted
time: 0ms
memory: 3816kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
3 3 4
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
40
1 3 0 1 2
1 3 3 4 5
1 3 6 7 8
1 3 0 3 6
1 3 1 4 7
1 3 2 5 8
2 2 9 10
2 2 11 10
0 2 9 11
2 2 15 11
2 2 16 9
0 2 15 16
0 2 18 19
0 2 11 9
2 2 10 11
2 2 10 9
0 2 10 10
0 2 23 24
0 2 11 9
2 3 9 10 11
2 3 17 20 25
2 1 17
2 2 12 13
2 2 14 13
0 2 12 14
2 2 31 14
2...

result:

ok 

Test #17:

score: 10
Accepted
time: 0ms
memory: 3884kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
1 2 1
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
14
1 2 0 1
1 1 0
1 1 1
0 2 2 2
2 1 2
2 2 3 4
2 2 4 3
0 2 3 4
0 2 7 8
0 2 4 3
2 2 3 4
2 1 9
0 2 6 13
1 1 14

result:

ok 

Test #18:

score: 10
Accepted
time: 0ms
memory: 3792kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
2 1 1
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
14
1 1 0
1 1 1
1 2 0 1
2 2 2 3
2 2 3 2
0 2 2 3
0 2 5 6
0 2 3 2
2 2 2 3
2 1 7
0 2 4 4
2 1 4
0 2 11 13
1 1 14

result:

ok 

Subtask #2:

score: 11
Accepted

Test #19:

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

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
1 9 3
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
120
1 9 0 1 2 3 4 5 6 7 8
1 1 0
1 1 1
1 1 2
1 1 3
1 1 4
1 1 5
1 1 6
1 1 7
1 1 8
0 2 9 9
2 1 9
2 2 10 14
2 2 11 15
2 2 12 16
2 2 13 17
2 2 18 14
2 2 17 13
2 2 16 12
2 2 15 11
2 2 10 12
2 2 11 13
2 2 18 16
2 2 17 15
2 2 10 11
2 2 18 17
0 2 10 18
0 2 33 34
0 2 11...

result:

ok 

Test #20:

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

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
9 1 5
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
120
1 1 0
1 1 1
1 1 2
1 1 3
1 1 4
1 1 5
1 1 6
1 1 7
1 1 8
1 9 0 1 2 3 4 5 6 7 8
2 2 9 13
2 2 10 14
2 2 11 15
2 2 12 16
2 2 17 13
2 2 16 12
2 2 15 11
2 2 14 10
2 2 9 11
2 2 10 12
2 2 17 15
2 2 16 14
2 2 9 10
2 2 17 16
0 2 9 17
0 2 31 32
0 2 10 16
2 2 27 28
2 2 ...

result:

ok 

Test #21:

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

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
10 5 2
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
184
1 5 0 1 2 3 4
1 5 5 6 7 8 9
1 5 10 11 12 13 14
1 5 15 16 17 18 19
1 5 20 21 22 23 24
1 5 25 26 27 28 29
1 5 30 31 32 33 34
1 5 35 36 37 38 39
1 5 40 41 42 43 44
1 5 45 46 47 48 49
1 10 0 5 10 15 20 25 30 35 40 45
1 10 1 6 11 16 21 26 31 36 41 46
1 10 2 7 1...

result:

ok 

Test #22:

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

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
5 10 12
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
183
1 10 0 1 2 3 4 5 6 7 8 9
1 10 10 11 12 13 14 15 16 17 18 19
1 10 20 21 22 23 24 25 26 27 28 29
1 10 30 31 32 33 34 35 36 37 38 39
1 10 40 41 42 43 44 45 46 47 48 49
1 5 0 10 20 30 40
1 5 1 11 21 31 41
1 5 2 12 22 32 42
1 5 3 13 23 33 43
1 5 4 14 24 34 44
1...

result:

ok 

Test #23:

score: 11
Accepted
time: 1ms
memory: 3852kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
10 10 1
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
273
1 10 0 1 2 3 4 5 6 7 8 9
1 10 10 11 12 13 14 15 16 17 18 19
1 10 20 21 22 23 24 25 26 27 28 29
1 10 30 31 32 33 34 35 36 37 38 39
1 10 40 41 42 43 44 45 46 47 48 49
1 10 50 51 52 53 54 55 56 57 58 59
1 10 60 61 62 63 64 65 66 67 68 69
1 10 70 71 72 73 74 7...

result:

ok 

Test #24:

score: 11
Accepted
time: 1ms
memory: 3860kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
10 10 5
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
277
1 10 0 1 2 3 4 5 6 7 8 9
1 10 10 11 12 13 14 15 16 17 18 19
1 10 20 21 22 23 24 25 26 27 28 29
1 10 30 31 32 33 34 35 36 37 38 39
1 10 40 41 42 43 44 45 46 47 48 49
1 10 50 51 52 53 54 55 56 57 58 59
1 10 60 61 62 63 64 65 66 67 68 69
1 10 70 71 72 73 74 7...

result:

ok 

Test #25:

score: 11
Accepted
time: 1ms
memory: 3824kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
10 10 9
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
281
1 10 0 1 2 3 4 5 6 7 8 9
1 10 10 11 12 13 14 15 16 17 18 19
1 10 20 21 22 23 24 25 26 27 28 29
1 10 30 31 32 33 34 35 36 37 38 39
1 10 40 41 42 43 44 45 46 47 48 49
1 10 50 51 52 53 54 55 56 57 58 59
1 10 60 61 62 63 64 65 66 67 68 69
1 10 70 71 72 73 74 7...

result:

ok 

Test #26:

score: 11
Accepted
time: 1ms
memory: 3904kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
10 10 14
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
276
1 10 0 1 2 3 4 5 6 7 8 9
1 10 10 11 12 13 14 15 16 17 18 19
1 10 20 21 22 23 24 25 26 27 28 29
1 10 30 31 32 33 34 35 36 37 38 39
1 10 40 41 42 43 44 45 46 47 48 49
1 10 50 51 52 53 54 55 56 57 58 59
1 10 60 61 62 63 64 65 66 67 68 69
1 10 70 71 72 73 74 7...

result:

ok 

Test #27:

score: 11
Accepted
time: 1ms
memory: 3824kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
10 10 18
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
272
1 10 0 1 2 3 4 5 6 7 8 9
1 10 10 11 12 13 14 15 16 17 18 19
1 10 20 21 22 23 24 25 26 27 28 29
1 10 30 31 32 33 34 35 36 37 38 39
1 10 40 41 42 43 44 45 46 47 48 49
1 10 50 51 52 53 54 55 56 57 58 59
1 10 60 61 62 63 64 65 66 67 68 69
1 10 70 71 72 73 74 7...

result:

ok 

Subtask #3:

score: 11
Accepted

Dependency #2:

100%
Accepted

Test #28:

score: 11
Accepted
time: 2ms
memory: 3944kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
30 30 15
100 198
292 896
132 11
161 406
319 701
460 596
369 959
191 730
128 923
590 1006
31 451
230 575
143 515
149 571
73 554
699 559
302 658
455 1017
252 283
137 380
159 965
260 639
46 527
332 968
57 457
439 686
320 339
157 358
696 620
727 1022
623 949
35 609
7...

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
1403
1 30 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
1 30 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
1 30 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8...

result:

ok 

Test #29:

score: 11
Accepted
time: 1ms
memory: 3900kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
1 29 15
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
678
1 29 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
1 1 0
1 1 1
1 1 2
1 1 3
1 1 4
1 1 5
1 1 6
1 1 7
1 1 8
1 1 9
1 1 10
1 1 11
1 1 12
1 1 13
1 1 14
1 1 15
1 1 16
1 1 17
1 1 18
1 1 19
1 1 20
1 1 21
1 1 22
1 1 23
1 1 24
1 1 25
1 ...

result:

ok 

Test #30:

score: 11
Accepted
time: 1ms
memory: 3872kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
29 1 13
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
678
1 1 0
1 1 1
1 1 2
1 1 3
1 1 4
1 1 5
1 1 6
1 1 7
1 1 8
1 1 9
1 1 10
1 1 11
1 1 12
1 1 13
1 1 14
1 1 15
1 1 16
1 1 17
1 1 18
1 1 19
1 1 20
1 1 21
1 1 22
1 1 23
1 1 24
1 1 25
1 1 26
1 1 27
1 1 28
1 29 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22...

result:

ok 

Test #31:

score: 11
Accepted
time: 1ms
memory: 3904kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
30 15 42
32 210
220 359
210 369
204 275
206 353
210 365
254 353
210 355
207 358
223 374
221 352
222 353
211 274
221 274
220 327
211 352
194 275
207 374
220 375
208 275
223 358
211 275
221 275
210 274
207 353
223 353
210 352
220 374
220 358
210 275
220 353
10 11
1...

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
927
1 15 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14
1 15 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
1 15 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
1 15 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
1 15 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
1 15 75 76 77 78...

result:

ok 

Test #32:

score: 11
Accepted
time: 1ms
memory: 3884kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
15 30 2
94 170
33 3
111 73
28 29
312 282
134 224
107 104
93 82
217 222
19 125
436 437
230 231
199 196
298 299
61 50
233 238
362 363
176 146
452 453
491 501
225 195
16 17
241 246
180 181
410 484
450 300
162 163
181 138
446 408
493 482
116 117
164 129
441 447
148 2...

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
928
1 30 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
1 30 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
1 30 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83...

result:

ok 

Test #33:

score: 11
Accepted
time: 2ms
memory: 4032kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
30 30 1
64 184
397 491
205 206
278 279
366 367
566 567
421 387
156 250
528 529
415 400
429 430
748 749
413 507
408 390
68 69
649 759
79 429
1012 1013
79 64
368 369
963 964
64 65
147 241
37 38
336 702
171 137
240 222
239 224
305 306
133 134
688 670
996 998
742 546...

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
1389
1 30 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
1 30 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
1 30 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8...

result:

ok 

Test #34:

score: 11
Accepted
time: 2ms
memory: 3948kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
30 30 15
94 198
999 950
457 594
733 622
77 497
395 699
578 902
340 698
110 375
475 651
367 560
633 941
336 644
426 279
320 301
177 485
173 62
271 976
373 258
12 277
358 995
225 148
451 747
4 502
112 362
714 1018
544 1011
368 707
532 914
708 673
757 838
52 435
202...

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
1403
1 30 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
1 30 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
1 30 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8...

result:

ok 

Test #35:

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

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
30 30 29
94 212
85 934
369 600
122 969
208 497
151 594
51 972
739 967
330 903
505 270
436 744
428 853
279 296
239 979
141 761
149 923
249 368
240 479
171 604
441 971
300 551
386 918
305 905
273 1001
298 540
705 964
251 661
536 985
272 930
16 583
651 1021
112 904
...

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
1417
1 30 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
1 30 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
1 30 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8...

result:

ok 

Test #36:

score: 11
Accepted
time: 2ms
memory: 4236kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
30 30 44
94 227
59 866
167 925
78 1006
459 937
110 937
242 968
195 657
149 635
254 738
83 1011
81 660
90 897
186 633
50 567
185 990
250 728
196 925
195 694
209 563
186 571
144 529
213 528
252 724
144 909
425 897
250 635
225 695
484 939
149 914
190 931
173 900
19 ...

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
1402
1 30 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
1 30 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
1 30 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8...

result:

ok 

Test #37:

score: 11
Accepted
time: 2ms
memory: 4200kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
30 30 58
12 241
240 882
241 883
237 919
236 918
202 919
236 953
241 916
239 882
241 882
236 919
323 322
323 289

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
1388
1 30 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
1 30 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
1 30 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8...

result:

ok 

Subtask #4:

score: 0
Wrong Answer

Dependency #3:

100%
Accepted

Test #38:

score: 0
Wrong Answer
time: 10ms
memory: 4800kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
100 100 50
100 373
2576 5424
552 2444
1090 3586
698 7992
6043 6838
1364 8276
6025 8816
2900 5141
3114 3664
302 2171
3930 5433
2225 7225
6218 8326
1972 9191
1325 1432
5656 8200
5864 8290
4135 6498
3016 6790
8474 9563
6462 8785
2409 7590
6598 7251
1916 4460
276 447...

output:

b17553fd-ba5a-4140-836c-491f938c515b
WA
Too many instructions

result:

wrong answer WA in grader: Too many instructions

Subtask #5:

score: 0
Wrong Answer

Test #48:

score: 0
Wrong Answer
time: 3ms
memory: 4696kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
1 199 1
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
WA
Too many instructions

result:

wrong answer WA in grader: Too many instructions

Subtask #6:

score: 0
Wrong Answer

Test #70:

score: 8
Accepted
time: 0ms
memory: 3796kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
2 2 1
3 128
128 129
128 130
128 131

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
21
1 2 0 1
1 2 2 3
1 2 0 2
1 2 1 3
2 2 4 5
2 2 5 4
0 2 4 5
0 2 8 9
0 2 5 4
2 2 4 5
2 1 10
2 2 6 7
2 2 7 6
0 2 6 7
0 2 15 16
0 2 7 6
2 2 6 7
2 1 17
0 2 13 21
0 2 14 20
1 2 22 23

result:

ok 

Test #71:

score: 8
Accepted
time: 0ms
memory: 3788kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
2 2 2
3 129
129 128
129 131
129 130

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
20
1 2 0 1
1 2 2 3
1 2 0 2
1 2 1 3
2 2 4 5
2 2 5 4
0 2 4 5
0 2 8 9
0 2 5 4
2 2 4 5
2 1 10
2 2 6 7
2 2 7 6
0 2 6 7
0 2 15 16
0 2 7 6
2 2 6 7
2 1 17
0 2 14 21
1 1 22

result:

ok 

Test #72:

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

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
101 29 1
8 254
254 255
254 227
254 252
254 196
254 224
254 2958
254 2986
254 226

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
5849
1 29 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
1 29 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
1 29 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8...

result:

ok 

Test #73:

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

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
101 29 31
92 284
284 330
284 634
284 598
284 114
284 366
284 966
284 814
284 922
284 510
284 474
284 194
284 930
284 42
284 230
284 1002
284 438
284 526
284 778
284 186
284 6
284 958
284 150
284 562
284 886
284 78
284 402
284 850
284 482
284 222
284 367
284 671
2...

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
5876
1 29 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
1 29 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
1 29 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8...

result:

ok 

Test #74:

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

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
101 29 64
92 317
317 1326
317 1566
317 1090
317 1962
317 1046
317 1890
317 2034
317 1190
317 1934
317 1442
317 1074
317 1846
317 1118
317 1234
317 1298
317 1162
317 1862
317 1398
317 2006
317 1918
317 1470
317 1262
317 1514
317 1370
317 1594
317 1486
317 1414
317...

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
5876
1 29 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
1 29 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
1 29 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8...

result:

ok 

Test #75:

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

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
101 29 95
92 348
348 1738
348 3066
348 1682
348 2058
348 2886
348 3030
348 2830
348 2094
348 2866
348 1774
348 2454
348 2310
348 2546
348 2490
348 2238
348 2258
348 2510
348 2142
348 2394
348 2294
348 2402
348 2202
348 2114
348 2922
348 2430
348 1718
348 2210
348...

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
5876
1 29 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
1 29 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
1 29 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8...

result:

ok 

Test #76:

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

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
101 29 128
7 381
381 2606
381 2578
381 2573
381 2601
381 352
381 353
381 380

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
5848
1 29 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
1 29 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
1 29 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 8...

result:

ok 

Test #77:

score: 8
Accepted
time: 19ms
memory: 5284kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
44 135 1
8 303
303 302
303 424
303 301
303 33
303 423
303 5660
303 6018
303 425

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
9687
1 135 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 8...

result:

ok 

Test #78:

score: 8
Accepted
time: 18ms
memory: 5348kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
44 135 45
97 347
347 375
347 6133
347 523
347 4413
347 653
347 1205
347 99
347 4137
347 2885
347 489
347 3097
347 2397
347 1755
347 2519
347 4535
347 229
347 5369
347 2673
347 2121
347 3071
347 5191
347 3585
347 3771
347 3437
347 1075
347 4901
347 4817
347 1465
3...

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
9729
1 135 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 8...

result:

ok 

Test #79:

score: 8
Accepted
time: 22ms
memory: 5352kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
44 135 89
97 391
391 479
391 5981
391 1413
391 3439
391 3021
391 1949
391 6099
391 4657
391 2903
391 1697
391 5445
391 5193
391 3557
391 2651
391 2367
391 763
391 1295
391 4491
391 2485
391 1043
391 1161
391 4909
391 4791
391 4373
391 2115
391 4255
391 2233
391 3...

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
9729
1 135 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 8...

result:

ok 

Test #80:

score: 8
Accepted
time: 18ms
memory: 5276kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
44 135 133
96 435
435 311
435 5813
435 5939
435 2265
435 2115
435 5193
435 1287
435 3515
435 2895
435 1761
435 4491
435 4689
435 2391
435 3987
435 5469
435 4217
435 2609
435 3113
435 1643
435 4365
435 539
435 1919
435 657
435 3389
435 3861
435 3013
435 3585
435 5...

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
9729
1 135 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 8...

result:

ok 

Test #81:

score: 8
Accepted
time: 22ms
memory: 5328kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
44 135 177
7 479
479 6003
479 5869
479 5868
479 6002
479 344
479 345
479 478

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
9686
1 135 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 8...

result:

ok 

Test #82:

score: 0
Wrong Answer
time: 3ms
memory: 4608kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
1 199 1
3 324
324 325
324 326
324 386

output:

b17553fd-ba5a-4140-836c-491f938c515b
WA
Too many instructions

result:

wrong answer WA in grader: Too many instructions

Subtask #7:

score: 0
Wrong Answer

Test #101:

score: 0
Wrong Answer
time: 4ms
memory: 4980kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
200 200 1
100 524
24804 34853
20956 34628
18830 29184
28919 32573
11364 24911
2226 5624
3715 30838
2206 17143
21162 27531
20198 27242
5007 12724
27160 32586
3535 7307
17015 25466
626 13891
9132 26194
9198 33073
815 7328
6938 21395
9489 30995
10804 21530
14698 394...

output:

b17553fd-ba5a-4140-836c-491f938c515b
WA
Too many instructions

result:

wrong answer WA in grader: Too many instructions

Subtask #8:

score: 0
Skipped

Dependency #1:

100%
Accepted

Dependency #2:

100%
Accepted

Dependency #3:

100%
Accepted

Dependency #4:

0%