Submission #565154

# Submission time Handle Problem Language Result Execution time Memory
565154 2022-05-20T11:01:26 Z MrDeboo Saveit (IOI10_saveit) C++17
0 / 100
251 ms 13368 KB
#include "grader.h"
#include "encoder.h"
#include <bits/stdc++.h>
using namespace std;
void encode(int n, int h, int p, int v1[], int v2[]){
    srand(time(NULL));
    vector<int>vct[n];
    for(int i=0;i<p;i++){
        vct[v1[i]].push_back(v2[i]);
        vct[v2[i]].push_back(v1[i]);
    }
    priority_queue<pair<int,pair<int,int>>>pq;
    map<pair<int,int>,bool>mp;
    for(int i=0;i<h;i++){
        deque<pair<int,int>>dq={{0,i}};
        vector<bool>vis(n);
        while(dq.size()){
            pair<int,int>p=dq.front();
            dq.pop_front();
            for(auto &w:vct[p.second]){
                if(vis[w])continue;
                vis[w]=1;
                if(!mp[{min(w,p.second),max(w,p.second)}]){
                    pq.push({rand()%10+p.first,{min(w,p.second),max(w,p.second)}});
                    mp[{min(w,p.second),max(w,p.second)}]=1;
                }
                dq.push_back({p.first+1,w});
            }
        }
    }
    int tot=360000/20;
    while(tot--){
        pair<int,int>pr;
        if(pq.empty())pr={0,0};
        else{
            pr=pq.top().second;
            pq.pop();
        }
        for(int i=0;i<10;i++)encode_bit((!!(pr.first&(1<<i))));
        for(int i=0;i<10;i++)encode_bit((!!(pr.second&(1<<i))));
    }
}
#include "grader.h"
#include "decoder.h"
#include <bits/stdc++.h>
using namespace std;
void decode(int n, int h) {
    vector<int>vct[n];
    for(int i=0;i<80000/20;i++){
        int a=0,b=0;
        for(int w=0;w<10;w++)a+=(1<<w)*decode_bit();
        for(int w=0;w<10;w++)b+=(1<<w)*decode_bit();
        vct[a].push_back(b);
        vct[b].push_back(a);
    }
    for(int i=0;i<h;i++){
        deque<pair<int,int>>dq={{0,i}};
        vector<bool>vis(n);
        vis[i]=1;
        while(dq.size()){
            pair<int,int>p=dq.front();
            dq.pop_front();
            hops(i,p.second,p.first);
            for(auto &w:vct[p.second]){if(!vis[w]){dq.push_back({p.first+1,w});vis[w]=1;}}
        }
    }
}
# Verdict Execution time Memory Grader output
1 Incorrect 251 ms 13368 KB function hops(h,c,d) must be called exactly N×H times
2 Correct 52 ms 7368 KB Output is partially correct - 360000 call(s) of encode_bit()
3 Correct 73 ms 7968 KB Output is partially correct - 360000 call(s) of encode_bit()
4 Correct 56 ms 7332 KB Output is partially correct - 360000 call(s) of encode_bit()
5 Incorrect 83 ms 8532 KB Output isn't correct
6 Incorrect 77 ms 8480 KB Output isn't correct
7 Incorrect 98 ms 9392 KB Output isn't correct
8 Correct 74 ms 7844 KB Output is partially correct - 360000 call(s) of encode_bit()
9 Correct 77 ms 7996 KB Output is partially correct - 360000 call(s) of encode_bit()
10 Correct 73 ms 7844 KB Output is partially correct - 360000 call(s) of encode_bit()
11 Incorrect 67 ms 8116 KB function hops(h,c,d) must be called exactly N×H times
12 Correct 62 ms 7732 KB Output is partially correct - 360000 call(s) of encode_bit()
13 Incorrect 114 ms 9116 KB function hops(h,c,d) must be called exactly N×H times
14 Correct 67 ms 8000 KB Output is partially correct - 360000 call(s) of encode_bit()
15 Correct 83 ms 7924 KB Output is partially correct - 360000 call(s) of encode_bit()
16 Incorrect 93 ms 8580 KB function hops(h,c,d) must be called exactly N×H times
17 Incorrect 94 ms 8588 KB Output isn't correct
18 Incorrect 93 ms 9096 KB function hops(h,c,d) must be called exactly N×H times
19 Incorrect 90 ms 8748 KB function hops(h,c,d) must be called exactly N×H times
20 Incorrect 114 ms 9476 KB function hops(h,c,d) must be called exactly N×H times
21 Incorrect 114 ms 9672 KB function hops(h,c,d) must be called exactly N×H times
22 Incorrect 110 ms 9496 KB function hops(h,c,d) must be called exactly N×H times
23 Incorrect 144 ms 10176 KB function hops(h,c,d) must be called exactly N×H times
# Verdict Execution time Memory Grader output
1 Incorrect 251 ms 13368 KB function hops(h,c,d) must be called exactly N×H times
2 Correct 52 ms 7368 KB Output is partially correct - 360000 call(s) of encode_bit()
3 Correct 73 ms 7968 KB Output is partially correct - 360000 call(s) of encode_bit()
4 Correct 56 ms 7332 KB Output is partially correct - 360000 call(s) of encode_bit()
5 Incorrect 83 ms 8532 KB Output isn't correct
6 Incorrect 77 ms 8480 KB Output isn't correct
7 Incorrect 98 ms 9392 KB Output isn't correct
8 Correct 74 ms 7844 KB Output is partially correct - 360000 call(s) of encode_bit()
9 Correct 77 ms 7996 KB Output is partially correct - 360000 call(s) of encode_bit()
10 Correct 73 ms 7844 KB Output is partially correct - 360000 call(s) of encode_bit()
11 Incorrect 67 ms 8116 KB function hops(h,c,d) must be called exactly N×H times
12 Correct 62 ms 7732 KB Output is partially correct - 360000 call(s) of encode_bit()
13 Incorrect 114 ms 9116 KB function hops(h,c,d) must be called exactly N×H times
14 Correct 67 ms 8000 KB Output is partially correct - 360000 call(s) of encode_bit()
15 Correct 83 ms 7924 KB Output is partially correct - 360000 call(s) of encode_bit()
16 Incorrect 93 ms 8580 KB function hops(h,c,d) must be called exactly N×H times
17 Incorrect 94 ms 8588 KB Output isn't correct
18 Incorrect 93 ms 9096 KB function hops(h,c,d) must be called exactly N×H times
19 Incorrect 90 ms 8748 KB function hops(h,c,d) must be called exactly N×H times
20 Incorrect 114 ms 9476 KB function hops(h,c,d) must be called exactly N×H times
21 Incorrect 114 ms 9672 KB function hops(h,c,d) must be called exactly N×H times
22 Incorrect 110 ms 9496 KB function hops(h,c,d) must be called exactly N×H times
23 Incorrect 144 ms 10176 KB function hops(h,c,d) must be called exactly N×H times
# Verdict Execution time Memory Grader output
1 Incorrect 251 ms 13368 KB function hops(h,c,d) must be called exactly N×H times
2 Correct 52 ms 7368 KB Output is partially correct - 360000 call(s) of encode_bit()
3 Correct 73 ms 7968 KB Output is partially correct - 360000 call(s) of encode_bit()
4 Correct 56 ms 7332 KB Output is partially correct - 360000 call(s) of encode_bit()
5 Incorrect 83 ms 8532 KB Output isn't correct
6 Incorrect 77 ms 8480 KB Output isn't correct
7 Incorrect 98 ms 9392 KB Output isn't correct
8 Correct 74 ms 7844 KB Output is partially correct - 360000 call(s) of encode_bit()
9 Correct 77 ms 7996 KB Output is partially correct - 360000 call(s) of encode_bit()
10 Correct 73 ms 7844 KB Output is partially correct - 360000 call(s) of encode_bit()
11 Incorrect 67 ms 8116 KB function hops(h,c,d) must be called exactly N×H times
12 Correct 62 ms 7732 KB Output is partially correct - 360000 call(s) of encode_bit()
13 Incorrect 114 ms 9116 KB function hops(h,c,d) must be called exactly N×H times
14 Correct 67 ms 8000 KB Output is partially correct - 360000 call(s) of encode_bit()
15 Correct 83 ms 7924 KB Output is partially correct - 360000 call(s) of encode_bit()
16 Incorrect 93 ms 8580 KB function hops(h,c,d) must be called exactly N×H times
17 Incorrect 94 ms 8588 KB Output isn't correct
18 Incorrect 93 ms 9096 KB function hops(h,c,d) must be called exactly N×H times
19 Incorrect 90 ms 8748 KB function hops(h,c,d) must be called exactly N×H times
20 Incorrect 114 ms 9476 KB function hops(h,c,d) must be called exactly N×H times
21 Incorrect 114 ms 9672 KB function hops(h,c,d) must be called exactly N×H times
22 Incorrect 110 ms 9496 KB function hops(h,c,d) must be called exactly N×H times
23 Incorrect 144 ms 10176 KB function hops(h,c,d) must be called exactly N×H times
# Verdict Execution time Memory Grader output
1 Incorrect 251 ms 13368 KB function hops(h,c,d) must be called exactly N×H times
2 Correct 52 ms 7368 KB Output is partially correct - 360000 call(s) of encode_bit()
3 Correct 73 ms 7968 KB Output is partially correct - 360000 call(s) of encode_bit()
4 Correct 56 ms 7332 KB Output is partially correct - 360000 call(s) of encode_bit()
5 Incorrect 83 ms 8532 KB Output isn't correct
6 Incorrect 77 ms 8480 KB Output isn't correct
7 Incorrect 98 ms 9392 KB Output isn't correct
8 Correct 74 ms 7844 KB Output is partially correct - 360000 call(s) of encode_bit()
9 Correct 77 ms 7996 KB Output is partially correct - 360000 call(s) of encode_bit()
10 Correct 73 ms 7844 KB Output is partially correct - 360000 call(s) of encode_bit()
11 Incorrect 67 ms 8116 KB function hops(h,c,d) must be called exactly N×H times
12 Correct 62 ms 7732 KB Output is partially correct - 360000 call(s) of encode_bit()
13 Incorrect 114 ms 9116 KB function hops(h,c,d) must be called exactly N×H times
14 Correct 67 ms 8000 KB Output is partially correct - 360000 call(s) of encode_bit()
15 Correct 83 ms 7924 KB Output is partially correct - 360000 call(s) of encode_bit()
16 Incorrect 93 ms 8580 KB function hops(h,c,d) must be called exactly N×H times
17 Incorrect 94 ms 8588 KB Output isn't correct
18 Incorrect 93 ms 9096 KB function hops(h,c,d) must be called exactly N×H times
19 Incorrect 90 ms 8748 KB function hops(h,c,d) must be called exactly N×H times
20 Incorrect 114 ms 9476 KB function hops(h,c,d) must be called exactly N×H times
21 Incorrect 114 ms 9672 KB function hops(h,c,d) must be called exactly N×H times
22 Incorrect 110 ms 9496 KB function hops(h,c,d) must be called exactly N×H times
23 Incorrect 144 ms 10176 KB function hops(h,c,d) must be called exactly N×H times