Submission #565114

# Submission time Handle Problem Language Result Execution time Memory
565114 2022-05-20T09:53:24 Z Rifal Saveit (IOI10_saveit) C++14
50 / 100
235 ms 12432 KB
#include <bits/stdc++.h>
#include <fstream>
#include "grader.h"
#include "encoder.h"
#define endl '\n'
#define mod 32768
#define INF 100000000000000
//#define ll long long
//#define cin fin
//#define cout fout
using namespace std;
//ofstream fout("convention.out");
//ifstream fin("convention.in");
const int M = 1005;
vector<int> v[M];
long long dist[M];
void bfs(int s)
{
    dist[s] = 0;
    queue<int> q;
    q.push(s);
    while(!q.empty())
    {
        int x = q.front();
        q.pop();
        for(auto i : v[x])
        {
            if(dist[i] == INF)
            {
                q.push(i);
                dist[i] = dist[x]+1;
            }
        }
    }
}
void encode(int n, int h, int p, int a[], int b[])
{
    for(int i = 0; i < p; i++)
    {
        v[a[i]].push_back(b[i]);
        v[b[i]].push_back(a[i]);
    }
    for(int i = 0; i < h; i++)
    {
        for(int j = 0; j < n; j++)
        {
            dist[j] = INF;
        }
        bfs(i);
       for(int j = 0; j < n; j++)
       {
           int y = dist[j];
           for(int q = 0; q < 10; q++)
           {
               if((y&(1<<q)) != 0)
               {
                   encode_bit(1);
               }
               else
               {
                   encode_bit(0);
               }
           }
       }
    }
 
}
#include "grader.h"
#include "decoder.h"
#include <bits/stdc++.h>
#include <fstream>
#define endl '\n'
#define mod 32768
#define INF 100000000000000
//#define ll long long
//#define cin fin
//#define cout fout
using namespace std;
//ofstream fout("convention.out");
//ifstream fin("convention.in");
void decode(int n, int h)
{
    long long pw2[11];
    pw2[0] = 1;
    for(int i = 1; i < 11; i++)
    {
        pw2[i] = pw2[i-1]*2;
    }
    for(int i = 0; i < h; i++)
    {
        for(int j = 0; j < n; j++)
        {
            long long cnt = 0;
            for(int q = 0; q < 10; q++)
            {
                if(decode_bit() != 0)
                {
                    cnt += pw2[q];
                }
            }
            hops(i,j,cnt);
        }
    }
}
# Verdict Execution time Memory Grader output
1 Correct 235 ms 12432 KB Output is partially correct - 360000 call(s) of encode_bit()
2 Correct 2 ms 4604 KB Output is correct - 150 call(s) of encode_bit()
3 Correct 69 ms 7252 KB Output is partially correct - 324000 call(s) of encode_bit()
4 Correct 3 ms 4604 KB Output is correct - 250 call(s) of encode_bit()
5 Correct 78 ms 7484 KB Output is partially correct - 324000 call(s) of encode_bit()
6 Correct 71 ms 7660 KB Output is partially correct - 360000 call(s) of encode_bit()
7 Correct 82 ms 8028 KB Output is partially correct - 360000 call(s) of encode_bit()
8 Correct 82 ms 7436 KB Output is partially correct - 345960 call(s) of encode_bit()
9 Correct 70 ms 7616 KB Output is partially correct - 360000 call(s) of encode_bit()
10 Correct 70 ms 7664 KB Output is partially correct - 360000 call(s) of encode_bit()
11 Correct 90 ms 7752 KB Output is partially correct - 360000 call(s) of encode_bit()
12 Correct 76 ms 7584 KB Output is partially correct - 360000 call(s) of encode_bit()
13 Correct 109 ms 8188 KB Output is partially correct - 360000 call(s) of encode_bit()
14 Correct 94 ms 7520 KB Output is partially correct - 360000 call(s) of encode_bit()
15 Correct 97 ms 7640 KB Output is partially correct - 360000 call(s) of encode_bit()
16 Correct 111 ms 8024 KB Output is partially correct - 360000 call(s) of encode_bit()
17 Correct 87 ms 8016 KB Output is partially correct - 360000 call(s) of encode_bit()
18 Correct 115 ms 8360 KB Output is partially correct - 360000 call(s) of encode_bit()
19 Correct 100 ms 7896 KB Output is partially correct - 360000 call(s) of encode_bit()
20 Correct 108 ms 8580 KB Output is partially correct - 360000 call(s) of encode_bit()
21 Correct 126 ms 8772 KB Output is partially correct - 360000 call(s) of encode_bit()
22 Correct 92 ms 8284 KB Output is partially correct - 360000 call(s) of encode_bit()
23 Correct 115 ms 9028 KB Output is partially correct - 360000 call(s) of encode_bit()
# Verdict Execution time Memory Grader output
1 Correct 235 ms 12432 KB Output is partially correct - 360000 call(s) of encode_bit()
2 Correct 2 ms 4604 KB Output is correct - 150 call(s) of encode_bit()
3 Correct 69 ms 7252 KB Output is partially correct - 324000 call(s) of encode_bit()
4 Correct 3 ms 4604 KB Output is correct - 250 call(s) of encode_bit()
5 Correct 78 ms 7484 KB Output is partially correct - 324000 call(s) of encode_bit()
6 Correct 71 ms 7660 KB Output is partially correct - 360000 call(s) of encode_bit()
7 Correct 82 ms 8028 KB Output is partially correct - 360000 call(s) of encode_bit()
8 Correct 82 ms 7436 KB Output is partially correct - 345960 call(s) of encode_bit()
9 Correct 70 ms 7616 KB Output is partially correct - 360000 call(s) of encode_bit()
10 Correct 70 ms 7664 KB Output is partially correct - 360000 call(s) of encode_bit()
11 Correct 90 ms 7752 KB Output is partially correct - 360000 call(s) of encode_bit()
12 Correct 76 ms 7584 KB Output is partially correct - 360000 call(s) of encode_bit()
13 Correct 109 ms 8188 KB Output is partially correct - 360000 call(s) of encode_bit()
14 Correct 94 ms 7520 KB Output is partially correct - 360000 call(s) of encode_bit()
15 Correct 97 ms 7640 KB Output is partially correct - 360000 call(s) of encode_bit()
16 Correct 111 ms 8024 KB Output is partially correct - 360000 call(s) of encode_bit()
17 Correct 87 ms 8016 KB Output is partially correct - 360000 call(s) of encode_bit()
18 Correct 115 ms 8360 KB Output is partially correct - 360000 call(s) of encode_bit()
19 Correct 100 ms 7896 KB Output is partially correct - 360000 call(s) of encode_bit()
20 Correct 108 ms 8580 KB Output is partially correct - 360000 call(s) of encode_bit()
21 Correct 126 ms 8772 KB Output is partially correct - 360000 call(s) of encode_bit()
22 Correct 92 ms 8284 KB Output is partially correct - 360000 call(s) of encode_bit()
23 Correct 115 ms 9028 KB Output is partially correct - 360000 call(s) of encode_bit()
# Verdict Execution time Memory Grader output
1 Correct 235 ms 12432 KB Output is partially correct - 360000 call(s) of encode_bit()
2 Correct 2 ms 4604 KB Output is correct - 150 call(s) of encode_bit()
3 Correct 69 ms 7252 KB Output is partially correct - 324000 call(s) of encode_bit()
4 Correct 3 ms 4604 KB Output is correct - 250 call(s) of encode_bit()
5 Correct 78 ms 7484 KB Output is partially correct - 324000 call(s) of encode_bit()
6 Correct 71 ms 7660 KB Output is partially correct - 360000 call(s) of encode_bit()
7 Correct 82 ms 8028 KB Output is partially correct - 360000 call(s) of encode_bit()
8 Correct 82 ms 7436 KB Output is partially correct - 345960 call(s) of encode_bit()
9 Correct 70 ms 7616 KB Output is partially correct - 360000 call(s) of encode_bit()
10 Correct 70 ms 7664 KB Output is partially correct - 360000 call(s) of encode_bit()
11 Correct 90 ms 7752 KB Output is partially correct - 360000 call(s) of encode_bit()
12 Correct 76 ms 7584 KB Output is partially correct - 360000 call(s) of encode_bit()
13 Correct 109 ms 8188 KB Output is partially correct - 360000 call(s) of encode_bit()
14 Correct 94 ms 7520 KB Output is partially correct - 360000 call(s) of encode_bit()
15 Correct 97 ms 7640 KB Output is partially correct - 360000 call(s) of encode_bit()
16 Correct 111 ms 8024 KB Output is partially correct - 360000 call(s) of encode_bit()
17 Correct 87 ms 8016 KB Output is partially correct - 360000 call(s) of encode_bit()
18 Correct 115 ms 8360 KB Output is partially correct - 360000 call(s) of encode_bit()
19 Correct 100 ms 7896 KB Output is partially correct - 360000 call(s) of encode_bit()
20 Correct 108 ms 8580 KB Output is partially correct - 360000 call(s) of encode_bit()
21 Correct 126 ms 8772 KB Output is partially correct - 360000 call(s) of encode_bit()
22 Correct 92 ms 8284 KB Output is partially correct - 360000 call(s) of encode_bit()
23 Correct 115 ms 9028 KB Output is partially correct - 360000 call(s) of encode_bit()
# Verdict Execution time Memory Grader output
1 Correct 235 ms 12432 KB Output is partially correct - 360000 call(s) of encode_bit()
2 Correct 2 ms 4604 KB Output is correct - 150 call(s) of encode_bit()
3 Correct 69 ms 7252 KB Output is partially correct - 324000 call(s) of encode_bit()
4 Correct 3 ms 4604 KB Output is correct - 250 call(s) of encode_bit()
5 Correct 78 ms 7484 KB Output is partially correct - 324000 call(s) of encode_bit()
6 Correct 71 ms 7660 KB Output is partially correct - 360000 call(s) of encode_bit()
7 Correct 82 ms 8028 KB Output is partially correct - 360000 call(s) of encode_bit()
8 Correct 82 ms 7436 KB Output is partially correct - 345960 call(s) of encode_bit()
9 Correct 70 ms 7616 KB Output is partially correct - 360000 call(s) of encode_bit()
10 Correct 70 ms 7664 KB Output is partially correct - 360000 call(s) of encode_bit()
11 Correct 90 ms 7752 KB Output is partially correct - 360000 call(s) of encode_bit()
12 Correct 76 ms 7584 KB Output is partially correct - 360000 call(s) of encode_bit()
13 Correct 109 ms 8188 KB Output is partially correct - 360000 call(s) of encode_bit()
14 Correct 94 ms 7520 KB Output is partially correct - 360000 call(s) of encode_bit()
15 Correct 97 ms 7640 KB Output is partially correct - 360000 call(s) of encode_bit()
16 Correct 111 ms 8024 KB Output is partially correct - 360000 call(s) of encode_bit()
17 Correct 87 ms 8016 KB Output is partially correct - 360000 call(s) of encode_bit()
18 Correct 115 ms 8360 KB Output is partially correct - 360000 call(s) of encode_bit()
19 Correct 100 ms 7896 KB Output is partially correct - 360000 call(s) of encode_bit()
20 Correct 108 ms 8580 KB Output is partially correct - 360000 call(s) of encode_bit()
21 Correct 126 ms 8772 KB Output is partially correct - 360000 call(s) of encode_bit()
22 Correct 92 ms 8284 KB Output is partially correct - 360000 call(s) of encode_bit()
23 Correct 115 ms 9028 KB Output is partially correct - 360000 call(s) of encode_bit()