Search found 4 matches

by lyh91208
Thu May 11, 2006 7:25 am
Forum: Volume 6 (600-699)
Topic: 638 - Finding Rectangles
Replies: 13
Views: 7396

Re: 638 why?

DongJoo Kim wrote: I finally got AC after I sorted the input. Thanx..
Sorry, but I don't understand what it means.

Can anyone explain it more?

Thanks.
by lyh91208
Tue May 09, 2006 5:20 am
Forum: Volume 6 (600-699)
Topic: 604 - The Boggle Game
Replies: 33
Views: 12942

604 The Boggle Game WA

I tried to solve this problem some days before, but WA.
Today I tried it again, but still failed.
I have used all the test data on the board to test my program, and all ouput of my program are as same as that on the board.
So, can someone help me or give me more test data?

Thanks in advance ...
by lyh91208
Fri Mar 24, 2006 5:00 am
Forum: Volume 6 (600-699)
Topic: 623 - 500!
Replies: 187
Views: 71545

I have solved the problem.
Because when n=1, the output should be 1, but I print 0.
by lyh91208
Mon Mar 20, 2006 1:32 pm
Forum: Volume 6 (600-699)
Topic: 623 - 500!
Replies: 187
Views: 71545

623 WA

Please help me...

This is my code...

--

#include<cstdio>
#include<iostream>
using namespace std;

unsigned long int num[1005][1005];

void create()
{
int i,j,k;
for(i=1;i<=1000;i++) for(j=1;j<=1000;j++) num [j] = 0;
num[1][0] = 1;
num[1][1] = 1;
for(i=2;i<=1000;i++)
{
for(j=1;j<=num[i-1][0 ...

Go to advanced search