Search found 2 matches
- Tue Feb 09, 2010 5:30 pm
- Forum: Volume 8 (800-899)
- Topic: 836 - Largest Submatrix
- Replies: 19
- Views: 9655
Re: 836 Largest Submatrix
Can anybody take a look what is wrong with my code or provide some inputs?:) #include <iostream> #include <vector> #include <string> using namespace std; typedef vector<bool> line; typedef vector<line> matrix; int size = 0; istream& operator>>(istream& in, line& L) { string str; int i; i...
- Mon Feb 08, 2010 8:52 pm
- Forum: Volume 8 (800-899)
- Topic: 869 - Airline Comparison
- Replies: 7
- Views: 5402
869 - Airline Comparison
Hi, I got WA on this problem, although I have solved similar problems on this site. Could anybody explain whats wrong with my code and / or provide some inputs / outputs? Thanks in advance! #include <iostream> #include <map> #include <vector> #include <list> using namespace std; typedef vector<bool>...