Search found 1 match
- Sat Feb 19, 2011 9:36 pm
- Forum: Volume 1 (100-199)
- Topic: 103 - Stacking Boxes
- Replies: 200
- Views: 47078
Re: 103 problem ...
I'm getting WA using the same algorithm described above. Here's my code: import java.io.*; import java.util.*; public class Stack_Box { public static class box implements Comparable<box> { ArrayList<Integer> d= new ArrayList<Integer>(); Integer[] dim; int index=0; public box(String a, int i) { Scann...