i did some problem with grammer(bnf).But i am puzzled with 622.
can anybody give me some idea about how to select appropriate grammer out of the choices?
Waiting for your idea!!
Search found 33 matches
- Sun Sep 03, 2006 4:39 pm
- Forum: Volume 6 (600-699)
- Topic: 622 - Grammar Evaluation
- Replies: 13
- Views: 8233
- Wed Jul 26, 2006 7:19 pm
- Forum: Volume 4 (400-499)
- Topic: 439 - Knight Moves
- Replies: 33
- Views: 14967
439 Knight Tour (WA)
I just used BFS..
I am getting WA..
I generated All possible input and saw that my code goes wrong anser
for 4 inputs. They Are
g2 h1
h1 g2
g7 h8
h8 g7
g8 h7
h7 g8
My code produce 2 moves As result. In fact it needs 4 moves.
I am not getting reason Why my BFS will fail for this inputs only ...
I am getting WA..
I generated All possible input and saw that my code goes wrong anser
for 4 inputs. They Are
g2 h1
h1 g2
g7 h8
h8 g7
g8 h7
h7 g8
My code produce 2 moves As result. In fact it needs 4 moves.
I am not getting reason Why my BFS will fail for this inputs only ...
- Tue Jul 25, 2006 6:15 pm
- Forum: Volume 110 (11000-11099)
- Topic: 11048 - Automatic Correction of Misspellings
- Replies: 30
- Views: 17513
Thanks All
Thanks For your reply..
Actually i think the problem is in Stl Library
The judge does not support some STL function.
How ever i changed All STL and Also the Algol i bit.
Now i got AC.
Actually i think the problem is in Stl Library
The judge does not support some STL function.
How ever i changed All STL and Also the Algol i bit.
Now i got AC.
- Mon Jul 24, 2006 7:18 pm
- Forum: Volume 110 (11000-11099)
- Topic: 11048 - Automatic Correction of Misspellings
- Replies: 30
- Views: 17513
11048 - Automatic Correction of Misspellings
I got 6 time Compile Error on this probs..
Some one pls help me find out the bug..
#include<iostream>
#include<string>
#include<stdlib.h>
#include<string.h>
#include<stdlib.h>
struct l{
int length;
int start;
int idx;
}list[26];
struct d{
char word[26];
int serial;
}Dict[250001 ...
Some one pls help me find out the bug..
#include<iostream>
#include<string>
#include<stdlib.h>
#include<string.h>
#include<stdlib.h>
struct l{
int length;
int start;
int idx;
}list[26];
struct d{
char word[26];
int serial;
}Dict[250001 ...
- Sat Jul 22, 2006 4:38 pm
- Forum: Volume 108 (10800-10899)
- Topic: 10892 - LCM Cardinality
- Replies: 25
- Views: 13077
I/0 for 10892
INPUT::
2
12
10000000
11111111
12345678
98746521
4587754
1
7485874
8888888
9999999
4512454
0
OUTPUT::
2 2
12 8
10000000 113
11111111 41
12345678 68
98746521 41
4587754 5
1 1
7485874 14
8888888 32
9999999 23
4512454 5
2
12
10000000
11111111
12345678
98746521
4587754
1
7485874
8888888
9999999
4512454
0
OUTPUT::
2 2
12 8
10000000 113
11111111 41
12345678 68
98746521 41
4587754 5
1 1
7485874 14
8888888 32
9999999 23
4512454 5
- Wed Jul 12, 2006 6:29 am
- Forum: Volume 102 (10200-10299)
- Topic: 10249 - The Grand Dinner
- Replies: 19
- Views: 16768
10249 Greedy strategy
Is there any proof that this problem can be solved by greedy strategy?
I got AC. But one thing I don't know why it works. What's the reason behind it?
One more extra thing:
In first attemp I sorted both the Team and Table. But I got WA. I don't know why? Because if in the input set the Tables are ...
I got AC. But one thing I don't know why it works. What's the reason behind it?
One more extra thing:
In first attemp I sorted both the Team and Table. But I got WA. I don't know why? Because if in the input set the Tables are ...
- Tue Jul 11, 2006 12:01 pm
- Forum: Algorithms
- Topic: Preflow push implementation
- Replies: 0
- Views: 1169
Preflow push implementation
Can any body provide me a C/C++ implementation of preflow push algorithm.
or any link.
or any link.
- Tue Nov 01, 2005 10:14 pm
- Forum: Volume 4 (400-499)
- Topic: 442 - Matrix Chain Multiplication
- Replies: 21
- Views: 5878
Thanks .....
Thank U . I just forget that on success isupper() returns a non zero value not exactly 1.
Again THank U for posting....and keep dreaming..
Again THank U for posting....and keep dreaming..
- Tue Nov 01, 2005 4:31 pm
- Forum: Volume 4 (400-499)
- Topic: 442 - Matrix Chain Multiplication
- Replies: 21
- Views: 5878
442 , why WA??
pls tell me some input for getting WA or help me to find probs here>>
#include<stdio.h>
#include<ctype.h>
#include<string.h>
struct m{
char ch;
long row;
long col;
};
char stack[1000];
int main()
{
struct m matrix[150],first,second,tmp;
char str[10000];
char ch_index = 'a'-1;
char a ...
#include<stdio.h>
#include<ctype.h>
#include<string.h>
struct m{
char ch;
long row;
long col;
};
char stack[1000];
int main()
{
struct m matrix[150],first,second,tmp;
char str[10000];
char ch_index = 'a'-1;
char a ...
- Sun Sep 25, 2005 7:22 am
- Forum: Algorithms
- Topic: !!Help needed on Greedy Algorithm!!
- Replies: 2
- Views: 3434
!!Help needed on Greedy Algorithm!!
Anyone please help me how to start dynamic programming and greedy algorithm.
Pls give tips as well as some good links for solving naive dynamic and greedy problems .. with increasing difficulty level.
THank YOu For visiting this topics.
Pls give tips as well as some good links for solving naive dynamic and greedy problems .. with increasing difficulty level.
THank YOu For visiting this topics.
- Wed Sep 21, 2005 7:53 pm
- Forum: Algorithms
- Topic: Recursive !! i feel for it , but i need help
- Replies: 2
- Views: 1432
Thanks!
Thank u for this.
This is really a good link for the beganner..
- Mon Sep 19, 2005 9:54 pm
- Forum: Algorithms
- Topic: Recursive !! i feel for it , but i need help
- Replies: 2
- Views: 1432
Recursive !! i feel for it , but i need help
Some body plsease tell me how to do well in recursive problems.
Please give also some easy recursive problem no of acm or any other
problem set.
I will be grateful if you give me some nice links about recursive problems.
Please give also some easy recursive problem no of acm or any other
problem set.
I will be grateful if you give me some nice links about recursive problems.
- Wed Sep 07, 2005 7:51 pm
- Forum: Volume 3 (300-399)
- Topic: 343 - What Base Is This?
- Replies: 72
- Views: 28287
343>>Can U tell me why WA??
Can u give me some input for which WA ? or where i am wrong in this code?
[/code]
#include<stdio.h>
#include<string.h>
#include<math.h>
char num1[20],num2[20];
void cancel_leading_zero(char p[],char q[])
{
int i,j,l1;
l1 = strlen(p)-1;
for(i = 0;i<l1;i++)
{
if(p[0]=='0')
p++;
else
break ...
[/code]
#include<stdio.h>
#include<string.h>
#include<math.h>
char num1[20],num2[20];
void cancel_leading_zero(char p[],char q[])
{
int i,j,l1;
l1 = strlen(p)-1;
for(i = 0;i<l1;i++)
{
if(p[0]=='0')
p++;
else
break ...
- Tue Sep 06, 2005 4:45 pm
- Forum: Volume 107 (10700-10799)
- Topic: 10763 - Foreign Exchange
- Replies: 45
- Views: 24770
10763 Foreign exchange (Hashing But what's incorrect here!!)
Anyone pls tell me what mistake i did .
//submit today...
#include<stdio.h>
unsigned long store[500100],max = 0,count= 0;
void initialise()
{
unsigned long i,j;
for(i = 0;i<500009;i++)
store[i] = 0;
}
int main()
{
unsigned long in,i;
unsigned long a,b;
//freopen("10763.in","r ...
//submit today...
#include<stdio.h>
unsigned long store[500100],max = 0,count= 0;
void initialise()
{
unsigned long i,j;
for(i = 0;i<500009;i++)
store[i] = 0;
}
int main()
{
unsigned long in,i;
unsigned long a,b;
//freopen("10763.in","r ...
- Tue Jul 26, 2005 8:29 pm
- Forum: Volume 107 (10700-10799)
- Topic: 10719 - Quotient Polynomial
- Replies: 51
- Views: 24980
Thankx Antonio
Sorry, as i did not gave the number. In fact the number is 10719 (Quotient Polynomial). So i am waiting for a reply.