Submission #514908

# Submission time Handle Problem Language Result Execution time Memory
514908 2022-01-18T18:57:46 Z 600Mihnea Saveit (IOI10_saveit) C++17
50 / 100
320 ms 10780 KB
#include "grader.h"
#include "encoder.h"
#include <bits/stdc++.h>

using namespace std;

void encode(int nv, int nh, int ne, int *v1, int *v2) {
  const int STORING_BITS = 10;

  vector<vector<int>> g(nv);
  vector<int> parrent(nv, -2);
  vector<bool> vis(nv, 0);
  for (int i = 0; i < ne; i++) {
    g[v1[i]].push_back(v2[i]);
    g[v2[i]].push_back(v1[i]);
  }
  function<void(int)> dfs = [&] (int a) {
    vis[a] = 1;
    for (auto &b : g[a]) {
      if (!vis[b]) {
        parrent[b] = a;
        dfs(b);
      }
    }
  };
  parrent[0] = -1;
  dfs(0);
  int cnt = 0;
  for (int i = 1; i < nv; i++) {
    for (int bit = 0; bit < STORING_BITS; bit++) {
      if (parrent[i] & (1 << bit)) {
        encode_bit(1);
        cnt++;
      } else {
        encode_bit(0);
        cnt++;
      }
    }
  }
  vector<int> stored;
  for (int i = 0; i < nh; i++) {
    /// calculate the dist from vertex i
    vector<int> d(nv, -1);
    queue<int> q;
    q.push(i);
    d[i] = 0;
    while (!q.empty()) {
      int a = q.front();
      q.pop();
      for (auto &b : g[a]) {
        if (d[b] == -1) {
          d[b] = 1 + d[a];
          q.push(b);
        }
      }
    }

    for (int i = 1; i < nv; i++) {
      int dif = d[i] - d[parrent[i]];
      stored.push_back(dif + 1);
    }
  }

  for (auto &send : stored) {
    if (send == 0) {
      encode_bit(0);
      encode_bit(0);
    }
    if (send == 1) {
      encode_bit(0);
      encode_bit(1);
    }
    if (send == 2) {
      encode_bit(1);
      encode_bit(0);
    }
  }
}

#include "grader.h"
#include "decoder.h"
#include <bits/stdc++.h>

using namespace std;

void decode(int nv, int nh) {
  const int STORING_BITS = 10;
  vector<int> parrent(nv, 0);
  parrent[0] = -1;
  for (int i = 1; i < nv; i++) {
    for (int bit = 0; bit < STORING_BITS; bit++) {
      int x = decode_bit();
      parrent[i] += (1 << bit) * x;
    }
  }

  vector<int> stored(nh * (nv - 1));
  for (int i = 0; i < (int) stored.size(); i++) {
    int a = decode_bit();
    int b = decode_bit();
    if (a == 0) {
      stored[i] = b;
    } else {
      stored[i] = 2;
    }
  }
  int po = 0;
  for (int r = 0; r < nh; r++) {
    /// calculate the dist from vertex i
    vector<vector<pair<int, int>>> g(nv);
    for (int i = 1; i < nv; i++) {
      int dif = stored[po++] - 1;
      int j = parrent[i];
      g[i].push_back({j, dif});
      g[j].push_back({i, -dif});
    }
    const int TOKEN = -(int) 1e9;
    vector<int> sol(nv, TOKEN);
    sol[r] = 0;
    function<void(int)> explore = [&] (int a) {
      for (auto &b : g[a]) {
        if (sol[b.first] == TOKEN) {
          sol[b.first] = sol[a] - b.second;
          explore(b.first);
        }
      }
    };
    explore(r);
    for (int i = 0; i < nv; i++) {
      hops(r, i, sol[i]);
    }
  }
}

# Verdict Execution time Memory Grader output
1 Correct 320 ms 10780 KB Output is partially correct - 81918 call(s) of encode_bit()
2 Correct 1 ms 4588 KB Output is correct - 64 call(s) of encode_bit()
3 Correct 27 ms 5816 KB Output is partially correct - 73718 call(s) of encode_bit()
4 Correct 2 ms 4576 KB Output is correct - 80 call(s) of encode_bit()
5 Correct 32 ms 5976 KB Output is partially correct - 73718 call(s) of encode_bit()
6 Correct 35 ms 6032 KB Output is partially correct - 81918 call(s) of encode_bit()
7 Correct 55 ms 6352 KB Output is partially correct - 81918 call(s) of encode_bit()
8 Correct 26 ms 5800 KB Output is partially correct - 78720 call(s) of encode_bit()
9 Correct 27 ms 5868 KB Output is partially correct - 81918 call(s) of encode_bit()
10 Correct 27 ms 5952 KB Output is partially correct - 81918 call(s) of encode_bit()
11 Correct 31 ms 5960 KB Output is partially correct - 81918 call(s) of encode_bit()
12 Correct 30 ms 5880 KB Output is partially correct - 81918 call(s) of encode_bit()
13 Correct 57 ms 6492 KB Output is partially correct - 81918 call(s) of encode_bit()
14 Correct 28 ms 6136 KB Output is partially correct - 81918 call(s) of encode_bit()
15 Correct 27 ms 6068 KB Output is partially correct - 81918 call(s) of encode_bit()
16 Correct 46 ms 6416 KB Output is partially correct - 81918 call(s) of encode_bit()
17 Correct 52 ms 6348 KB Output is partially correct - 81918 call(s) of encode_bit()
18 Correct 56 ms 6652 KB Output is partially correct - 81918 call(s) of encode_bit()
19 Correct 40 ms 6472 KB Output is partially correct - 81918 call(s) of encode_bit()
20 Correct 59 ms 6972 KB Output is partially correct - 81918 call(s) of encode_bit()
21 Correct 67 ms 7020 KB Output is partially correct - 81918 call(s) of encode_bit()
22 Correct 49 ms 6740 KB Output is partially correct - 81918 call(s) of encode_bit()
23 Correct 73 ms 7192 KB Output is partially correct - 81918 call(s) of encode_bit()
# Verdict Execution time Memory Grader output
1 Correct 320 ms 10780 KB Output is partially correct - 81918 call(s) of encode_bit()
2 Correct 1 ms 4588 KB Output is correct - 64 call(s) of encode_bit()
3 Correct 27 ms 5816 KB Output is partially correct - 73718 call(s) of encode_bit()
4 Correct 2 ms 4576 KB Output is correct - 80 call(s) of encode_bit()
5 Correct 32 ms 5976 KB Output is partially correct - 73718 call(s) of encode_bit()
6 Correct 35 ms 6032 KB Output is partially correct - 81918 call(s) of encode_bit()
7 Correct 55 ms 6352 KB Output is partially correct - 81918 call(s) of encode_bit()
8 Correct 26 ms 5800 KB Output is partially correct - 78720 call(s) of encode_bit()
9 Correct 27 ms 5868 KB Output is partially correct - 81918 call(s) of encode_bit()
10 Correct 27 ms 5952 KB Output is partially correct - 81918 call(s) of encode_bit()
11 Correct 31 ms 5960 KB Output is partially correct - 81918 call(s) of encode_bit()
12 Correct 30 ms 5880 KB Output is partially correct - 81918 call(s) of encode_bit()
13 Correct 57 ms 6492 KB Output is partially correct - 81918 call(s) of encode_bit()
14 Correct 28 ms 6136 KB Output is partially correct - 81918 call(s) of encode_bit()
15 Correct 27 ms 6068 KB Output is partially correct - 81918 call(s) of encode_bit()
16 Correct 46 ms 6416 KB Output is partially correct - 81918 call(s) of encode_bit()
17 Correct 52 ms 6348 KB Output is partially correct - 81918 call(s) of encode_bit()
18 Correct 56 ms 6652 KB Output is partially correct - 81918 call(s) of encode_bit()
19 Correct 40 ms 6472 KB Output is partially correct - 81918 call(s) of encode_bit()
20 Correct 59 ms 6972 KB Output is partially correct - 81918 call(s) of encode_bit()
21 Correct 67 ms 7020 KB Output is partially correct - 81918 call(s) of encode_bit()
22 Correct 49 ms 6740 KB Output is partially correct - 81918 call(s) of encode_bit()
23 Correct 73 ms 7192 KB Output is partially correct - 81918 call(s) of encode_bit()
# Verdict Execution time Memory Grader output
1 Correct 320 ms 10780 KB Output is partially correct - 81918 call(s) of encode_bit()
2 Correct 1 ms 4588 KB Output is correct - 64 call(s) of encode_bit()
3 Correct 27 ms 5816 KB Output is partially correct - 73718 call(s) of encode_bit()
4 Correct 2 ms 4576 KB Output is correct - 80 call(s) of encode_bit()
5 Correct 32 ms 5976 KB Output is partially correct - 73718 call(s) of encode_bit()
6 Correct 35 ms 6032 KB Output is partially correct - 81918 call(s) of encode_bit()
7 Correct 55 ms 6352 KB Output is partially correct - 81918 call(s) of encode_bit()
8 Correct 26 ms 5800 KB Output is partially correct - 78720 call(s) of encode_bit()
9 Correct 27 ms 5868 KB Output is partially correct - 81918 call(s) of encode_bit()
10 Correct 27 ms 5952 KB Output is partially correct - 81918 call(s) of encode_bit()
11 Correct 31 ms 5960 KB Output is partially correct - 81918 call(s) of encode_bit()
12 Correct 30 ms 5880 KB Output is partially correct - 81918 call(s) of encode_bit()
13 Correct 57 ms 6492 KB Output is partially correct - 81918 call(s) of encode_bit()
14 Correct 28 ms 6136 KB Output is partially correct - 81918 call(s) of encode_bit()
15 Correct 27 ms 6068 KB Output is partially correct - 81918 call(s) of encode_bit()
16 Correct 46 ms 6416 KB Output is partially correct - 81918 call(s) of encode_bit()
17 Correct 52 ms 6348 KB Output is partially correct - 81918 call(s) of encode_bit()
18 Correct 56 ms 6652 KB Output is partially correct - 81918 call(s) of encode_bit()
19 Correct 40 ms 6472 KB Output is partially correct - 81918 call(s) of encode_bit()
20 Correct 59 ms 6972 KB Output is partially correct - 81918 call(s) of encode_bit()
21 Correct 67 ms 7020 KB Output is partially correct - 81918 call(s) of encode_bit()
22 Correct 49 ms 6740 KB Output is partially correct - 81918 call(s) of encode_bit()
23 Correct 73 ms 7192 KB Output is partially correct - 81918 call(s) of encode_bit()
# Verdict Execution time Memory Grader output
1 Correct 320 ms 10780 KB Output is partially correct - 81918 call(s) of encode_bit()
2 Correct 1 ms 4588 KB Output is correct - 64 call(s) of encode_bit()
3 Correct 27 ms 5816 KB Output is partially correct - 73718 call(s) of encode_bit()
4 Correct 2 ms 4576 KB Output is correct - 80 call(s) of encode_bit()
5 Correct 32 ms 5976 KB Output is partially correct - 73718 call(s) of encode_bit()
6 Correct 35 ms 6032 KB Output is partially correct - 81918 call(s) of encode_bit()
7 Correct 55 ms 6352 KB Output is partially correct - 81918 call(s) of encode_bit()
8 Correct 26 ms 5800 KB Output is partially correct - 78720 call(s) of encode_bit()
9 Correct 27 ms 5868 KB Output is partially correct - 81918 call(s) of encode_bit()
10 Correct 27 ms 5952 KB Output is partially correct - 81918 call(s) of encode_bit()
11 Correct 31 ms 5960 KB Output is partially correct - 81918 call(s) of encode_bit()
12 Correct 30 ms 5880 KB Output is partially correct - 81918 call(s) of encode_bit()
13 Correct 57 ms 6492 KB Output is partially correct - 81918 call(s) of encode_bit()
14 Correct 28 ms 6136 KB Output is partially correct - 81918 call(s) of encode_bit()
15 Correct 27 ms 6068 KB Output is partially correct - 81918 call(s) of encode_bit()
16 Correct 46 ms 6416 KB Output is partially correct - 81918 call(s) of encode_bit()
17 Correct 52 ms 6348 KB Output is partially correct - 81918 call(s) of encode_bit()
18 Correct 56 ms 6652 KB Output is partially correct - 81918 call(s) of encode_bit()
19 Correct 40 ms 6472 KB Output is partially correct - 81918 call(s) of encode_bit()
20 Correct 59 ms 6972 KB Output is partially correct - 81918 call(s) of encode_bit()
21 Correct 67 ms 7020 KB Output is partially correct - 81918 call(s) of encode_bit()
22 Correct 49 ms 6740 KB Output is partially correct - 81918 call(s) of encode_bit()
23 Correct 73 ms 7192 KB Output is partially correct - 81918 call(s) of encode_bit()