CSES - Datatähti Open 2017 - Results
Submission details
Task:Mex value
Sender:Sanja
Submission time:2017-01-22 11:01:24 +0200
Language:Pascal
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
Test results
testverdicttimegroup
#10.05 s1details
#20.04 s1details
#30.04 s1details
#40.05 s1details
#50.04 s1details
#60.04 s1details
#70.04 s1details
#80.05 s1details
#90.04 s1details
#100.04 s1details
#110.22 s2details
#120.23 s2details
#130.22 s2details
#140.24 s2details
#150.21 s2details
#160.22 s2details
#170.24 s2details
#180.22 s2details
#190.24 s2details
#200.23 s2details

Compiler report

/usr/bin/ld.bfd: warning: output/link.res contains output sections; did you forget -T?

Code

  Uses Math;
  Const MAX_RANGE = 1000000000;
        Root = 1 ; 
        MAX_N = 100000;
  
  Type tNode = record
    LSon , RSon : LongInt;
    L , R : LongInt;
    Min_On : LongInt;
  end;
  
  var T : array [ 1 .. MAX_N * 32 ] of tNode;
      tt : LongInt = 0 ; 
  
  function NewNode ( L , R : LongInt ) : LongInt;
  begin
    inc ( tt ) ; 
    T[tt].L := L;
    T[tt].R := R;
    exit ( tt )  ;
  end;
  
  function getMin ( v : longInt ) : LongInt;
  begin
    if ( v = 0 ) then
      exit ( 0 ) 
    else
      exit ( T[v].Min_On );
  end;
  
  procedure Modify ( v , x , delta : LongInt ) ; 
    var med : LongInt;
  begin
    if ( T[v].L = T[v].R ) then
    begin
      T[v].Min_On += delta;
    end
    else
    begin
      med := ( T[v].L + T[v].R ) div 2 ; 
      
      if ( x <= med ) then // goLeft
      begin
        if ( T[v].LSon = 0 ) then
          T[v].LSon := NewNode ( T[v].L , med ) ; 
        Modify ( T[v].LSon , x , delta ) ; 
      end
      else
      begin
        if ( T[v].RSon = 0 ) then
          T[v].RSon := NewNode ( med+1 , T[v].R );
        Modify ( T[v].RSon , x , delta ) ; 
      end;
      
      T[v].Min_On := Min ( getMin ( T[v].LSon ) , getMin ( T[v].RSon ) );
    end;
  end;
  
  function getMinPlace ( v : LongInt ) : LongInt;
  begin
    
    while ( T[v].L <> T[v].R ) do
    begin
    
      
      if ( getMin ( T[v].LSon ) <= getMin ( T[v].RSon ) ) then
      begin
        
        if ( T[v].LSon = 0 ) then        
          T[v].LSon := NewNode ( T[v].L , ( T[v].L + T[v].R ) div 2 ) ; 
        
        V := T[v].LSon;
      end
      else
      begin
        if ( T[v].RSon = 0 ) then
          T[v].RSon := NewNode ( ( T[v].L + T[v].R ) div 2  , T[v].R ) ;
        V := T[v].RSon;
      end;
    
    end;
    
    exit ( T[v].L );
    
  end;
  
        
  var N , K : LongInt;
      A : array [ 1 .. 100000 ] of LongInt;
      i , L , R : LongInt;
begin
  
  readLn ( N , K ) ; 
  
  for i := 1 to N do
    read ( A[i] );
  
  NewNode ( 0 , MAX_RANGE );
  
  L := 1;
  R := 0;
  
  while ( R <= N ) do
  begin
    if ( R-L <> K-1 ) then
    begin
      Inc ( R ) ; 
      Modify ( Root , A[R] , +1 );
    end
    else
    begin
      write ( getMinPlace ( root ) , ' ' );
      Modify ( Root , A[L] , -1 );
      Inc ( L );
    end;
  end;
  
  writeLn();

end.

Test details

Test 1

Group: 1

Verdict:

input
100 10
1000000000 9 1 0 5 7 2 8 6 3 4...

correct output
4 10 9 1 1 1 1 1 1 1 1 4 10 3 ...

user output
4 9 9 1 1 1 1 1 1 1 1 4 9 3 0 ...

Test 2

Group: 1

Verdict:

input
100 10
1000000000 4 3 8 1 0 9 5 7 2 6...

correct output
6 10 4 3 3 1 1 1 1 1 3 3 10 6 ...

user output
6 9 4 3 3 1 1 1 1 1 3 3 9 6 6 ...

Test 3

Group: 1

Verdict:

input
100 10
1000000000 9 2 3 1 0 8 5 6 4 7...

correct output
7 10 9 2 2 1 0 1 1 1 2 9 10 4 ...

user output
6 6 6 2 2 1 0 1 1 1 2 6 6 4 3 ...

Test 4

Group: 1

Verdict:

input
100 10
1000000000 3 0 4 6 5 7 1 2 8 9...

correct output
9 10 3 0 0 0 0 0 4 2 2 2 10 6 ...

user output
8 8 3 0 0 0 0 0 4 2 2 2 8 6 6 ...

Test 5

Group: 1

Verdict:

input
100 10
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 ...

correct output
10 10 10 10 10 10 10 10 10 10 ...

user output
9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 ...

Test 6

Group: 1

Verdict:

input
100 10
1000000000 0 5 1 9 3 4 6 7 2 8...

correct output
8 10 0 5 1 1 1 1 1 5 2 5 10 0 ...

user output
8 9 0 5 1 1 1 1 1 5 2 5 9 0 0 ...

Test 7

Group: 1

Verdict:

input
100 10
1000000000 1 2 9 3 8 0 4 7 5 6...

correct output
6 10 1 1 1 1 2 0 0 2 3 9 10 6 ...

user output
6 9 1 1 1 1 2 0 0 2 3 9 9 6 6 ...

Test 8

Group: 1

Verdict:

input
100 10
1000000000 5 0 6 7 1 4 8 3 9 2...

correct output
2 10 5 0 0 0 0 0 0 0 0 1 10 9 ...

user output
2 9 5 0 0 0 0 0 0 0 0 1 9 9 9 ...

Test 9

Group: 1

Verdict:

input
100 10
1000000000 7 3 0 1 4 9 2 5 6 8...

correct output
8 10 7 3 0 0 0 0 7 5 5 5 10 8 ...

user output
8 9 7 3 0 0 0 0 7 5 5 5 9 8 1 ...

Test 10

Group: 1

Verdict:

input
100 10
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 ...

correct output
10 10 10 10 10 10 10 10 10 10 ...

user output
9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 ...

Test 11

Group: 2

Verdict:

input
100000 10000
1000000000 4786 3512 3285 1919...

correct output
9547 10000 4786 3512 3285 1919...

user output
9546 9546 4786 3512 3285 1919 ...

Test 12

Group: 2

Verdict:

input
100000 10000
1000000000 7981 3955 790 45 34...

correct output
7657 10000 7981 3955 790 45 45...

user output
7657 9999 7981 3955 790 45 45 ...

Test 13

Group: 2

Verdict:

input
100000 10000
1000000000 2329 1825 9435 3800...

correct output
5701 10000 2329 1825 1825 1825...

user output
5700 5700 2329 1825 1825 1825 ...

Test 14

Group: 2

Verdict:

input
100000 10000
1000000000 2754 6029 8007 6286...

correct output
1423 10000 2754 2754 2754 2754...

user output
1422 1422 1422 1422 1422 1422 ...

Test 15

Group: 2

Verdict:

input
100000 10000
0 1 2 3 4 5 6 7 8 9 10 11 12 1...

correct output
10000 10000 10000 10000 10000 ...

user output
9999 9999 9999 9999 9999 9999 ...

Test 16

Group: 2

Verdict:

input
100000 10000
1000000000 7560 4634 7044 3853...

correct output
9855 10000 7560 4634 4634 3853...

user output
9854 9854 7560 4634 4634 3853 ...

Test 17

Group: 2

Verdict:

input
100000 10000
1000000000 7945 6674 3975 3002...

correct output
6373 10000 7945 6674 3975 3002...

user output
6373 9999 7945 6674 3975 3002 ...

Test 18

Group: 2

Verdict:

input
100000 10000
1000000000 2506 6827 6871 8593...

correct output
2978 10000 2506 2506 2506 2506...

user output
2977 2977 2506 2506 2506 2506 ...

Test 19

Group: 2

Verdict:

input
100000 10000
1000000000 2769 5036 539 4409 ...

correct output
2249 10000 2769 2769 539 539 5...

user output
2249 9999 2769 2769 539 539 53...

Test 20

Group: 2

Verdict:

input
100000 10000
0 1 2 3 4 5 6 7 8 9 10 11 12 1...

correct output
10000 10000 10000 10000 10000 ...

user output
9999 9999 9999 9999 9999 9999 ...