Search found 1 match

by grover002
Tue May 17, 2011 4:21 am
Forum: Volume 1 (100-199)
Topic: 103 - Stacking Boxes
Replies: 200
Views: 50426

Re: 103 problem - Stacking Boxes

I'm getting WA using the same algorithm described above. Here's my code:

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <vector>
#include <utility>
using namespace std;
bool comparer(pair < vector < int >,int > a,pair < vector < int >,int > b)
{
int i = 0 ...

Go to advanced search