Search found 9 matches

by Professor_Of_Love
Sat Apr 05, 2003 8:01 pm
Forum: Volume 100 (10000-10099)
Topic: 10093 - An Easy Problem!
Replies: 52
Views: 22920

Is there anyone who can help me? :cry:
by Professor_Of_Love
Sat Apr 05, 2003 7:50 pm
Forum: Volume 100 (10000-10099)
Topic: 10062 - Tell me the frequencies!
Replies: 235
Views: 69482

But, what about my WA??
by Professor_Of_Love
Sat Apr 05, 2003 6:57 am
Forum: Volume 100 (10000-10099)
Topic: 10062 - Tell me the frequencies!
Replies: 235
Views: 69482

I am very very disappointed with this problem... I am getting WA. But I have solved similar problem like #10008. I can't find any mistake here. Can anyone help me?? Thanks in advance!

[c]#include<stdio.h>
#include<string.h>
#define N 10000
#define M 160

struct {
char ch;
int c;
}chrs[M ...
by Professor_Of_Love
Sat Apr 05, 2003 6:48 am
Forum: Volume 100 (10000-10099)
Topic: 10008 - What's Cryptanalysis?
Replies: 55
Views: 27221

Thankssssss Adil vaiya.... I just wrote another swap function for the characters and got AC. Thanks again! Have a nice day! :lol:
by Professor_Of_Love
Fri Apr 04, 2003 5:24 pm
Forum: Volume 4 (400-499)
Topic: 492 - Pig-Latin
Replies: 213
Views: 49407

Now please tell me... why i am getting TLE....

[c]#include<stdio.h>
#include<ctype.h>
#include<string.h>
#define N 1500000

char str[N],tmp;
int i,j,k;

int isvowel(char ch1)
{
char ch = tolower(ch1);
if(ch!='a'&&ch!='e'&&ch!='i'&&ch!='o'&&ch!='u')
return 0;
else
return 1;
}

void main(void ...
by Professor_Of_Love
Thu Apr 03, 2003 8:41 am
Forum: Volume 103 (10300-10399)
Topic: 10324 - Zeros and Ones
Replies: 179
Views: 66996

Thanks, turuthok!

turuthok, thanks. I have started thinking in your way... Thanks again!
by Professor_Of_Love
Wed Apr 02, 2003 8:44 pm
Forum: Volume 103 (10300-10399)
Topic: 10338 - Mischievous Children
Replies: 56
Views: 31424

Why I always get WA????????

[c]#include<stdio.h>
#define SIZE 20

struct letter{
char chr;
int freq;
};

struct letter in[SIZE];
char str1[20000];
unsigned long long i,j,flag,countStruct,n,k,sum,cur;

unsigned long long fact(unsigned long long d)
{
unsigned long long s,b;
s=1;
for(b=1;b<=d;b ...
by Professor_Of_Love
Wed Apr 02, 2003 8:32 pm
Forum: Volume 103 (10300-10399)
Topic: 10324 - Zeros and Ones
Replies: 179
Views: 66996

So, how can I avoid TLE???? I haven't start Algorithm course... so can't I solve this without using Algo??? Thanks.
by Professor_Of_Love
Wed Apr 02, 2003 8:13 pm
Forum: Volume 100 (10000-10099)
Topic: 10093 - An Easy Problem!
Replies: 52
Views: 22920

Please help meeeeeeee

Please can anyone help me on this code? Why WA? Where is my mistake??

[c]#include<stdio.h>
#include<ctype.h>
#include<string.h>

char str[32000];

void main(void)
{
char high,low;
int i,flag;
while(gets(str))
{
high = 0, flag = 0;
for(i=0;i<strlen(str);i++)
{
if(!(isupper(str )||islower ...

Go to advanced search