Search found 23 matches
- Fri Nov 07, 2008 4:29 am
- Forum: Volume 5 (500-599)
- Topic: 562 - Dividing coins
- Replies: 73
- Views: 32894
Re: 562 - Dividing Coins
Hi everyone, I think the way Mr. LIMON and Mr. porker are thinking is not right. It is polluting this environment. There are a lots of helping sites from where we can get help for algorithm and IO. 1.http://uvatoolkit.com/problemssolve.php 2.http://felix-halim.net/uva/hunting.php 3.http://shygypsy.c...
- Thu Nov 06, 2008 6:21 pm
- Forum: Volume 5 (500-599)
- Topic: 562 - Dividing coins
- Replies: 73
- Views: 32894
Re: 562 - Dividing Coins
Thanks LIMON.
However, would someone please reply to my previous post? I am getting WA.
However, would someone please reply to my previous post? I am getting WA.
- Thu Nov 06, 2008 3:08 pm
- Forum: Volume 5 (500-599)
- Topic: 562 - Dividing coins
- Replies: 73
- Views: 32894
Re: 562 - Dividing Coins
Hi Limon,
You should stop advertising about youngprogrammer.com. There, source codes are availavle and it is totally spoiler. You should stop referring that, that is actually no help but no help.
You should stop advertising about youngprogrammer.com. There, source codes are availavle and it is totally spoiler. You should stop referring that, that is actually no help but no help.
- Thu Nov 06, 2008 5:45 am
- Forum: Volume 5 (500-599)
- Topic: 562 - Dividing coins
- Replies: 73
- Views: 32894
Re: 562 - Dividing Coins WA
Hi, I am a little confused about this problem and getting WA. 1. if, in input,m = 0, is there going to be a blank line in the following line? 2.is this correct? W = sum/2; for(i = 0; i <= W; i++)A[0][i] = 0; for(i = 1; i <= n; i++) { A[i][0] = 0; for(j = 1; j <= W; j++) { if(v[i] <= j) { if(v[i] + A...
- Sat Oct 25, 2008 6:39 am
- Forum: Volume 7 (700-799)
- Topic: 713 - Adding Reversed Numbers
- Replies: 142
- Views: 44309
Hints:713 - Adding Reversed Numbers
Those who wants some hints:
1. for input like 1000 1, my output is 2000.
2. for input like 1000 1000, output is 2000.
3. for input like 00010 9, output is 90010.
4. No need to reverse at all.
And, I got AC in 0.000.
1. for input like 1000 1, my output is 2000.
2. for input like 1000 1000, output is 2000.
3. for input like 00010 9, output is 90010.
4. No need to reverse at all.
And, I got AC in 0.000.

- Wed Oct 22, 2008 1:33 pm
- Forum: Volume 115 (11500-11599)
- Topic: 11530 - SMS Typing
- Replies: 41
- Views: 9941
Re: WA: 11530: SMS Typing
Thanks,
. I got my problem and got AC.

- Tue Oct 21, 2008 11:14 pm
- Forum: Volume 115 (11500-11599)
- Topic: 11530 - SMS Typing
- Replies: 41
- Views: 9941
11530 - SMS Typing
I am frustrated about this easy problem. WA and WA, but can not find the error. Can anybody help me? Is there any critical IO?
Code: Select all
- Mon Oct 20, 2008 6:14 pm
- Forum: Volume 114 (11400-11499)
- Topic: 11436 - Cubes - EXTREME!!!
- Replies: 21
- Views: 9116
WA: 11436 - Cubes - EXTREME!!!
I got AC.
- Sat Oct 18, 2008 2:19 pm
- Forum: Volume 115 (11500-11599)
- Topic: 11500 - Vampires
- Replies: 10
- Views: 5300
Re: 11500 - Vampires - tips
Thanks neilor for your kind elaboratin, I got AC. 
But, I did not handle unfair coin flipping as you said, may be the test cases are fair.

But, I did not handle unfair coin flipping as you said, may be the test cases are fair.
- Thu Oct 09, 2008 4:44 am
- Forum: Volume 115 (11500-11599)
- Topic: 11500 - Vampires
- Replies: 10
- Views: 5300
Re: 11500 - Vampires - tips
Gambler's Ruin is for D = 1, What about D != 1 ?
- Mon Oct 06, 2008 2:31 pm
- Forum: Volume 115 (11500-11599)
- Topic: 11508 - Life on Mars?
- Replies: 7
- Views: 3264
Re: 11508 - Life on Mars?
Thanks Brother,
. Now AC.
Thanks again, hope your all well. Thanks.

Thanks again, hope your all well. Thanks.
- Mon Oct 06, 2008 12:31 pm
- Forum: Volume 115 (11500-11599)
- Topic: 11508 - Life on Mars?
- Replies: 7
- Views: 3264
Re: 11508 - Life on Mars?
Thanks for ur reply.
while taking input, i used for first digit. so if arr[0] = 0; no problem.
However, i initialised tmp, but still WA.
. I still cant find any wrong. Can anyone give some critical test cases?
while taking input, i used
Code: Select all
while(scanf("%d%c",&x,&ch) && x)
However, i initialised tmp, but still WA.

- Sun Oct 05, 2008 3:46 pm
- Forum: Volume 115 (11500-11599)
- Topic: 11508 - Life on Mars?
- Replies: 7
- Views: 3264
WA: 11508 - Life on Mars?
I cant find any wrong here and i checked for a lot of test case.
Can anyone help me?
removed
Can anyone help me?
removed
- Wed Oct 01, 2008 4:21 pm
- Forum: Volume 115 (11500-11599)
- Topic: 11505 - Logo
- Replies: 8
- Views: 5981
Re: WA-11505-LOGO
Thanks redroof for your kind reply. I got AC after changing PI.redroof wrote:try to change your PI to a more precise one:Code: Select all
#define PI 0.01745329251994329914588889
Thanks again.

- Wed Oct 01, 2008 9:20 am
- Forum: Volume 115 (11500-11599)
- Topic: 11505 - Logo
- Replies: 8
- Views: 5981
11505 - Logo
removed