Submission #394814

# Submission time Handle Problem Language Result Execution time Memory
394814 2021-04-27T10:28:37 Z MarcoMeijer Saveit (IOI10_saveit) C++14
50 / 100
303 ms 11800 KB
#include "grader.h"
#include "encoder.h"
#include <bits/stdc++.h>
using namespace std;

// macros
typedef long long ll;
typedef long double ld;
typedef pair<int, int> ii;
typedef pair<ll, ll> lll;
typedef tuple<int, int, int> iii;
typedef vector<int> vi;
typedef vector<ii> vii;
typedef vector<iii> viii;
typedef vector<ll> vll;
typedef vector<lll> vlll;
#define REP(a,b,c) for(int a=int(b); a<int(c); a++)
#define RE(a,c) REP(a,0,c)
#define RE1(a,c) REP(a,1,c+1)
#define REI(a,b,c) REP(a,b,c+1)
#define REV(a,b,c) for(int a=int(c-1); a>=int(b); a--)
#define FOR(a,b) for(auto& a : b)
#define all(a) a.begin(), a.end()
#define INF 1e9
#define EPS 1e-9
#define pb push_back
#define popb pop_back
#define fi first
#define se second

void writeSmallInt(int x) {
    RE(i,10) {
        bool b = false;
        if(x & (1<<i)) b = 1;
        encode_bit(b);
    }
}

void encode(int nv, int nh, int ne, int *v1, int *v2) {
    vector<vi> adj; adj.resize(nv);
    RE(i,ne) {
        adj[v1[i]].pb(v2[i]);
        adj[v2[i]].pb(v1[i]);
    }

    set<ii> usedEdges;
    RE(h,nh) {
        // bfs
        vi dist; dist.assign(nv, -1);
        queue<int> q;
        q.push(h); dist[h] = 0;
        while(!q.empty()) {
            int u = q.front(); q.pop();
            FOR(v,adj[u]) {
                if(dist[v] != -1) continue;
                dist[v] = dist[u] + 1;
                usedEdges.insert({min(u,v),max(u,v)});
                q.push(v);
            }
        }
    }

    RE(i,nv) adj[i].clear();
    FOR(p,usedEdges) adj[p.fi].pb(p.se);

    RE(i,nv) {
        writeSmallInt(adj[i].size());
        FOR(v,adj[i]) writeSmallInt(v);
    }
}
#include "grader.h"
#include "decoder.h"
#include <bits/stdc++.h>
using namespace std;

// macros
typedef long long ll;
typedef long double ld;
typedef pair<int, int> ii;
typedef pair<ll, ll> lll;
typedef tuple<int, int, int> iii;
typedef vector<int> vi;
typedef vector<ii> vii;
typedef vector<iii> viii;
typedef vector<ll> vll;
typedef vector<lll> vlll;
#define REP(a,b,c) for(int a=int(b); a<int(c); a++)
#define RE(a,c) REP(a,0,c)
#define RE1(a,c) REP(a,1,c+1)
#define REI(a,b,c) REP(a,b,c+1)
#define REV(a,b,c) for(int a=int(c-1); a>=int(b); a--)
#define FOR(a,b) for(auto& a : b)
#define all(a) a.begin(), a.end()
#define INF 1e9
#define EPS 1e-9
#define pb push_back
#define popb pop_back
#define fi first
#define se second

int readSmallInt() {
    int res = 0;
    RE(i,10) {
        bool b = decode_bit();
        if(b) res |= (1<<i);
    }
    return res;
}

void decode(int nv, int nh) {
    // reconstruct graph
    vector<vi> adj; adj.resize(nv);
    RE(u,nv) {
        int sz = readSmallInt();
        RE(j,sz) {
            int v = readSmallInt();
            adj[u].pb(v);
            adj[v].pb(u);
        }
    }

    RE(h,nh) {
        // bfs
        vi dist; dist.assign(nv, -1);
        queue<int> q;
        q.push(h); dist[h] = 0;
        while(!q.empty()) {
            int u = q.front(); q.pop();
            hops(h,u,dist[u]);
            FOR(v,adj[u]) {
                if(dist[v] != -1) continue;
                dist[v] = dist[u] + 1;
                q.push(v);
            }
        }
    }
}
# Verdict Execution time Memory Grader output
1 Correct 303 ms 11800 KB Output is partially correct - 187300 call(s) of encode_bit()
2 Correct 3 ms 4588 KB Output is correct - 120 call(s) of encode_bit()
3 Correct 28 ms 5332 KB Output is correct - 43840 call(s) of encode_bit()
4 Correct 3 ms 4584 KB Output is correct - 140 call(s) of encode_bit()
5 Correct 49 ms 6128 KB Output is partially correct - 100920 call(s) of encode_bit()
6 Correct 48 ms 6176 KB Output is partially correct - 104140 call(s) of encode_bit()
7 Correct 94 ms 7760 KB Output is partially correct - 191000 call(s) of encode_bit()
8 Correct 23 ms 5160 KB Output is correct - 27870 call(s) of encode_bit()
9 Correct 31 ms 5084 KB Output is correct - 30510 call(s) of encode_bit()
10 Correct 25 ms 5276 KB Output is correct - 29470 call(s) of encode_bit()
11 Correct 40 ms 5648 KB Output is correct - 57350 call(s) of encode_bit()
12 Correct 19 ms 4948 KB Output is correct - 19990 call(s) of encode_bit()
13 Correct 92 ms 7144 KB Output is partially correct - 130780 call(s) of encode_bit()
14 Correct 25 ms 5204 KB Output is correct - 32720 call(s) of encode_bit()
15 Correct 28 ms 5472 KB Output is correct - 34270 call(s) of encode_bit()
16 Correct 70 ms 6040 KB Output is correct - 63510 call(s) of encode_bit()
17 Correct 67 ms 6024 KB Output is correct - 59610 call(s) of encode_bit()
18 Correct 72 ms 6720 KB Output is partially correct - 91160 call(s) of encode_bit()
19 Correct 54 ms 6336 KB Output is partially correct - 95490 call(s) of encode_bit()
20 Correct 110 ms 7216 KB Output is partially correct - 114910 call(s) of encode_bit()
21 Correct 107 ms 7412 KB Output is partially correct - 121410 call(s) of encode_bit()
22 Correct 94 ms 7816 KB Output is partially correct - 178600 call(s) of encode_bit()
23 Correct 134 ms 8284 KB Output is partially correct - 165990 call(s) of encode_bit()
# Verdict Execution time Memory Grader output
1 Correct 303 ms 11800 KB Output is partially correct - 187300 call(s) of encode_bit()
2 Correct 3 ms 4588 KB Output is correct - 120 call(s) of encode_bit()
3 Correct 28 ms 5332 KB Output is correct - 43840 call(s) of encode_bit()
4 Correct 3 ms 4584 KB Output is correct - 140 call(s) of encode_bit()
5 Correct 49 ms 6128 KB Output is partially correct - 100920 call(s) of encode_bit()
6 Correct 48 ms 6176 KB Output is partially correct - 104140 call(s) of encode_bit()
7 Correct 94 ms 7760 KB Output is partially correct - 191000 call(s) of encode_bit()
8 Correct 23 ms 5160 KB Output is correct - 27870 call(s) of encode_bit()
9 Correct 31 ms 5084 KB Output is correct - 30510 call(s) of encode_bit()
10 Correct 25 ms 5276 KB Output is correct - 29470 call(s) of encode_bit()
11 Correct 40 ms 5648 KB Output is correct - 57350 call(s) of encode_bit()
12 Correct 19 ms 4948 KB Output is correct - 19990 call(s) of encode_bit()
13 Correct 92 ms 7144 KB Output is partially correct - 130780 call(s) of encode_bit()
14 Correct 25 ms 5204 KB Output is correct - 32720 call(s) of encode_bit()
15 Correct 28 ms 5472 KB Output is correct - 34270 call(s) of encode_bit()
16 Correct 70 ms 6040 KB Output is correct - 63510 call(s) of encode_bit()
17 Correct 67 ms 6024 KB Output is correct - 59610 call(s) of encode_bit()
18 Correct 72 ms 6720 KB Output is partially correct - 91160 call(s) of encode_bit()
19 Correct 54 ms 6336 KB Output is partially correct - 95490 call(s) of encode_bit()
20 Correct 110 ms 7216 KB Output is partially correct - 114910 call(s) of encode_bit()
21 Correct 107 ms 7412 KB Output is partially correct - 121410 call(s) of encode_bit()
22 Correct 94 ms 7816 KB Output is partially correct - 178600 call(s) of encode_bit()
23 Correct 134 ms 8284 KB Output is partially correct - 165990 call(s) of encode_bit()
# Verdict Execution time Memory Grader output
1 Correct 303 ms 11800 KB Output is partially correct - 187300 call(s) of encode_bit()
2 Correct 3 ms 4588 KB Output is correct - 120 call(s) of encode_bit()
3 Correct 28 ms 5332 KB Output is correct - 43840 call(s) of encode_bit()
4 Correct 3 ms 4584 KB Output is correct - 140 call(s) of encode_bit()
5 Correct 49 ms 6128 KB Output is partially correct - 100920 call(s) of encode_bit()
6 Correct 48 ms 6176 KB Output is partially correct - 104140 call(s) of encode_bit()
7 Correct 94 ms 7760 KB Output is partially correct - 191000 call(s) of encode_bit()
8 Correct 23 ms 5160 KB Output is correct - 27870 call(s) of encode_bit()
9 Correct 31 ms 5084 KB Output is correct - 30510 call(s) of encode_bit()
10 Correct 25 ms 5276 KB Output is correct - 29470 call(s) of encode_bit()
11 Correct 40 ms 5648 KB Output is correct - 57350 call(s) of encode_bit()
12 Correct 19 ms 4948 KB Output is correct - 19990 call(s) of encode_bit()
13 Correct 92 ms 7144 KB Output is partially correct - 130780 call(s) of encode_bit()
14 Correct 25 ms 5204 KB Output is correct - 32720 call(s) of encode_bit()
15 Correct 28 ms 5472 KB Output is correct - 34270 call(s) of encode_bit()
16 Correct 70 ms 6040 KB Output is correct - 63510 call(s) of encode_bit()
17 Correct 67 ms 6024 KB Output is correct - 59610 call(s) of encode_bit()
18 Correct 72 ms 6720 KB Output is partially correct - 91160 call(s) of encode_bit()
19 Correct 54 ms 6336 KB Output is partially correct - 95490 call(s) of encode_bit()
20 Correct 110 ms 7216 KB Output is partially correct - 114910 call(s) of encode_bit()
21 Correct 107 ms 7412 KB Output is partially correct - 121410 call(s) of encode_bit()
22 Correct 94 ms 7816 KB Output is partially correct - 178600 call(s) of encode_bit()
23 Correct 134 ms 8284 KB Output is partially correct - 165990 call(s) of encode_bit()
# Verdict Execution time Memory Grader output
1 Correct 303 ms 11800 KB Output is partially correct - 187300 call(s) of encode_bit()
2 Correct 3 ms 4588 KB Output is correct - 120 call(s) of encode_bit()
3 Correct 28 ms 5332 KB Output is correct - 43840 call(s) of encode_bit()
4 Correct 3 ms 4584 KB Output is correct - 140 call(s) of encode_bit()
5 Correct 49 ms 6128 KB Output is partially correct - 100920 call(s) of encode_bit()
6 Correct 48 ms 6176 KB Output is partially correct - 104140 call(s) of encode_bit()
7 Correct 94 ms 7760 KB Output is partially correct - 191000 call(s) of encode_bit()
8 Correct 23 ms 5160 KB Output is correct - 27870 call(s) of encode_bit()
9 Correct 31 ms 5084 KB Output is correct - 30510 call(s) of encode_bit()
10 Correct 25 ms 5276 KB Output is correct - 29470 call(s) of encode_bit()
11 Correct 40 ms 5648 KB Output is correct - 57350 call(s) of encode_bit()
12 Correct 19 ms 4948 KB Output is correct - 19990 call(s) of encode_bit()
13 Correct 92 ms 7144 KB Output is partially correct - 130780 call(s) of encode_bit()
14 Correct 25 ms 5204 KB Output is correct - 32720 call(s) of encode_bit()
15 Correct 28 ms 5472 KB Output is correct - 34270 call(s) of encode_bit()
16 Correct 70 ms 6040 KB Output is correct - 63510 call(s) of encode_bit()
17 Correct 67 ms 6024 KB Output is correct - 59610 call(s) of encode_bit()
18 Correct 72 ms 6720 KB Output is partially correct - 91160 call(s) of encode_bit()
19 Correct 54 ms 6336 KB Output is partially correct - 95490 call(s) of encode_bit()
20 Correct 110 ms 7216 KB Output is partially correct - 114910 call(s) of encode_bit()
21 Correct 107 ms 7412 KB Output is partially correct - 121410 call(s) of encode_bit()
22 Correct 94 ms 7816 KB Output is partially correct - 178600 call(s) of encode_bit()
23 Correct 134 ms 8284 KB Output is partially correct - 165990 call(s) of encode_bit()