Hridoy, a bright student of BUET, is suffering from accute Leukemia.
The treatment is Bone marrow transplant.
Around US$80,000 is needed.
Please visit
http://hridoy.vze.com
Any kind of help is appreciated.
Thank you
Search found 33 matches
- Wed Jul 06, 2005 2:43 pm
- Forum: Off topic (General chit-chat)
- Topic: Help Hridoy to Survive
- Replies: 0
- Views: 1523
- Sun May 29, 2005 11:44 am
- Forum: Volume 103 (10300-10399)
- Topic: 10307 - Killing Aliens in Borg Maze
- Replies: 54
- Views: 25374
- Tue May 24, 2005 8:06 pm
- Forum: Volume 103 (10300-10399)
- Topic: 10306 - e-Coins
- Replies: 9
- Views: 8130
My Dynamic solution solves it in abt 0.06 seconds. is the bfs solution faster ?
My code is recursive (and a bit dirty also, there are places for optimization) ---> the iterative solution may include extra solutions in the space --- thus requiring more time. So using static incrementalization with a ...
My code is recursive (and a bit dirty also, there are places for optimization) ---> the iterative solution may include extra solutions in the space --- thus requiring more time. So using static incrementalization with a ...
- Wed Dec 01, 2004 12:05 pm
- Forum: C++
- Topic: Debugging in VC++ : Watching Part of an array
- Replies: 6
- Views: 3213
- Wed Dec 01, 2004 6:58 am
- Forum: C++
- Topic: Debugging in VC++ : Watching Part of an array
- Replies: 6
- Views: 3213
- Sat Nov 13, 2004 8:33 pm
- Forum: C++
- Topic: Passing Template Functions as parameters
- Replies: 1
- Views: 1858
Passing Template Functions as parameters
check the following code:
[cpp]
#include<iostream>
using namespace std;
template<class T>
void process(T a, T b,void (*job)(T a,T b))
{
cout<<"process called with "<<a<<" and "<<b;
cout<<endl;
job(a,b);
}
template<class T>
void print_max(T a,T b)
{
cout<<"max is ";
if(a>b)cout<<a;
else cout ...
[cpp]
#include<iostream>
using namespace std;
template<class T>
void process(T a, T b,void (*job)(T a,T b))
{
cout<<"process called with "<<a<<" and "<<b;
cout<<endl;
job(a,b);
}
template<class T>
void print_max(T a,T b)
{
cout<<"max is ";
if(a>b)cout<<a;
else cout ...
- Sat Nov 13, 2004 6:56 pm
- Forum: C++
- Topic: Debugging in VC++ : Watching Part of an array
- Replies: 6
- Views: 3213
Debugging in VC++ : Watching Part of an array
suppose int xyz[10000] is an array.
and we are using IDE Visual C++ 6.0
during debugging we can add xyz to watch window, it will show the whole array, when expanded.
If the array is large, it becomes slow when expanded and debugging becomes tiresome.
So how to view part of the array, say we want ...
and we are using IDE Visual C++ 6.0
during debugging we can add xyz to watch window, it will show the whole array, when expanded.
If the array is large, it becomes slow when expanded and debugging becomes tiresome.
So how to view part of the array, say we want ...
- Tue Jun 29, 2004 3:58 pm
- Forum: C
- Topic: Incremented Expression passing in Turbo C
- Replies: 1
- Views: 2022
Incremented Expression passing in Turbo C
Is it a problem of Turbo C compiler ?
Consider the following code:
[c]
void main()
{
int n,d;
n=5;
printf("%d ",d = ++n + ++n);
n=5;
d = ++n + ++n;
printf("%d ", d);
}
[/c]
both printf should output same value, and it does that in vc++.
but in Turbo C first printf prints 13 and the ...
Consider the following code:
[c]
void main()
{
int n,d;
n=5;
printf("%d ",d = ++n + ++n);
n=5;
d = ++n + ++n;
printf("%d ", d);
}
[/c]
both printf should output same value, and it does that in vc++.
but in Turbo C first printf prints 13 and the ...
- Tue Feb 24, 2004 7:32 am
- Forum: C
- Topic: Writing Optimized Codes/ tricks
- Replies: 1
- Views: 1937
Writing Optimized Codes/ tricks
I generally code in C. sometimes have to use C++.
Experience helps to write code that converts to efficient machine codes.
Algorithm with asymptotically faster complexity is not the final solution,
its implementation also matters.
For example, if we want to find " j= i mod 32 "
[c] j = i & 0x1F ...
Experience helps to write code that converts to efficient machine codes.
Algorithm with asymptotically faster complexity is not the final solution,
its implementation also matters.
For example, if we want to find " j= i mod 32 "
[c] j = i & 0x1F ...
- Wed Jan 07, 2004 7:38 pm
- Forum: Volume 104 (10400-10499)
- Topic: 10446 - The Marriage Interview :-)
- Replies: 17
- Views: 12319
- Mon Jan 05, 2004 3:22 pm
- Forum: Volume 4 (400-499)
- Topic: 446 - Kibbles "n" Bits "n" Bits "n" Bits
- Replies: 50
- Views: 11452
- Sun Jan 04, 2004 10:52 am
- Forum: Volume 4 (400-499)
- Topic: 446 - Kibbles "n" Bits "n" Bits "n" Bits
- Replies: 50
- Views: 11452
- Sat Jan 03, 2004 12:28 pm
- Forum: Other words
- Topic: "Updated Problem for download" -- really updated ?
- Replies: 1
- Views: 1438
"Updated Problem for download" -- really updated ?
Recently I re-downloaded all the volumes from acm uva site. Where there is a link "updated problems for download"
But now I see many of them are not updated..... The algorithmic team is making change to the input range, this change is found is not reflected in many of those updated problems.
For ...
But now I see many of them are not updated..... The algorithmic team is making change to the input range, this change is found is not reflected in many of those updated problems.
For ...
- Fri Jan 02, 2004 7:19 pm
- Forum: Volume 104 (10400-10499)
- Topic: 10446 - The Marriage Interview :-)
- Replies: 17
- Views: 12319
10446 The Marriage Interview :-(
Hi Everyone,
This problem seems very interesting, but I don't know why I am getting WA! I think my answers are correct.
Here dynamic technique memoization is used
For negative values of n, it program prints 1.
And I have used "unsigned long long"
Would you please check the code below?
[cpp ...
This problem seems very interesting, but I don't know why I am getting WA! I think my answers are correct.
Here dynamic technique memoization is used
For negative values of n, it program prints 1.
And I have used "unsigned long long"
Would you please check the code below?
[cpp ...
- Sun Jul 13, 2003 11:45 am
- Forum: Other words
- Topic: Update Problems for Download
- Replies: 2
- Views: 1158
Update Problems for Download
Once I downloaded problems from
http://acm.uva.es/problemset/files/
Now when I go to download Volume8 ,CIV,CV or any other one it says that the file doesn't exist (This problem arised before the upgrade).
For example:
http://acm.uva.es/problemset/files/v105-htm01.zip
can't find the file.
As I use ...
http://acm.uva.es/problemset/files/
Now when I go to download Volume8 ,CIV,CV or any other one it says that the file doesn't exist (This problem arised before the upgrade).
For example:
http://acm.uva.es/problemset/files/v105-htm01.zip
can't find the file.
As I use ...