Search found 5 matches
- Thu Jul 13, 2006 3:56 am
- Forum: Volume 102 (10200-10299)
- Topic: 10252 - Common Permutation
- Replies: 150
- Views: 73321
not sure if this will help, but i solved this problem a long time ago ... you can look at my source code if you want, it's at http://itnoise.com, you have to register though to see the solution repository. There are quite a few solutions there, and you can upload some of yours too if you like, it's ...
- Wed May 24, 2006 2:45 am
- Forum: Off topic (General chit-chat)
- Topic: Solution Repository
- Replies: 4
- Views: 3310
- Mon May 22, 2006 5:42 pm
- Forum: Off topic (General chit-chat)
- Topic: Solution Repository
- Replies: 4
- Views: 3310
- Mon May 22, 2006 2:25 am
- Forum: Off topic (General chit-chat)
- Topic: Solution Repository
- Replies: 4
- Views: 3310
Solution Repository
Hey,
I'm building a repository of solutions. If you want to share your AC solutions then please do so. You can also share other IT knowledge on my site and you are encouraged to do so, i.e. algorithms and methods, really just about anything that is IT related.
Please remove your author ID from ...
I'm building a repository of solutions. If you want to share your AC solutions then please do so. You can also share other IT knowledge on my site and you are encouraged to do so, i.e. algorithms and methods, really just about anything that is IT related.
Please remove your author ID from ...
- Sun Jun 13, 2004 6:04 pm
- Forum: Volume 5 (500-599)
- Topic: 587 - There's treasure everywhere!
- Replies: 37
- Views: 6908
587 WA why?
Anyone know why this is WA?
[cpp]
#include <iostream>
#include <vector>
#include <cmath>
#include <cctype>
using namespace std;
const double PI=3.1415926535898;
int main()
{
double x, y, d, real;
char ch;
vector<char> map;
int mapNum=0;
while(true)
{
x=0; y=0; d=0;
do
{
cin.get(ch ...
[cpp]
#include <iostream>
#include <vector>
#include <cmath>
#include <cctype>
using namespace std;
const double PI=3.1415926535898;
int main()
{
double x, y, d, real;
char ch;
vector<char> map;
int mapNum=0;
while(true)
{
x=0; y=0; d=0;
do
{
cin.get(ch ...