Submission #784403

# Submission time Handle Problem Language Result Execution time Memory
784403 2023-07-16T05:48:47 Z irmuun Saveit (IOI10_saveit) C++17
0 / 100
200 ms 4600 KB
#include<bits/stdc++.h>
#include "grader.h"
#include "encoder.h"

using namespace std;

#define ll long long
#define pb push_back
#define ff first
#define ss second
#define all(s) s.begin(),s.end()

void encode(int H,int N,int P,int *A,int *B){
    vector<int>adj[N];
    for(int i=0;i<P;i++){
        adj[A[i]].pb(B[i]);
        adj[B[i]].pb(A[i]);
    }
    int d[N];
    for(int i=0;i<H;i++){
        /*
        fill(d,d+N,-1);
        queue<int>q;
        d[i]=0;
        q.push(i);
        while(!q.empty()){
            int x=q.front();
            q.pop();
            for(auto y:adj[x]){
                if(d[y]==-1){
                    d[y]=d[x]+1;
                    q.push(y);
                }
            }
        }
        for(int j=0;j<N;j++){
            for(int k=0;k<10;k++){
                encode_bit(d[j]%2);
                d[j]/=2;
            }
        }
        */
    }
}
#include<bits/stdc++.h>
#include "grader.h"
#include "decoder.h"

using namespace std;

#define ll long long
#define pb push_back
#define ff first
#define ss second
#define all(s) s.begin(),s.end()

void decode(int H,int N){
    for(int i=0;i<H;i++){
        for(int j=0;j<N;j++){
            int ans=0;
            /*
            for(int k=0;k<10;k++){
                ans+=decode_bit()*(1<<k);
            }
            */
            hops(i,j,ans);
        }
    }
}

Compilation message

encoder.cpp: In function 'void encode(int, int, int, int*, int*)':
encoder.cpp:19:9: warning: unused variable 'd' [-Wunused-variable]
   19 |     int d[N];
      |         ^
# Verdict Execution time Memory Grader output
1 Runtime error 200 ms 4600 KB Execution killed with signal 11
2 Runtime error 2 ms 464 KB Execution killed with signal 11
3 Runtime error 4 ms 720 KB Execution killed with signal 11
4 Incorrect 2 ms 4600 KB Output isn't correct
5 Runtime error 5 ms 840 KB Execution killed with signal 11
6 Runtime error 7 ms 880 KB Execution killed with signal 11
7 Runtime error 14 ms 1080 KB Execution killed with signal 11
8 Runtime error 4 ms 720 KB Execution killed with signal 11
9 Runtime error 5 ms 740 KB Execution killed with signal 11
10 Runtime error 5 ms 720 KB Execution killed with signal 11
11 Runtime error 6 ms 848 KB Execution killed with signal 7
12 Runtime error 5 ms 652 KB Execution killed with signal 11
13 Runtime error 18 ms 1232 KB Execution killed with signal 11
14 Runtime error 5 ms 720 KB Execution killed with signal 11
15 Runtime error 6 ms 848 KB Execution killed with signal 11
16 Runtime error 17 ms 1232 KB Execution killed with signal 11
17 Runtime error 18 ms 1104 KB Execution killed with signal 11
18 Runtime error 29 ms 1292 KB Execution killed with signal 11
19 Runtime error 11 ms 952 KB Execution killed with signal 11
20 Runtime error 27 ms 1528 KB Execution killed with signal 11
21 Runtime error 40 ms 1596 KB Execution killed with signal 11
22 Runtime error 17 ms 1200 KB Execution killed with signal 11
23 Runtime error 30 ms 1744 KB Execution killed with signal 11
# Verdict Execution time Memory Grader output
1 Runtime error 200 ms 4600 KB Execution killed with signal 11
2 Runtime error 2 ms 464 KB Execution killed with signal 11
3 Runtime error 4 ms 720 KB Execution killed with signal 11
4 Incorrect 2 ms 4600 KB Output isn't correct
5 Runtime error 5 ms 840 KB Execution killed with signal 11
6 Runtime error 7 ms 880 KB Execution killed with signal 11
7 Runtime error 14 ms 1080 KB Execution killed with signal 11
8 Runtime error 4 ms 720 KB Execution killed with signal 11
9 Runtime error 5 ms 740 KB Execution killed with signal 11
10 Runtime error 5 ms 720 KB Execution killed with signal 11
11 Runtime error 6 ms 848 KB Execution killed with signal 7
12 Runtime error 5 ms 652 KB Execution killed with signal 11
13 Runtime error 18 ms 1232 KB Execution killed with signal 11
14 Runtime error 5 ms 720 KB Execution killed with signal 11
15 Runtime error 6 ms 848 KB Execution killed with signal 11
16 Runtime error 17 ms 1232 KB Execution killed with signal 11
17 Runtime error 18 ms 1104 KB Execution killed with signal 11
18 Runtime error 29 ms 1292 KB Execution killed with signal 11
19 Runtime error 11 ms 952 KB Execution killed with signal 11
20 Runtime error 27 ms 1528 KB Execution killed with signal 11
21 Runtime error 40 ms 1596 KB Execution killed with signal 11
22 Runtime error 17 ms 1200 KB Execution killed with signal 11
23 Runtime error 30 ms 1744 KB Execution killed with signal 11
# Verdict Execution time Memory Grader output
1 Runtime error 200 ms 4600 KB Execution killed with signal 11
2 Runtime error 2 ms 464 KB Execution killed with signal 11
3 Runtime error 4 ms 720 KB Execution killed with signal 11
4 Incorrect 2 ms 4600 KB Output isn't correct
5 Runtime error 5 ms 840 KB Execution killed with signal 11
6 Runtime error 7 ms 880 KB Execution killed with signal 11
7 Runtime error 14 ms 1080 KB Execution killed with signal 11
8 Runtime error 4 ms 720 KB Execution killed with signal 11
9 Runtime error 5 ms 740 KB Execution killed with signal 11
10 Runtime error 5 ms 720 KB Execution killed with signal 11
11 Runtime error 6 ms 848 KB Execution killed with signal 7
12 Runtime error 5 ms 652 KB Execution killed with signal 11
13 Runtime error 18 ms 1232 KB Execution killed with signal 11
14 Runtime error 5 ms 720 KB Execution killed with signal 11
15 Runtime error 6 ms 848 KB Execution killed with signal 11
16 Runtime error 17 ms 1232 KB Execution killed with signal 11
17 Runtime error 18 ms 1104 KB Execution killed with signal 11
18 Runtime error 29 ms 1292 KB Execution killed with signal 11
19 Runtime error 11 ms 952 KB Execution killed with signal 11
20 Runtime error 27 ms 1528 KB Execution killed with signal 11
21 Runtime error 40 ms 1596 KB Execution killed with signal 11
22 Runtime error 17 ms 1200 KB Execution killed with signal 11
23 Runtime error 30 ms 1744 KB Execution killed with signal 11
# Verdict Execution time Memory Grader output
1 Runtime error 200 ms 4600 KB Execution killed with signal 11
2 Runtime error 2 ms 464 KB Execution killed with signal 11
3 Runtime error 4 ms 720 KB Execution killed with signal 11
4 Incorrect 2 ms 4600 KB Output isn't correct
5 Runtime error 5 ms 840 KB Execution killed with signal 11
6 Runtime error 7 ms 880 KB Execution killed with signal 11
7 Runtime error 14 ms 1080 KB Execution killed with signal 11
8 Runtime error 4 ms 720 KB Execution killed with signal 11
9 Runtime error 5 ms 740 KB Execution killed with signal 11
10 Runtime error 5 ms 720 KB Execution killed with signal 11
11 Runtime error 6 ms 848 KB Execution killed with signal 7
12 Runtime error 5 ms 652 KB Execution killed with signal 11
13 Runtime error 18 ms 1232 KB Execution killed with signal 11
14 Runtime error 5 ms 720 KB Execution killed with signal 11
15 Runtime error 6 ms 848 KB Execution killed with signal 11
16 Runtime error 17 ms 1232 KB Execution killed with signal 11
17 Runtime error 18 ms 1104 KB Execution killed with signal 11
18 Runtime error 29 ms 1292 KB Execution killed with signal 11
19 Runtime error 11 ms 952 KB Execution killed with signal 11
20 Runtime error 27 ms 1528 KB Execution killed with signal 11
21 Runtime error 40 ms 1596 KB Execution killed with signal 11
22 Runtime error 17 ms 1200 KB Execution killed with signal 11
23 Runtime error 30 ms 1744 KB Execution killed with signal 11