Submission #566131

# Submission time Handle Problem Language Result Execution time Memory
566131 2022-05-21T21:01:08 Z RealSnake Saveit (IOI10_saveit) C++14
50 / 100
220 ms 12328 KB
#include "bits/stdc++.h"
using namespace std;
#include "grader.h"
#include "encoder.h"

void encode(int n, int h, int p, int a[], int b[]) {
    vector<int> v[n];
    for(int i = 0; i < p; i++) {
        v[a[i]].push_back(b[i]);
        v[b[i]].push_back(a[i]);
    }
    set<int> s;
    s.insert(0);
    int par[n] = {};
    par[0] = 1;
    vector<int> v2[n];
    while(s.size()) {
        int x = *s.begin();
        s.erase(s.begin());
        for(int i : v[x]) {
            if(!par[i]) {
                v2[x].push_back(i);
                par[i] = x + 1;
                s.insert(i);
            }
        }
        sort(v2[x].begin(), v2[x].end());
    }
    for(int i = 1; i < n; i++) {
        int x = par[i] - 1;
        for(int j = 0; j < 10; j++)
            encode_bit(((x & (1 << j)) > 0));
    }
    int ans[n][h];
    for(int i = 0; i < n; i++) {
        for(int j = 0; j < h; j++)
            ans[i][j] = 1e9;
    }
    set<pair<int, pair<int, int>>> ss;
    for(int i = 0; i < h; i++) {
        ss.insert({0, {i, i}});
        ans[i][i] = 0;
    }
    while(ss.size()) {
        pair<int, pair<int, int>> p = *ss.begin();
        ss.erase(ss.begin());
        int x = p.second.first, hub = p.second.second;
        int cost = p.first;
        if(cost > ans[x][hub])
            continue;
        for(int i : v[x]) {
            if(cost + 1 < ans[i][hub]) {
                ans[i][hub] = cost + 1;
                ss.insert({cost + 1, {i, hub}});
            }
        }
    }
    for(int i = 0; i < h; i++) {
        int x = ans[0][i];
        for(int j = 0; j < 10 && i; j++)
            encode_bit(((x & (1 << j)) > 0));
        s.insert(0);
        while(s.size()) {
            x = *s.begin();
            s.erase(s.begin());
            for(int j : v2[x]) {
                s.insert(j);
                if(i == j)
                    continue;
                int dif = ans[j][i] - ans[x][i];
                if(dif == 0)
                    encode_bit(0);
                else {
                    encode_bit(1);
                    if(dif == 1)
                        encode_bit(1);
                    else
                        encode_bit(0);
                }
            }
        }
    }
}
#include "bits/stdc++.h"
using namespace std;
#include "grader.h"
#include "decoder.h"

void decode(int n, int h) {
    vector<int> v[n];
    for(int i = 1; i < n; i++) {
        int x = 0;
        for(int j = 0; j < 10; j++) {
            if(decode_bit())
                x += (1 << j);
        }
        v[x].push_back(i);
    }
    for(int i = 0; i < h; i++) {
        int b[n];
        b[0] = 0;
        for(int j = 0; j < 10 && i; j++) {
            if(decode_bit())
                b[0] += (1 << j);
        }
        set<int> s;
        s.insert(0);
        while(s.size()) {
            int x = *s.begin();
            s.erase(s.begin());
            hops(i, x, b[x]);
            for(int j : v[x]) {
                s.insert(j);
                if(j == i) {
                    b[j] = 0;
                    continue;
                }
                int dif = decode_bit();
                if(dif) {
                    if(!decode_bit())
                        dif = -1;
                }
                b[j] = b[x] + dif;
            }
        }
    }
}
# Verdict Execution time Memory Grader output
1 Correct 220 ms 12328 KB Output is correct - 65170 call(s) of encode_bit()
2 Correct 1 ms 4476 KB Output is correct - 76 call(s) of encode_bit()
3 Correct 38 ms 6584 KB Output is correct - 60687 call(s) of encode_bit()
4 Correct 2 ms 4600 KB Output is correct - 102 call(s) of encode_bit()
5 Correct 40 ms 7180 KB Output is correct - 57959 call(s) of encode_bit()
6 Correct 40 ms 7332 KB Output is correct - 62712 call(s) of encode_bit()
7 Correct 53 ms 7832 KB Output is correct - 52916 call(s) of encode_bit()
8 Correct 36 ms 5716 KB Output is partially correct - 79000 call(s) of encode_bit()
9 Correct 31 ms 5764 KB Output is partially correct - 80749 call(s) of encode_bit()
10 Correct 30 ms 5724 KB Output is partially correct - 80569 call(s) of encode_bit()
11 Correct 37 ms 5864 KB Output is partially correct - 78831 call(s) of encode_bit()
12 Correct 28 ms 5672 KB Output is partially correct - 82198 call(s) of encode_bit()
13 Correct 53 ms 7248 KB Output is correct - 60578 call(s) of encode_bit()
14 Correct 39 ms 5684 KB Output is partially correct - 79604 call(s) of encode_bit()
15 Correct 37 ms 5780 KB Output is partially correct - 76934 call(s) of encode_bit()
16 Correct 54 ms 6260 KB Output is partially correct - 75048 call(s) of encode_bit()
17 Correct 48 ms 6368 KB Output is partially correct - 74995 call(s) of encode_bit()
18 Correct 55 ms 6624 KB Output is partially correct - 70622 call(s) of encode_bit()
19 Correct 47 ms 6268 KB Output is correct - 65554 call(s) of encode_bit()
20 Correct 69 ms 7452 KB Output is correct - 64391 call(s) of encode_bit()
21 Correct 77 ms 7368 KB Output is correct - 65323 call(s) of encode_bit()
22 Correct 55 ms 7848 KB Output is correct - 55562 call(s) of encode_bit()
23 Correct 78 ms 8588 KB Output is correct - 57605 call(s) of encode_bit()
# Verdict Execution time Memory Grader output
1 Correct 220 ms 12328 KB Output is correct - 65170 call(s) of encode_bit()
2 Correct 1 ms 4476 KB Output is correct - 76 call(s) of encode_bit()
3 Correct 38 ms 6584 KB Output is correct - 60687 call(s) of encode_bit()
4 Correct 2 ms 4600 KB Output is correct - 102 call(s) of encode_bit()
5 Correct 40 ms 7180 KB Output is correct - 57959 call(s) of encode_bit()
6 Correct 40 ms 7332 KB Output is correct - 62712 call(s) of encode_bit()
7 Correct 53 ms 7832 KB Output is correct - 52916 call(s) of encode_bit()
8 Correct 36 ms 5716 KB Output is partially correct - 79000 call(s) of encode_bit()
9 Correct 31 ms 5764 KB Output is partially correct - 80749 call(s) of encode_bit()
10 Correct 30 ms 5724 KB Output is partially correct - 80569 call(s) of encode_bit()
11 Correct 37 ms 5864 KB Output is partially correct - 78831 call(s) of encode_bit()
12 Correct 28 ms 5672 KB Output is partially correct - 82198 call(s) of encode_bit()
13 Correct 53 ms 7248 KB Output is correct - 60578 call(s) of encode_bit()
14 Correct 39 ms 5684 KB Output is partially correct - 79604 call(s) of encode_bit()
15 Correct 37 ms 5780 KB Output is partially correct - 76934 call(s) of encode_bit()
16 Correct 54 ms 6260 KB Output is partially correct - 75048 call(s) of encode_bit()
17 Correct 48 ms 6368 KB Output is partially correct - 74995 call(s) of encode_bit()
18 Correct 55 ms 6624 KB Output is partially correct - 70622 call(s) of encode_bit()
19 Correct 47 ms 6268 KB Output is correct - 65554 call(s) of encode_bit()
20 Correct 69 ms 7452 KB Output is correct - 64391 call(s) of encode_bit()
21 Correct 77 ms 7368 KB Output is correct - 65323 call(s) of encode_bit()
22 Correct 55 ms 7848 KB Output is correct - 55562 call(s) of encode_bit()
23 Correct 78 ms 8588 KB Output is correct - 57605 call(s) of encode_bit()
# Verdict Execution time Memory Grader output
1 Correct 220 ms 12328 KB Output is correct - 65170 call(s) of encode_bit()
2 Correct 1 ms 4476 KB Output is correct - 76 call(s) of encode_bit()
3 Correct 38 ms 6584 KB Output is correct - 60687 call(s) of encode_bit()
4 Correct 2 ms 4600 KB Output is correct - 102 call(s) of encode_bit()
5 Correct 40 ms 7180 KB Output is correct - 57959 call(s) of encode_bit()
6 Correct 40 ms 7332 KB Output is correct - 62712 call(s) of encode_bit()
7 Correct 53 ms 7832 KB Output is correct - 52916 call(s) of encode_bit()
8 Correct 36 ms 5716 KB Output is partially correct - 79000 call(s) of encode_bit()
9 Correct 31 ms 5764 KB Output is partially correct - 80749 call(s) of encode_bit()
10 Correct 30 ms 5724 KB Output is partially correct - 80569 call(s) of encode_bit()
11 Correct 37 ms 5864 KB Output is partially correct - 78831 call(s) of encode_bit()
12 Correct 28 ms 5672 KB Output is partially correct - 82198 call(s) of encode_bit()
13 Correct 53 ms 7248 KB Output is correct - 60578 call(s) of encode_bit()
14 Correct 39 ms 5684 KB Output is partially correct - 79604 call(s) of encode_bit()
15 Correct 37 ms 5780 KB Output is partially correct - 76934 call(s) of encode_bit()
16 Correct 54 ms 6260 KB Output is partially correct - 75048 call(s) of encode_bit()
17 Correct 48 ms 6368 KB Output is partially correct - 74995 call(s) of encode_bit()
18 Correct 55 ms 6624 KB Output is partially correct - 70622 call(s) of encode_bit()
19 Correct 47 ms 6268 KB Output is correct - 65554 call(s) of encode_bit()
20 Correct 69 ms 7452 KB Output is correct - 64391 call(s) of encode_bit()
21 Correct 77 ms 7368 KB Output is correct - 65323 call(s) of encode_bit()
22 Correct 55 ms 7848 KB Output is correct - 55562 call(s) of encode_bit()
23 Correct 78 ms 8588 KB Output is correct - 57605 call(s) of encode_bit()
# Verdict Execution time Memory Grader output
1 Correct 220 ms 12328 KB Output is correct - 65170 call(s) of encode_bit()
2 Correct 1 ms 4476 KB Output is correct - 76 call(s) of encode_bit()
3 Correct 38 ms 6584 KB Output is correct - 60687 call(s) of encode_bit()
4 Correct 2 ms 4600 KB Output is correct - 102 call(s) of encode_bit()
5 Correct 40 ms 7180 KB Output is correct - 57959 call(s) of encode_bit()
6 Correct 40 ms 7332 KB Output is correct - 62712 call(s) of encode_bit()
7 Correct 53 ms 7832 KB Output is correct - 52916 call(s) of encode_bit()
8 Correct 36 ms 5716 KB Output is partially correct - 79000 call(s) of encode_bit()
9 Correct 31 ms 5764 KB Output is partially correct - 80749 call(s) of encode_bit()
10 Correct 30 ms 5724 KB Output is partially correct - 80569 call(s) of encode_bit()
11 Correct 37 ms 5864 KB Output is partially correct - 78831 call(s) of encode_bit()
12 Correct 28 ms 5672 KB Output is partially correct - 82198 call(s) of encode_bit()
13 Correct 53 ms 7248 KB Output is correct - 60578 call(s) of encode_bit()
14 Correct 39 ms 5684 KB Output is partially correct - 79604 call(s) of encode_bit()
15 Correct 37 ms 5780 KB Output is partially correct - 76934 call(s) of encode_bit()
16 Correct 54 ms 6260 KB Output is partially correct - 75048 call(s) of encode_bit()
17 Correct 48 ms 6368 KB Output is partially correct - 74995 call(s) of encode_bit()
18 Correct 55 ms 6624 KB Output is partially correct - 70622 call(s) of encode_bit()
19 Correct 47 ms 6268 KB Output is correct - 65554 call(s) of encode_bit()
20 Correct 69 ms 7452 KB Output is correct - 64391 call(s) of encode_bit()
21 Correct 77 ms 7368 KB Output is correct - 65323 call(s) of encode_bit()
22 Correct 55 ms 7848 KB Output is correct - 55562 call(s) of encode_bit()
23 Correct 78 ms 8588 KB Output is correct - 57605 call(s) of encode_bit()