CSES - NOI 2019 - Results
Submission details
Task:Thieves and Prisons
Sender:Fredrik Ekholm
Submission time:2019-03-06 16:00:00 +0200
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
#40
#50
Test results
testverdicttimegroup
#1ACCEPTED0.01 s2, 4, 5details
#20.01 s2, 4, 5details
#30.02 s2, 4, 5details
#40.01 s2, 4, 5details
#50.02 s2, 4, 5details
#60.02 s4, 5details
#70.01 s4, 5details
#80.01 s4, 5details
#90.02 s1, 3, 4, 5details
#100.03 s1, 3, 4, 5details
#110.03 s1, 3, 4, 5details
#120.02 s1, 3, 4, 5details
#130.02 s1, 3, 4, 5details
#140.01 s1, 3, 4, 5details
#150.02 s1, 3, 4, 5details
#160.02 s1, 3, 4, 5details
#170.02 s1, 2, 3, 4, 5details
#180.01 s1, 3, 4, 5details
#190.05 s2, 5details
#200.04 s2, 5details
#210.04 s2, 5details
#220.04 s5details
#230.05 s5details
#240.02 s3, 4, 5details
#250.01 s3, 4, 5details
#260.02 s3, 4, 5details
#270.01 s3, 4, 5details
#280.02 s4, 5details
#290.02 s4, 5details
#300.02 s4, 5details
#310.01 s4, 5details
#320.01 s2, 4, 5details
#330.03 s2, 4, 5details
#340.03 s2, 4, 5details
#350.02 s2, 4, 5details
#360.05 s3, 5details
#370.04 s3, 5details
#380.04 s3, 5details
#390.04 s3, 5details
#400.04 s5details
#410.04 s5details
#420.05 s5details
#430.05 s5details
#440.04 s2, 5details
#450.05 s2, 5details
#460.04 s2, 5details
#470.03 s2, 5details

Compiler report

In file included from /usr/include/c++/7/cassert:44:0,
                 from /usr/include/x86_64-linux-gnu/c++/7/bits/stdc++.h:33,
                 from input/code.cpp:1:
input/code.cpp: In function 'void decode()':
input/code.cpp:66:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     assert(p.size()==n);
            ~~~~~~~~^~~

Code

#include <bits/stdc++.h>
using namespace std;

#define rep(i, a, b) for(ll i = a; i < ll(b); ++i)
#define trav(a, x) for(auto& a : x)
#define all(x) x.begin(), x.end()
#define sz(x) (ll)(x).size()
typedef long long ll;
typedef pair<ll, ll> pii;
typedef vector<ll> vi;

ll n;
vector<vi> e;


void getPostorder(ll v, ll l){
    rep(i,0,e[v].size())
        if(e[v][i]!=l) getPostorder(e[v][i],v);
    cout<<v+1<<" ";
}

void encode(){
    e.resize(n);
    rep(i,0,n-1){
        ll a,b;
        cin>>a>>b;
        --a; --b;
        e[a].push_back(b);
        e[b].push_back(a);
    }
    getPostorder(0,-1);
    cout<<endl;
}

vi p;
vector<vi> c;

ll parent(ll v){
    if(p[v]==-1){
        p[v] = p.size();
        p.push_back(-1);
        c.push_back(vi(1,v));
    }
    return p[v];
}

ll children(ll v,ll d){
    if(d==0) return v;
    ll newChild = p.size();
    c[v].push_back(newChild);
    p.push_back(v);
    c.push_back(vi(0));
    return children(newChild, d-1);
}

void decode(){
    ll v = 0;
    p.push_back(-1);
    c.push_back(vi(0));
    rep(i,0,n-1){
        ll dist; cin>>dist;
        v = parent(v);
        v = children(v,dist-1);
    }

    assert(p.size()==n);

    rep(i,0,n){
        if(p[i]!=-1){
            cout<<i+1<<" "<<p[i]+1<<endl;
        }
    }
}

int main() {
    cin.sync_with_stdio(0); cin.tie(0);
    cin.exceptions(cin.failbit);
    ll t;
    cin>>t>>n;
    if(t==1) encode();
    else decode();
}

Test details

Test 1

Group: 2, 4, 5

Verdict: ACCEPTED

input
1 1 1
C 1

correct output

user output

Test 2

Group: 2, 4, 5

Verdict:

input
1 1 1
O 1

correct output
IMPOSSIBLE

user output

Test 3

Group: 2, 4, 5

Verdict:

input
1 1 2
C 1
C 1

correct output
IMPOSSIBLE

user output

Test 4

Group: 2, 4, 5

Verdict:

input
1 1 2
C 1
O 1

correct output
IMPOSSIBLE

user output

Test 5

Group: 2, 4, 5

Verdict:

input
1 1 2
O 1
C 1

correct output
IMPOSSIBLE

user output

Test 6

Group: 4, 5

Verdict:

input
2 1 2
C 1
C 2

correct output
1 1 

user output
(empty)

Test 7

Group: 4, 5

Verdict:

input
2 1 2
C 1
O 1

correct output
IMPOSSIBLE

user output
(empty)

Test 8

Group: 4, 5

Verdict:

input
2 1 2
C 1
O 2

correct output
1 1 

user output
(empty)

Test 9

Group: 1, 3, 4, 5

Verdict:

input
3 2 5
C 1
C 2
O 3
C 1
...

correct output
1 1 1 1 1 

user output
(empty)

Error:
code: input/code.cpp:66: void decode(): Assertion `p.size()==n' failed.

Test 10

Group: 1, 3, 4, 5

Verdict:

input
3 2 5
C 1
C 2
O 3
O 3
...

correct output
2 1 2 1 1 

user output
(empty)

Error:
code: input/code.cpp:66: void decode(): Assertion `p.size()==n' failed.

Test 11

Group: 1, 3, 4, 5

Verdict:

input
3 2 5
C 1
C 2
O 3
O 1
...

correct output
2 1 2 1 1 

user output
(empty)

Error:
code: input/code.cpp:66: void decode(): Assertion `p.size()==n' failed.

Test 12

Group: 1, 3, 4, 5

Verdict:

input
3 2 5
C 1
C 2
O 1
O 3
...

correct output
IMPOSSIBLE

user output
(empty)

Error:
code: input/code.cpp:66: void decode(): Assertion `p.size()==n' failed.

Test 13

Group: 1, 3, 4, 5

Verdict:

input
3 2 4
C 1
O 2
C 1
O 3

correct output
1 1 1 1 

user output
(empty)

Error:
code: input/code.cpp:66: void decode(): Assertion `p.size()==n' failed.

Test 14

Group: 1, 3, 4, 5

Verdict:

input
3 2 4
C 1
O 2
C 2
O 1

correct output
1 1 1 1 

user output
(empty)

Error:
code: input/code.cpp:66: void decode(): Assertion `p.size()==n' failed.

Test 15

Group: 1, 3, 4, 5

Verdict:

input
3 2 3
C 1
C 2
C 3

correct output
1 1 1 

user output
(empty)

Error:
code: input/code.cpp:66: void decode(): Assertion `p.size()==n' failed.

Test 16

Group: 1, 3, 4, 5

Verdict:

input
3 2 3
O 1
C 2
C 3

correct output
IMPOSSIBLE

user output
(empty)

Error:
code: input/code.cpp:66: void decode(): Assertion `p.size()==n' failed.

Test 17

Group: 1, 2, 3, 4, 5

Verdict:

input
2 2 7
C 1
O 2
O 2
O 2
...

correct output
IMPOSSIBLE

user output
(empty)

Error:
code: input/code.cpp:66: void decode(): Assertion `p.size()==n' failed.

Test 18

Group: 1, 3, 4, 5

Verdict:

input
4 2 5
C 2
O 3
C 1
O 4
...

correct output
1 1 1 1 1 

user output
(empty)

Error:
code: input/code.cpp:66: void decode(): Assertion `p.size()==n' failed.

Test 19

Group: 2, 5

Verdict:

input
100000 100000 100000
C 1
C 2
C 3
C 4
...

correct output
50000 49999 49998 49997 49996 ...

user output
(empty)

Error:
terminate called after throwing an instance of 'std::__ios_failure'
  what():  basic_ios::clear: iostream error

Test 20

Group: 2, 5

Verdict:

input
100000 100000 100000
C 1
C 2
C 3
C 4
...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
(empty)

Error:
terminate called after throwing an instance of 'std::__ios_failure'
  what():  basic_ios::clear: iostream error

Test 21

Group: 2, 5

Verdict:

input
100000 100000 100000
C 1
C 2
C 3
C 4
...

correct output
20000 20000 20000 20000 20000 ...

user output
(empty)

Error:
terminate called after throwing an instance of 'std::__ios_failure'
  what():  basic_ios::clear: iostream error

Test 22

Group: 5

Verdict:

input
100000 100 100000
C 1
C 2
C 3
C 4
...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
(empty)

Error:
terminate called after throwing an instance of 'std::__ios_failure'
  what():  basic_ios::clear: iostream error

Test 23

Group: 5

Verdict:

input
100000 99 100000
C 1
C 2
C 3
C 4
...

correct output
IMPOSSIBLE

user output
(empty)

Error:
terminate called after throwing an instance of 'std::__ios_failure'
  what():  basic_ios::clear: iostream error

Test 24

Group: 3, 4, 5

Verdict:

input
500 2 500
C 384
O 62
C 387
O 473
...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
(empty)

Error:
code: input/code.cpp:66: void decode(): Assertion `p.size()==n' failed.

Test 25

Group: 3, 4, 5

Verdict:

input
500 2 500
C 384
O 62
C 387
O 473
...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 ...

user output
(empty)

Error:
code: input/code.cpp:66: void decode(): Assertion `p.size()==n' failed.

Test 26

Group: 3, 4, 5

Verdict:

input
500 2 500
C 384
O 62
C 387
O 473
...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 2 1 2 ...

user output
(empty)

Error:
code: input/code.cpp:66: void decode(): Assertion `p.size()==n' failed.

Test 27

Group: 3, 4, 5

Verdict:

input
500 2 500
C 384
O 62
C 387
C 473
...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
(empty)

Error:
code: input/code.cpp:66: void decode(): Assertion `p.size()==n' failed.

Test 28

Group: 4, 5

Verdict:

input
500 250 500
C 384
O 62
C 387
O 473
...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
(empty)

Error:
terminate called after throwing an instance of 'std::__ios_failure'
  what():  basic_ios::clear: iostream error

Test 29

Group: 4, 5

Verdict:

input
500 250 500
C 384
O 62
C 387
O 473
...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 2 1 3 ...

user output
(empty)

Error:
terminate called after throwing an instance of 'std::__ios_failure'
  what():  basic_ios::clear: iostream error

Test 30

Group: 4, 5

Verdict:

input
500 250 500
C 384
O 62
C 387
O 473
...

correct output
1 1 1 1 1 3 2 3 3 2 2 2 5 4 2 ...

user output
(empty)

Error:
terminate called after throwing an instance of 'std::__ios_failure'
  what():  basic_ios::clear: iostream error

Test 31

Group: 4, 5

Verdict:

input
500 250 500
C 384
O 62
C 387
C 473
...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
(empty)

Error:
terminate called after throwing an instance of 'std::__ios_failure'
  what():  basic_ios::clear: iostream error

Test 32

Group: 2, 4, 5

Verdict:

input
500 500 500
C 384
O 62
C 387
O 473
...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
(empty)

Error:
terminate called after throwing an instance of 'std::__ios_failure'
  what():  basic_ios::clear: iostream error

Test 33

Group: 2, 4, 5

Verdict:

input
500 500 500
C 384
O 62
C 387
O 473
...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 2 1 3 ...

user output
(empty)

Error:
terminate called after throwing an instance of 'std::__ios_failure'
  what():  basic_ios::clear: iostream error

Test 34

Group: 2, 4, 5

Verdict:

input
500 500 500
C 384
O 62
C 387
O 473
...

correct output
1 1 1 1 2 1 3 3 3 2 2 2 2 4 5 ...

user output
(empty)

Error:
terminate called after throwing an instance of 'std::__ios_failure'
  what():  basic_ios::clear: iostream error

Test 35

Group: 2, 4, 5

Verdict:

input
500 500 500
C 384
O 62
C 387
C 473
...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
(empty)

Error:
terminate called after throwing an instance of 'std::__ios_failure'
  what():  basic_ios::clear: iostream error

Test 36

Group: 3, 5

Verdict:

input
100000 2 100000
C 89384
O 54062
C 85387
O 53318
...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
(empty)

Error:
code: input/code.cpp:66: void decode(): Assertion `p.size()==n' failed.

Test 37

Group: 3, 5

Verdict:

input
100000 2 100000
C 89384
O 54062
C 85387
O 53318
...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 ...

user output
(empty)

Error:
code: input/code.cpp:66: void decode(): Assertion `p.size()==n' failed.

Test 38

Group: 3, 5

Verdict:

input
100000 2 100000
C 89384
O 54062
C 85387
O 53318
...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 ...

user output
(empty)

Error:
code: input/code.cpp:66: void decode(): Assertion `p.size()==n' failed.

Test 39

Group: 3, 5

Verdict:

input
100000 2 100000
C 89384
O 54062
C 85387
C 53318
...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
(empty)

Error:
code: input/code.cpp:66: void decode(): Assertion `p.size()==n' failed.

Test 40

Group: 5

Verdict:

input
100000 50000 100000
C 89384
O 54062
C 85387
O 53318
...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
(empty)

Error:
terminate called after throwing an instance of 'std::__ios_failure'
  what():  basic_ios::clear: iostream error

Test 41

Group: 5

Verdict:

input
100000 50000 100000
C 89384
O 54062
C 85387
O 53318
...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 3 2 1 ...

user output
(empty)

Error:
terminate called after throwing an instance of 'std::__ios_failure'
  what():  basic_ios::clear: iostream error

Test 42

Group: 5

Verdict:

input
100000 50000 100000
C 89384
O 54062
C 85387
O 53318
...

correct output
1 1 1 1 1 3 2 3 3 3 3 3 3 4 5 ...

user output
(empty)

Error:
terminate called after throwing an instance of 'std::__ios_failure'
  what():  basic_ios::clear: iostream error

Test 43

Group: 5

Verdict:

input
100000 50000 100000
C 89384
O 54062
C 85387
C 53318
...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
(empty)

Error:
terminate called after throwing an instance of 'std::__ios_failure'
  what():  basic_ios::clear: iostream error

Test 44

Group: 2, 5

Verdict:

input
100000 100000 100000
C 89384
O 54062
C 85387
O 53318
...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
(empty)

Error:
terminate called after throwing an instance of 'std::__ios_failure'
  what():  basic_ios::clear: iostream error

Test 45

Group: 2, 5

Verdict:

input
100000 100000 100000
C 89384
O 54062
C 85387
O 53318
...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 3 2 1 ...

user output
(empty)

Error:
terminate called after throwing an instance of 'std::__ios_failure'
  what():  basic_ios::clear: iostream error

Test 46

Group: 2, 5

Verdict:

input
100000 100000 100000
C 89384
O 54062
C 85387
O 53318
...

correct output
1 1 1 1 2 1 3 3 3 3 3 3 4 5 3 ...

user output
(empty)

Error:
terminate called after throwing an instance of 'std::__ios_failure'
  what():  basic_ios::clear: iostream error

Test 47

Group: 2, 5

Verdict:

input
100000 100000 100000
C 89384
O 54062
C 85387
C 53318
...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
(empty)

Error:
terminate called after throwing an instance of 'std::__ios_failure'
  what():  basic_ios::clear: iostream error