QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#133133#2674. Vision programbashkort#22 1ms5056kbC++203.6kb2023-08-01 16:13:472024-07-04 01:06:42

Judging History

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

  • [2024-07-04 01:06:42]
  • 评测
  • 测评结果:22
  • 用时:1ms
  • 内存:5056kb
  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-08-01 16:13:47]
  • 提交

answer

#include "vision.h"
#include <bits/stdc++.h>

using namespace std;

struct SegmentTree {
    vector<int> t;
    int sz = 1;

    void init(const vector<int> &a) {
        sz = size(a);
        t.resize(sz * 4);
        build(1, 0, sz, a);
    }

    void build(int x, int lx, int rx, const vector<int> &a) {
        if (lx + 1 == rx) {
            t[x] = a[lx];
        } else {
            build(x << 1, lx, lx + rx >> 1, a);
            build(x << 1 | 1, lx + rx >> 1, rx, a);
            t[x] = add_or({t[x << 1], t[x << 1 | 1]});
        }
    }

    void rangeSum(int l, int r, vector<int> &a, int x, int lx, int rx) {
        if (l >= rx || lx >= r) {
            return;
        }
        if (l <= lx && rx <= r) {
            return a.push_back(t[x]);
        }
        int mid = lx + rx >> 1;
        rangeSum(l, r, a, x << 1, lx, mid);
        rangeSum(l, r, a, x << 1 | 1, mid, rx);
    }

    void rangeOr(int l, int r, vector<int> &a) {
        rangeSum(l, r, a, 1, 0, sz);
    }
};

void construct_network(int H, int W, int K) {
    vector pos1(H, vector<int>(W)), pos2(pos1);
    map<int, vector<int>> mp1, mp2;
    map<int, SegmentTree> st1, st2;

    auto toi = [&](int x, int y) {
        return x * W + y;
    };


//    cout << "here!" << endl;

    for (int sum = 0; sum < H + W; ++sum) {
        int top = 0;
        for (int x = 0; x <= sum; ++x) {
            int y = sum - x;
            if (y < W && x < H) {
                mp1[sum].push_back(toi(x, y));
                pos1[x][y] = top++;
            }
        }
    }

//    cout << "here!" << endl;

    for (int sum = -H + 1; sum < W; ++sum) {
        int top = 0;
        for (int y = 0; y < W; ++y) {
            int x = y - sum;
            if (x >= 0 && x < H && y < W) {
                mp2[sum].push_back(toi(x, y));
                pos2[x][y] = top++;
            }
        }
    }

//    cout << "here!" << endl;

    for (auto [x, y] : mp1) {
//        cout << "st1: " << x << endl;
        st1[x].init(y);
    }
    for (auto [x, y] : mp2) {
//        cout << "st2: " << x << endl;
        st2[x].init(y);
    }


//    cout << "here!" << endl;

    vector<int> orz;

    for (int i = 0; i < H; ++i) {
        for (int j = 0; j < W; ++j) {
            vector<int> a;
            int lx = -1, rx = -1, sum = -1;
            for (int x1 = 0; x1 <= i; ++x1) {
                int y1 = j - (K - (i - x1));
                if (y1 <= j && y1 >= 0 && y1 < W) {
                    int p = pos1[x1][y1];
                    assert(sum == -1 || sum == x1 + y1);
                    sum = x1 + y1;
                    lx = lx == -1 ? p : lx;
                    rx = p + 1;
                }
            }
//            cout << "300iq" << endl;
            if (sum != -1) {
                st1[sum].rangeOr(lx, rx, a);
            }
            lx = -1, rx = -1, sum = -1;
            for (int x1 = 0; x1 <= i; ++x1) {
                int y1 = j + (K - (i - x1));
                if (y1 >= j && y1 >= 0 && y1 < W) {
                    int p = pos2[x1][y1];
                    assert(sum == -1 || sum == y1 - x1);
                    sum = y1 - x1;
                    lx = lx == -1 ? p : lx;
                    rx = p + 1;
                }
            }
            if (sum != -1) {
//                cout << "query2: " << sum << endl;
                st2[sum].rangeOr(lx, rx, a);
            }
            if (!a.empty()) {
                orz.push_back(add_and({toi(i, j), add_or(a)}));
            }
        }
    }

    add_or(orz);
}

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 10
Accepted

Test #1:

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

input:

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

output:

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

result:

ok 

Test #2:

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

input:

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

output:

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

result:

ok 

Test #3:

score: 0
Accepted
time: 0ms
memory: 4012kb

input:

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

output:

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

result:

ok 

Test #4:

score: 0
Accepted
time: 0ms
memory: 3804kb

input:

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

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
3
1 2 0 0
0 2 2 3
1 1 4

result:

ok 

Test #5:

score: 0
Accepted
time: 0ms
memory: 4032kb

input:

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

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
11
1 2 1 2
1 2 0 3
1 1 1
0 2 0 6
1 1 0
0 2 1 8
1 2 0 5
0 2 2 10
1 2 4 1
0 2 3 12
1 4 7 9 11 13

result:

ok 

Test #6:

score: 0
Accepted
time: 0ms
memory: 3776kb

input:

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

output:

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

result:

ok 

Test #7:

score: 0
Accepted
time: 0ms
memory: 3804kb

input:

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

output:

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

result:

ok 

Test #8:

score: 0
Accepted
time: 0ms
memory: 3776kb

input:

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

output:

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

result:

ok 

Test #9:

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

input:

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

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
9
1 2 1 3
1 2 2 4
1 2 0 4
1 2 1 5
1 1 2
0 2 3 10
1 1 0
0 2 5 12
1 2 11 13

result:

ok 

Test #10:

score: 0
Accepted
time: 0ms
memory: 3772kb

input:

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

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
17
1 2 1 2
1 2 3 4
1 2 2 5
1 2 0 3
1 1 1
0 2 0 10
1 1 0
0 2 1 12
1 2 0 9
0 2 2 14
1 2 6 1
0 2 3 16
1 1 2
0 2 4 18
1 2 7 3
0 2 5 20
1 6 11 13 15 17 19 21

result:

ok 

Test #11:

score: 0
Accepted
time: 0ms
memory: 3804kb

input:

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

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
13
1 2 1 2
1 2 3 4
1 2 2 5
1 2 0 3
1 1 1
0 2 2 10
1 1 0
0 2 3 12
1 2 0 9
0 2 4 14
1 2 6 1
0 2 5 16
1 4 11 13 15 17

result:

ok 

Test #12:

score: 0
Accepted
time: 0ms
memory: 3776kb

input:

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

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
9
1 2 1 2
1 2 3 4
1 2 2 5
1 2 0 3
1 1 1
0 2 4 10
1 1 0
0 2 5 12
1 2 11 13

result:

ok 

Test #13:

score: 0
Accepted
time: 0ms
memory: 3776kb

input:

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

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
27
1 2 1 3
1 2 4 6
1 2 2 10
1 2 5 7
1 2 3 7
1 2 4 8
1 2 0 14
1 2 1 5
1 1 1
0 2 0 17
1 2 0 2
0 2 1 19
1 1 1
0 2 2 21
1 3 0 0 4
0 2 3 23
1 2 9 16
0 2 4 25
1 3 2 4 2
0 2 5 27
1 1 3
0 2 6 29
1 2 10 14
0 2 7 31
1 2 12 5
0 2 8 33
1 9 18 20 22 24 26 28 30 32 34

result:

ok 

Test #14:

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

input:

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

output:

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

result:

ok 

Test #15:

score: 0
Accepted
time: 0ms
memory: 3800kb

input:

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

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
19
1 2 1 3
1 2 4 6
1 2 2 10
1 2 5 7
1 2 3 7
1 2 4 8
1 2 0 14
1 2 1 5
1 1 2
0 2 3 17
1 1 0
0 2 5 19
1 1 16
0 2 6 21
1 2 0 2
0 2 7 23
1 1 9
0 2 8 25
1 5 18 20 22 24 26

result:

ok 

Test #16:

score: 0
Accepted
time: 0ms
memory: 4060kb

input:

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

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
13
1 2 1 3
1 2 4 6
1 2 2 10
1 2 5 7
1 2 3 7
1 2 4 8
1 2 0 14
1 2 1 5
1 1 2
0 2 6 17
1 1 0
0 2 8 19
1 2 18 20

result:

ok 

Test #17:

score: 0
Accepted
time: 0ms
memory: 3864kb

input:

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

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
5
1 1 1
0 2 0 2
1 1 0
0 2 1 4
1 2 3 5

result:

ok 

Test #18:

score: 0
Accepted
time: 0ms
memory: 3800kb

input:

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

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
3
1 2 0 0
0 2 1 2
1 1 3

result:

ok 

Subtask #2:

score: 0
Wrong Answer

Test #19:

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

input:

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

output:

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

result:

ok 

Test #20:

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

input:

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

output:

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

result:

ok 

Test #21:

score: -11
Wrong Answer
time: 0ms
memory: 3896kb

input:

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

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
173
1 2 1 5
1 2 6 10
1 2 2 51
1 2 3 7
1 2 11 15
1 2 53 54
1 2 4 8
1 2 16 20
1 2 12 57
1 2 56 58
1 2 9 13
1 2 21 25
1 2 17 61
1 2 60 62
1 2 14 18
1 2 26 30
1 2 22 65
1 2 64 66
1 2 19 23
1 2 31 35
1 2 27 69
1 2 68 70
1 2 24 28
1 2 36 40
1 2 32 73
1 2 72 74
1 2 2...

result:

wrong answer on inputs (2, 1), (3, 0), expected 1, but computed 0

Subtask #3:

score: 0
Skipped

Dependency #2:

0%

Subtask #4:

score: 0
Skipped

Dependency #3:

0%

Subtask #5:

score: 12
Accepted

Test #48:

score: 12
Accepted
time: 1ms
memory: 3892kb

input:

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

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
399
1 1 1
0 2 0 199
1 2 0 2
0 2 1 201
1 2 1 3
0 2 2 203
1 2 2 4
0 2 3 205
1 2 3 5
0 2 4 207
1 2 4 6
0 2 5 209
1 2 5 7
0 2 6 211
1 2 6 8
0 2 7 213
1 2 7 9
0 2 8 215
1 2 8 10
0 2 9 217
1 2 9 11
0 2 10 219
1 2 10 12
0 2 11 221
1 2 11 13
0 2 12 223
1 2 12 14
0 2 1...

result:

ok 

Test #49:

score: 0
Accepted
time: 1ms
memory: 3920kb

input:

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

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
399
1 1 99
0 2 0 199
1 1 100
0 2 1 201
1 1 101
0 2 2 203
1 1 102
0 2 3 205
1 1 103
0 2 4 207
1 1 104
0 2 5 209
1 1 105
0 2 6 211
1 1 106
0 2 7 213
1 1 107
0 2 8 215
1 1 108
0 2 9 217
1 1 109
0 2 10 219
1 1 110
0 2 11 221
1 1 111
0 2 12 223
1 1 112
0 2 13 225
1...

result:

ok 

Test #50:

score: 0
Accepted
time: 1ms
memory: 3840kb

input:

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

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
397
1 1 100
0 2 0 199
1 1 101
0 2 1 201
1 1 102
0 2 2 203
1 1 103
0 2 3 205
1 1 104
0 2 4 207
1 1 105
0 2 5 209
1 1 106
0 2 6 211
1 1 107
0 2 7 213
1 1 108
0 2 8 215
1 1 109
0 2 9 217
1 1 110
0 2 10 219
1 1 111
0 2 11 221
1 1 112
0 2 12 223
1 1 113
0 2 13 225
...

result:

ok 

Test #51:

score: 0
Accepted
time: 0ms
memory: 3888kb

input:

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

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
5
1 1 198
0 2 0 199
1 1 0
0 2 198 201
1 2 200 202

result:

ok 

Test #52:

score: 0
Accepted
time: 1ms
memory: 4164kb

input:

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

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
395
1 2 0 0
0 2 2 199
1 1 1
0 2 3 201
1 2 2 2
0 2 4 203
1 2 3 3
0 2 5 205
1 2 4 4
0 2 6 207
1 2 5 5
0 2 7 209
1 2 6 6
0 2 8 211
1 2 7 7
0 2 9 213
1 2 8 8
0 2 10 215
1 2 9 9
0 2 11 217
1 2 10 10
0 2 12 219
1 2 11 11
0 2 13 221
1 2 12 12
0 2 14 223
1 2 13 13
0 2...

result:

ok 

Test #53:

score: 0
Accepted
time: 1ms
memory: 4192kb

input:

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

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
267
1 2 0 0
0 2 66 199
1 1 1
0 2 67 201
1 2 2 2
0 2 68 203
1 2 3 3
0 2 69 205
1 2 4 4
0 2 70 207
1 2 5 5
0 2 71 209
1 2 6 6
0 2 72 211
1 2 7 7
0 2 73 213
1 2 8 8
0 2 74 215
1 2 9 9
0 2 75 217
1 2 10 10
0 2 76 219
1 2 11 11
0 2 77 221
1 2 12 12
0 2 78 223
1 2 1...

result:

ok 

Test #54:

score: 0
Accepted
time: 1ms
memory: 3916kb

input:

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

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
133
1 2 0 0
0 2 133 199
1 1 1
0 2 134 201
1 2 2 2
0 2 135 203
1 2 3 3
0 2 136 205
1 2 4 4
0 2 137 207
1 2 5 5
0 2 138 209
1 2 6 6
0 2 139 211
1 2 7 7
0 2 140 213
1 2 8 8
0 2 141 215
1 2 9 9
0 2 142 217
1 2 10 10
0 2 143 219
1 2 11 11
0 2 144 221
1 2 12 12
0 2 ...

result:

ok 

Test #55:

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

input:

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

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
5
1 2 0 0
0 2 197 199
1 1 1
0 2 198 201
1 2 200 202

result:

ok 

Test #56:

score: 0
Accepted
time: 1ms
memory: 3896kb

input:

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

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
401
1 1 1
0 2 0 200
1 2 0 2
0 2 1 202
1 2 1 3
0 2 2 204
1 2 2 4
0 2 3 206
1 2 3 5
0 2 4 208
1 2 4 6
0 2 5 210
1 2 5 7
0 2 6 212
1 2 6 8
0 2 7 214
1 2 7 9
0 2 8 216
1 2 8 10
0 2 9 218
1 2 9 11
0 2 10 220
1 2 10 12
0 2 11 222
1 2 11 13
0 2 12 224
1 2 12 14
0 2 1...

result:

ok 

Test #57:

score: 0
Accepted
time: 0ms
memory: 3980kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
1 200 50
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
401
1 1 50
0 2 0 200
1 1 51
0 2 1 202
1 1 52
0 2 2 204
1 1 53
0 2 3 206
1 1 54
0 2 4 208
1 1 55
0 2 5 210
1 1 56
0 2 6 212
1 1 57
0 2 7 214
1 1 58
0 2 8 216
1 1 59
0 2 9 218
1 1 60
0 2 10 220
1 1 61
0 2 11 222
1 1 62
0 2 12 224
1 1 63
0 2 13 226
1 1 64
0 2 14 ...

result:

ok 

Test #58:

score: 0
Accepted
time: 1ms
memory: 3912kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
1 200 99
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
401
1 1 99
0 2 0 200
1 1 100
0 2 1 202
1 1 101
0 2 2 204
1 1 102
0 2 3 206
1 1 103
0 2 4 208
1 1 104
0 2 5 210
1 1 105
0 2 6 212
1 1 106
0 2 7 214
1 1 107
0 2 8 216
1 1 108
0 2 9 218
1 1 109
0 2 10 220
1 1 110
0 2 11 222
1 1 111
0 2 12 224
1 1 112
0 2 13 226
1...

result:

ok 

Test #59:

score: 0
Accepted
time: 1ms
memory: 3892kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
1 200 100
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
401
1 1 100
0 2 0 200
1 1 101
0 2 1 202
1 1 102
0 2 2 204
1 1 103
0 2 3 206
1 1 104
0 2 4 208
1 1 105
0 2 5 210
1 1 106
0 2 6 212
1 1 107
0 2 7 214
1 1 108
0 2 8 216
1 1 109
0 2 9 218
1 1 110
0 2 10 220
1 1 111
0 2 11 222
1 1 112
0 2 12 224
1 1 113
0 2 13 226
...

result:

ok 

Test #60:

score: 0
Accepted
time: 1ms
memory: 4136kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
1 200 149
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
205
1 1 149
0 2 0 200
1 1 150
0 2 1 202
1 1 151
0 2 2 204
1 1 152
0 2 3 206
1 1 153
0 2 4 208
1 1 154
0 2 5 210
1 1 155
0 2 6 212
1 1 156
0 2 7 214
1 1 157
0 2 8 216
1 1 158
0 2 9 218
1 1 159
0 2 10 220
1 1 160
0 2 11 222
1 1 161
0 2 12 224
1 1 162
0 2 13 226
...

result:

ok 

Test #61:

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

input:

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

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
5
1 1 199
0 2 0 200
1 1 0
0 2 199 202
1 2 201 203

result:

ok 

Test #62:

score: 0
Accepted
time: 1ms
memory: 4164kb

input:

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

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
399
1 2 0 0
0 2 1 200
1 1 1
0 2 2 202
1 2 2 2
0 2 3 204
1 2 3 3
0 2 4 206
1 2 4 4
0 2 5 208
1 2 5 5
0 2 6 210
1 2 6 6
0 2 7 212
1 2 7 7
0 2 8 214
1 2 8 8
0 2 9 216
1 2 9 9
0 2 10 218
1 2 10 10
0 2 11 220
1 2 11 11
0 2 12 222
1 2 12 12
0 2 13 224
1 2 13 13
0 2 ...

result:

ok 

Test #63:

score: 0
Accepted
time: 1ms
memory: 3908kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
200 1 51
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
299
1 2 0 0
0 2 51 200
1 1 1
0 2 52 202
1 2 2 2
0 2 53 204
1 2 3 3
0 2 54 206
1 2 4 4
0 2 55 208
1 2 5 5
0 2 56 210
1 2 6 6
0 2 57 212
1 2 7 7
0 2 58 214
1 2 8 8
0 2 59 216
1 2 9 9
0 2 60 218
1 2 10 10
0 2 61 220
1 2 11 11
0 2 62 222
1 2 12 12
0 2 63 224
1 2 1...

result:

ok 

Test #64:

score: 0
Accepted
time: 1ms
memory: 3924kb

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
200 1 99
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
203
1 2 0 0
0 2 99 200
1 1 1
0 2 100 202
1 2 2 2
0 2 101 204
1 2 3 3
0 2 102 206
1 2 4 4
0 2 103 208
1 2 5 5
0 2 104 210
1 2 6 6
0 2 105 212
1 2 7 7
0 2 106 214
1 2 8 8
0 2 107 216
1 2 9 9
0 2 108 218
1 2 10 10
0 2 109 220
1 2 11 11
0 2 110 222
1 2 12 12
0 2 1...

result:

ok 

Test #65:

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

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
200 1 100
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
201
1 2 0 0
0 2 100 200
1 1 1
0 2 101 202
1 2 2 2
0 2 102 204
1 2 3 3
0 2 103 206
1 2 4 4
0 2 104 208
1 2 5 5
0 2 105 210
1 2 6 6
0 2 106 212
1 2 7 7
0 2 107 214
1 2 8 8
0 2 108 216
1 2 9 9
0 2 109 218
1 2 10 10
0 2 110 220
1 2 11 11
0 2 111 222
1 2 12 12
0 2 ...

result:

ok 

Test #66:

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

input:

c2675211-ade0-44b0-8c15-741dd835f3d2
200 1 150
-1

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
101
1 2 0 0
0 2 150 200
1 1 1
0 2 151 202
1 2 2 2
0 2 152 204
1 2 3 3
0 2 153 206
1 2 4 4
0 2 154 208
1 2 5 5
0 2 155 210
1 2 6 6
0 2 156 212
1 2 7 7
0 2 157 214
1 2 8 8
0 2 158 216
1 2 9 9
0 2 159 218
1 2 10 10
0 2 160 220
1 2 11 11
0 2 161 222
1 2 12 12
0 2 ...

result:

ok 

Test #67:

score: 0
Accepted
time: 1ms
memory: 4160kb

input:

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

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
3
1 2 0 0
0 2 199 200
1 1 201

result:

ok 

Test #68:

score: 0
Accepted
time: 0ms
memory: 3780kb

input:

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

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
5
1 1 1
0 2 0 2
1 1 0
0 2 1 4
1 2 3 5

result:

ok 

Test #69:

score: 0
Accepted
time: 0ms
memory: 4064kb

input:

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

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
3
1 2 0 0
0 2 1 2
1 1 3

result:

ok 

Subtask #6:

score: 0
Wrong Answer

Test #70:

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

input:

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

output:

b17553fd-ba5a-4140-836c-491f938c515b
OK
11
1 2 1 2
1 2 0 3
1 1 1
0 2 0 6
1 1 0
0 2 1 8
1 2 0 5
0 2 2 10
1 2 4 1
0 2 3 12
1 4 7 9 11 13

result:

ok 

Test #71:

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

input:

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

output:

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

result:

ok 

Test #72:

score: -8
Wrong Answer
time: 0ms
memory: 4240kb

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
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: 0ms
memory: 5056kb

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:

0%