Search found 7 matches

by malf
Sun Sep 05, 2004 5:27 pm
Forum: Volume 4 (400-499)
Topic: 459 - Graph Connectivity
Replies: 133
Views: 58499

459 - WA

I get WA all the time, I don't know why!!
:o :o :o :o

My source:

[c]
#include <stdio.h>


struct node;
typedef struct node {
char key; /* nodes are represented by a char */
int visited;
struct node *links[1000];
int numlinks;
} node;
node nodes[26];
int numnodes = 0;
/* lookup function. if no ...
by malf
Sun Sep 05, 2004 5:08 pm
Forum: Volume 4 (400-499)
Topic: 459 - Graph Connectivity
Replies: 133
Views: 58499

Re: 459 TLE WHY

Can be at the time you get the input. Show me your source.
by malf
Sun Sep 05, 2004 4:59 pm
Forum: Volume 3 (300-399)
Topic: 362 - 18,000 Seconds Remaining
Replies: 75
Views: 38935

Maybe is the precision of your "tb" variable...
Still looking :o
by malf
Sun Sep 05, 2004 12:10 am
Forum: Volume 3 (300-399)
Topic: 352 - The Seasonal War
Replies: 54
Views: 23226

Re: You were right!!

Hi!
I'm one of the judge administrators...I've checked problem #352 and you were right! There was an extra empty line at the end of the input! That's not an impossible test case, and it's not there on purpose.
Whenever you notice something like that, please mail us to problemset@acm.uva.es! I can't ...
by malf
Sat Sep 04, 2004 11:09 pm
Forum: Volume 2 (200-299)
Topic: 291 - The House Of Santa Claus
Replies: 19
Views: 9012

The correct output is:

<SPOILER REMOVED>
by malf
Sat Sep 04, 2004 11:00 pm
Forum: Volume 2 (200-299)
Topic: 291 - The House Of Santa Claus
Replies: 19
Views: 9012

Your output is wrong because you forgot to put in order.
Make a quick sort that you will get AC!
:D

Go to advanced search