I see.
So I will have to change my approach.
Thanks guys. I'll tell if I can figure ou a solution for this.
Search found 13 matches
- Wed Oct 03, 2007 11:37 pm
- Forum: C++
- Topic: C++ Template Specialisation Problem
- Replies: 9
- Views: 5073
- Wed Oct 03, 2007 3:38 pm
- Forum: C++
- Topic: C++ Template Specialisation Problem
- Replies: 9
- Views: 5073
- Tue Oct 02, 2007 10:26 pm
- Forum: C++
- Topic: C++ Template Specialisation Problem
- Replies: 9
- Views: 5073
- Mon Oct 01, 2007 8:48 pm
- Forum: C++
- Topic: C++ Template Specialisation Problem
- Replies: 9
- Views: 5073
- Mon Oct 01, 2007 1:41 am
- Forum: C++
- Topic: C++ Template Specialisation Problem
- Replies: 9
- Views: 5073
C++ Template Specialisation Problem
I have been programming in C++ for a long time, but recently I stepped in a difficult problem with the language.
I have defined a type trait for to be used with a type defined as an inner class, but could not specialise the template of the trait.
The code below is my problem in its simplest form ...
I have defined a type trait for to be used with a type defined as an inner class, but could not specialise the template of the trait.
The code below is my problem in its simplest form ...
- Sat Aug 25, 2007 5:09 pm
- Forum: Volume 112 (11200-11299)
- Topic: 11249 - Game
- Replies: 32
- Views: 18677
- Mon Aug 20, 2007 9:36 pm
- Forum: Volume 112 (11200-11299)
- Topic: 11249 - Game
- Replies: 32
- Views: 18677
- Mon Aug 20, 2007 1:02 am
- Forum: Volume 112 (11200-11299)
- Topic: 11249 - Game
- Replies: 32
- Views: 18677
I have written a program which produces correct outputs to the inputs I have tried so far. While solving the problem a friend and I formulated a complicated theory and proved its correctness. Of course, we must have made a mistake in the proof, otherwise we would have received accepted. According to ...
- Wed May 30, 2007 3:13 am
- Forum: Volume 100 (10000-10099)
- Topic: 10037 - Bridge
- Replies: 84
- Views: 37940
10037 - The Bridge (to Hell)
Hello,
I found this problem very interesting at first, but when I tried to solve it, it became a nightmare.
The judge always either return WA or RE. The code below is WA.
Could anyone PLEASE a (the) bug in the code below. It is clear to understand.
Thanks in advance.
/* -------------
ACM UVA ...
I found this problem very interesting at first, but when I tried to solve it, it became a nightmare.
The judge always either return WA or RE. The code below is WA.
Could anyone PLEASE a (the) bug in the code below. It is clear to understand.
Thanks in advance.
/* -------------
ACM UVA ...
- Sat May 19, 2007 3:14 am
- Forum: Volume 8 (800-899)
- Topic: 843 - Crypt Kicker
- Replies: 51
- Views: 35871
- Sat May 19, 2007 3:12 am
- Forum: Volume 8 (800-899)
- Topic: 843 - Crypt Kicker
- Replies: 51
- Views: 35871
- Thu May 17, 2007 5:33 pm
- Forum: Volume 3 (300-399)
- Topic: 374 - Big Mod
- Replies: 79
- Views: 25023
- Wed May 16, 2007 2:21 pm
- Forum: Volume 1 (100-199)
- Topic: 100 - The 3n + 1 problem
- Replies: 1394
- Views: 320261
100 - 3n+1 - Memorisation
I have solved the 3n+1 problem by use of the memorisation method. In my computer, it solves the input "1 999999" 60 times faster than brute force. But when I submit it, besides getting AC, it takes over a second to get it correct, considering that the brute force took 3 seconds. Furthermore, I ...