Search found 160 matches

by _.B._
Wed Aug 09, 2006 8:16 am
Forum: Volume 110 (11000-11099)
Topic: 11058 - Encoding
Replies: 28
Views: 18626

Fast!

That's some pretty fast answer Darko! 8)
Thanks a lot! :lol:
My output is wrong :S
Going to check why.
by _.B._
Wed Aug 09, 2006 8:07 am
Forum: Volume 110 (11000-11099)
Topic: 11058 - Encoding
Replies: 28
Views: 18626

I/O

Greetings! Anyone willing to post critical I/O ? I believe I'm missing something of the description of the problem :o Or, at least, the ACed output for this input: ufrn t o w k q z f n y i c m s j n r g l d s u s g y e u 14 0 q t 0 j f 1 v d 1 r o 1 f d 1 r o 1 f a 2 e p 2 r w 2 v e 2 f x 3 y p 3 t ...
by _.B._
Mon Aug 07, 2006 3:54 pm
Forum: Volume 4 (400-499)
Topic: 460 - Overlapping Rectangles
Replies: 25
Views: 5376

Try this.

Greetings!
Carunty, you are not considering the case where two rectangles form a cross. Try this input:

Code: Select all

1

2 0 4 6
0 2 6 4
You should get this output:

Code: Select all

2 2 4 4
Hope it helps!
Keep posting!
by _.B._
Sun Aug 06, 2006 6:42 am
Forum: Off topic (General chit-chat)
Topic: What kinds of problems do you solve most ?
Replies: 25
Views: 80082

Easy ones ;)

Anything I've just learnt about :lol:
by _.B._
Sat Aug 05, 2006 4:53 am
Forum: Off topic (General chit-chat)
Topic: RAM Memory.
Replies: 0
Views: 2286

RAM Memory.

Greetings!!
I have 2 options for my RAM Memory:

512 MB DDR400

or

512 MB DDR400 and 128 MB DDR266 = 640 MB DDR 266

It's a DDR400 MotherBoard.
How do I know what's the best choice?? :o
by _.B._
Wed Aug 02, 2006 11:38 am
Forum: Volume 1 (100-199)
Topic: 170 - Clock Patience
Replies: 28
Views: 4734

Check it out.

Greetings!
I still don't know what's wrong with your code, but under Windows XP it crashes around line 100:

Code: Select all

         while( temp2->next != NULL )
            temp2 = temp2->next;
Hope it helps!
If you already solved it, you might post what you've done, so others can do it too.
by _.B._
Tue Aug 01, 2006 10:13 am
Forum: Volume 3 (300-399)
Topic: 389 - Basically Speaking
Replies: 94
Views: 33160

Nada.

Hello again! I used size 8 for the input string. I usually make limits a bit longer than what the problem states. typedef char T_string[8]; I took a look to your code, and I don't know what the MAX_LEN has to do with the WA. It should work with 'MAX_LEN 7'. The only thing that I do in my code, wich ...
by _.B._
Mon Jul 31, 2006 12:06 pm
Forum: Volume 3 (300-399)
Topic: 389 - Basically Speaking
Replies: 94
Views: 33160

Good!

Glad it helped you :D
Perhaps the problem was re-visited.

Keep posting! 8)
by _.B._
Mon Jul 31, 2006 10:41 am
Forum: Volume 3 (300-399)
Topic: 389 - Basically Speaking
Replies: 94
Views: 33160

Yup!

Greetings Ferdous! 7 indeed. I made that assumption, and got it ACed. You may also browse the topics related to this problem. This I/O helped me to get it ACed :D Input: 0 10 10 0000 10 10 9999999 10 2 9999999 10 10 9999999 10 16 98967F 16 10 418 10 16 1A2 16 10 1111000 2 10 1111000 2 16 2102101 3 ...
by _.B._
Mon Jul 31, 2006 10:38 am
Forum: Volume 3 (300-399)
Topic: 389 - Basically Speaking
Replies: 94
Views: 33160

WA??

Coudln't find anything wrong with your code, then tryed several cases, and everything worked just fine!! Then I changed the limits for char input[1000]; char converted[1000]; to char input[10000]; char converted[10000]; And submited it... it was ACed!! Then I submited your original code, and it was ...
by _.B._
Mon Jul 31, 2006 10:16 am
Forum: Volume 3 (300-399)
Topic: 389 - Basically Speaking
Replies: 94
Views: 33160

Try this.

Greetings! First, try posting your code between the [ code ][ /code ] brackets. Then you might want to look the other posts related to this problem, and try this I/O, wich helped me to get it ACed :D Input: 0 10 10 0000 10 10 9999999 10 2 9999999 10 10 9999999 10 16 98967F 16 10 418 10 16 1A2 16 10...
by _.B._
Mon Jul 31, 2006 10:13 am
Forum: Volume 3 (300-399)
Topic: 389 - Basically Speaking
Replies: 94
Views: 33160

Try this.

Greetings!
Try these Inputs, and I'm sure you'll have to work on your code.

Try this Input first:

Code: Select all

0000001  2 10
0000000  2 10
      0 10 10
   0000 10 10
      0  2  2
Now try this one:

Code: Select all

0000000  2 10
      0 10 10
   0000 10 10
      0  2  2
Hope it helps!
by _.B._
Mon Jul 31, 2006 10:01 am
Forum: Volume 3 (300-399)
Topic: 389 - Basically Speaking
Replies: 94
Views: 33160

Try this I/O.

This I/O helped me to get it ACed :D Input: 0 10 10 0000 10 10 9999999 10 2 9999999 10 10 9999999 10 16 98967F 16 10 418 10 16 1A2 16 10 1111000 2 10 1111000 2 16 2102101 3 10 2102101 3 15 12312 4 2 1A 15 2 1234567 10 16 ABCD 16 15 FFFFFFF 16 16 EEEEEEE 15 15 1111111 2 2 0 2 2 Output: 0 0 ERROR 999...
by _.B._
Mon Jul 31, 2006 5:56 am
Forum: Other words
Topic: Dynamic Programming.
Replies: 4
Views: 3106

Will do.

Thanks for the advice Misof!
Seems like a pretty good approach for learning DP 8)
Keep posting!
by _.B._
Sun Jul 30, 2006 9:33 pm
Forum: Other words
Topic: Dynamic Programming.
Replies: 4
Views: 3106

Good!

Thanks Shamim!
Will take a look to it right now!
More favorite DP Sites from you all will be useful too.
Keep posting!

Go to advanced search