Submission #394914

# Submission time Handle Problem Language Result Execution time Memory
394914 2021-04-27T13:33:43 Z MarcoMeijer Saveit (IOI10_saveit) C++14
50 / 100
606 ms 35424 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);
    set<ii> difEdges;
    RE(i,ne) {
        adj[v1[i]].pb(v2[i]);
        adj[v2[i]].pb(v1[i]);
        difEdges.insert({v1[i],v2[i]});
        difEdges.insert({v2[i],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;
                q.push(v);
            }
        }
        
        vi prev = {h};
        RE1(i,nv) {
            vi cur;
            RE(u,nv) if(dist[u] == i) cur.pb(u);
            FOR(u,cur) {
                bool found = false;
                FOR(v,prev) if(usedEdges.count({min(u,v),max(u,v)})) {
                    found = true;
                    break;
                }
                if(!found) FOR(v,prev) if(difEdges.count({u,v})) {
                    usedEdges.insert({min(u,v),max(u,v)});
                    break;
                }
            }
            if(cur.empty()) break;
            prev = cur;
        }
    }

    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 606 ms 35424 KB Output is partially correct - 187300 call(s) of encode_bit()
2 Correct 3 ms 4592 KB Output is correct - 120 call(s) of encode_bit()
3 Correct 143 ms 5620 KB Output is correct - 43600 call(s) of encode_bit()
4 Correct 3 ms 4584 KB Output is correct - 140 call(s) of encode_bit()
5 Correct 150 ms 7160 KB Output is partially correct - 85990 call(s) of encode_bit()
6 Correct 203 ms 6944 KB Output is partially correct - 87960 call(s) of encode_bit()
7 Correct 196 ms 10124 KB Output is partially correct - 158660 call(s) of encode_bit()
8 Correct 54 ms 5156 KB Output is correct - 26590 call(s) of encode_bit()
9 Correct 53 ms 5304 KB Output is correct - 25670 call(s) of encode_bit()
10 Correct 52 ms 5352 KB Output is correct - 25350 call(s) of encode_bit()
11 Correct 66 ms 6320 KB Output is correct - 40970 call(s) of encode_bit()
12 Correct 108 ms 4972 KB Output is correct - 19990 call(s) of encode_bit()
13 Correct 190 ms 10236 KB Output is partially correct - 93520 call(s) of encode_bit()
14 Correct 95 ms 5576 KB Output is correct - 29890 call(s) of encode_bit()
15 Correct 103 ms 5708 KB Output is correct - 31980 call(s) of encode_bit()
16 Correct 147 ms 9040 KB Output is correct - 55200 call(s) of encode_bit()
17 Correct 119 ms 8492 KB Output is correct - 50890 call(s) of encode_bit()
18 Correct 160 ms 9988 KB Output is correct - 66880 call(s) of encode_bit()
19 Correct 124 ms 7712 KB Output is partially correct - 70860 call(s) of encode_bit()
20 Correct 181 ms 11500 KB Output is partially correct - 77510 call(s) of encode_bit()
21 Correct 229 ms 12576 KB Output is partially correct - 81980 call(s) of encode_bit()
22 Correct 189 ms 10460 KB Output is partially correct - 130590 call(s) of encode_bit()
23 Correct 230 ms 13992 KB Output is partially correct - 112230 call(s) of encode_bit()
# Verdict Execution time Memory Grader output
1 Correct 606 ms 35424 KB Output is partially correct - 187300 call(s) of encode_bit()
2 Correct 3 ms 4592 KB Output is correct - 120 call(s) of encode_bit()
3 Correct 143 ms 5620 KB Output is correct - 43600 call(s) of encode_bit()
4 Correct 3 ms 4584 KB Output is correct - 140 call(s) of encode_bit()
5 Correct 150 ms 7160 KB Output is partially correct - 85990 call(s) of encode_bit()
6 Correct 203 ms 6944 KB Output is partially correct - 87960 call(s) of encode_bit()
7 Correct 196 ms 10124 KB Output is partially correct - 158660 call(s) of encode_bit()
8 Correct 54 ms 5156 KB Output is correct - 26590 call(s) of encode_bit()
9 Correct 53 ms 5304 KB Output is correct - 25670 call(s) of encode_bit()
10 Correct 52 ms 5352 KB Output is correct - 25350 call(s) of encode_bit()
11 Correct 66 ms 6320 KB Output is correct - 40970 call(s) of encode_bit()
12 Correct 108 ms 4972 KB Output is correct - 19990 call(s) of encode_bit()
13 Correct 190 ms 10236 KB Output is partially correct - 93520 call(s) of encode_bit()
14 Correct 95 ms 5576 KB Output is correct - 29890 call(s) of encode_bit()
15 Correct 103 ms 5708 KB Output is correct - 31980 call(s) of encode_bit()
16 Correct 147 ms 9040 KB Output is correct - 55200 call(s) of encode_bit()
17 Correct 119 ms 8492 KB Output is correct - 50890 call(s) of encode_bit()
18 Correct 160 ms 9988 KB Output is correct - 66880 call(s) of encode_bit()
19 Correct 124 ms 7712 KB Output is partially correct - 70860 call(s) of encode_bit()
20 Correct 181 ms 11500 KB Output is partially correct - 77510 call(s) of encode_bit()
21 Correct 229 ms 12576 KB Output is partially correct - 81980 call(s) of encode_bit()
22 Correct 189 ms 10460 KB Output is partially correct - 130590 call(s) of encode_bit()
23 Correct 230 ms 13992 KB Output is partially correct - 112230 call(s) of encode_bit()
# Verdict Execution time Memory Grader output
1 Correct 606 ms 35424 KB Output is partially correct - 187300 call(s) of encode_bit()
2 Correct 3 ms 4592 KB Output is correct - 120 call(s) of encode_bit()
3 Correct 143 ms 5620 KB Output is correct - 43600 call(s) of encode_bit()
4 Correct 3 ms 4584 KB Output is correct - 140 call(s) of encode_bit()
5 Correct 150 ms 7160 KB Output is partially correct - 85990 call(s) of encode_bit()
6 Correct 203 ms 6944 KB Output is partially correct - 87960 call(s) of encode_bit()
7 Correct 196 ms 10124 KB Output is partially correct - 158660 call(s) of encode_bit()
8 Correct 54 ms 5156 KB Output is correct - 26590 call(s) of encode_bit()
9 Correct 53 ms 5304 KB Output is correct - 25670 call(s) of encode_bit()
10 Correct 52 ms 5352 KB Output is correct - 25350 call(s) of encode_bit()
11 Correct 66 ms 6320 KB Output is correct - 40970 call(s) of encode_bit()
12 Correct 108 ms 4972 KB Output is correct - 19990 call(s) of encode_bit()
13 Correct 190 ms 10236 KB Output is partially correct - 93520 call(s) of encode_bit()
14 Correct 95 ms 5576 KB Output is correct - 29890 call(s) of encode_bit()
15 Correct 103 ms 5708 KB Output is correct - 31980 call(s) of encode_bit()
16 Correct 147 ms 9040 KB Output is correct - 55200 call(s) of encode_bit()
17 Correct 119 ms 8492 KB Output is correct - 50890 call(s) of encode_bit()
18 Correct 160 ms 9988 KB Output is correct - 66880 call(s) of encode_bit()
19 Correct 124 ms 7712 KB Output is partially correct - 70860 call(s) of encode_bit()
20 Correct 181 ms 11500 KB Output is partially correct - 77510 call(s) of encode_bit()
21 Correct 229 ms 12576 KB Output is partially correct - 81980 call(s) of encode_bit()
22 Correct 189 ms 10460 KB Output is partially correct - 130590 call(s) of encode_bit()
23 Correct 230 ms 13992 KB Output is partially correct - 112230 call(s) of encode_bit()
# Verdict Execution time Memory Grader output
1 Correct 606 ms 35424 KB Output is partially correct - 187300 call(s) of encode_bit()
2 Correct 3 ms 4592 KB Output is correct - 120 call(s) of encode_bit()
3 Correct 143 ms 5620 KB Output is correct - 43600 call(s) of encode_bit()
4 Correct 3 ms 4584 KB Output is correct - 140 call(s) of encode_bit()
5 Correct 150 ms 7160 KB Output is partially correct - 85990 call(s) of encode_bit()
6 Correct 203 ms 6944 KB Output is partially correct - 87960 call(s) of encode_bit()
7 Correct 196 ms 10124 KB Output is partially correct - 158660 call(s) of encode_bit()
8 Correct 54 ms 5156 KB Output is correct - 26590 call(s) of encode_bit()
9 Correct 53 ms 5304 KB Output is correct - 25670 call(s) of encode_bit()
10 Correct 52 ms 5352 KB Output is correct - 25350 call(s) of encode_bit()
11 Correct 66 ms 6320 KB Output is correct - 40970 call(s) of encode_bit()
12 Correct 108 ms 4972 KB Output is correct - 19990 call(s) of encode_bit()
13 Correct 190 ms 10236 KB Output is partially correct - 93520 call(s) of encode_bit()
14 Correct 95 ms 5576 KB Output is correct - 29890 call(s) of encode_bit()
15 Correct 103 ms 5708 KB Output is correct - 31980 call(s) of encode_bit()
16 Correct 147 ms 9040 KB Output is correct - 55200 call(s) of encode_bit()
17 Correct 119 ms 8492 KB Output is correct - 50890 call(s) of encode_bit()
18 Correct 160 ms 9988 KB Output is correct - 66880 call(s) of encode_bit()
19 Correct 124 ms 7712 KB Output is partially correct - 70860 call(s) of encode_bit()
20 Correct 181 ms 11500 KB Output is partially correct - 77510 call(s) of encode_bit()
21 Correct 229 ms 12576 KB Output is partially correct - 81980 call(s) of encode_bit()
22 Correct 189 ms 10460 KB Output is partially correct - 130590 call(s) of encode_bit()
23 Correct 230 ms 13992 KB Output is partially correct - 112230 call(s) of encode_bit()