Search found 2 matches

by zalileo
Fri Aug 23, 2002 3:20 am
Forum: Volume 1 (100-199)
Topic: 105 - The Skyline Problem
Replies: 160
Views: 51317

Thanks a lot for soyoja's sample data!


finally, I get it with 0.020 CPU time :)
by zalileo
Fri Aug 16, 2002 7:25 am
Forum: Volume 1 (100-199)
Topic: 101 - The Blocks Problem
Replies: 635
Views: 108667

// No, it's not right!

it should be that:

Code: Select all

all example: 
0: 0 1 2 3 4 
5: 5 6 7 8 9 

Code: Select all

move 8 onto 2 
0: 0 1 2 8
3: 3
4: 4 
5: 5 6 7
9: 9

Code: Select all

move 8 over 2 
0: 0 1 2 3 4 8
5: 5 6 7
9: 9

Code: Select all

pile 8 onto 2 
0: 0 1 2 8 9
3: 3
4: 4
5: 5 6 7

Code: Select all

pile 8 over 2 
0: 0 1 2 3 4 8 9
5: 5 6 7

Go to advanced search