Reuse project name

2011-05-23 Thread John Armston
Hi, I deleted an open source project a month or two ago, but now need to upload the project again: rsclastools. Starting a new project does not allow the name to be reused despite there being no existing project with that name. Am you able to restore the availability of the rsclastools name

Re: Reuse project name

2011-05-23 Thread Nathaniel Manista
On Mon, May 23, 2011 at 8:07 AM, John Armston j.arms...@uq.edu.au wrote: I deleted an open source project a month or two ago, but now need to upload the project again: rsclastools. Starting a new project does not allow the name to be reused despite there being no existing project with that

[gcj] round 1C - third problem : explaining a couple of algorithm

2011-05-23 Thread Ernest Galbrun
Dear fellow coders, Following the frustration of failling to solve the third problem in round 1C due to a lack of efficiency in the implementation of my algorithm, I looked at other people's submission to get a grasp of how the did it. And here I fail to understand their algorithm. Can you tell

[gcj] [Round 1C problem B]

2011-05-23 Thread Sturzu Antonio Gabriel
I had the following problem in problem B which may have cost me the qualification. Like many of you in the last part of my algorithm I needed to sort the distances in decreasing order. Here's what the problem was: I used the sort function in STL with the following comparion function: bool

[gcj] A big thanks to the organizers!

2011-05-23 Thread mYTH
After posting a score of 55 (personal best, yay! :P) in the Qualification round, I crashed out of Round 1 with a measly score of 20 in 1B 28 in 1C. :P For me, GCJ 2011, like all its previous iterations, was an amazing learning experience. As always, it was great to see the amount of care taken

[gcj] Re: [Round 1C problem B]

2011-05-23 Thread consistent
In order for (c++ stl) sort to work correctly, the comparison object must satisfy a http://en.wikipedia.org/wiki/Strict_weak_ordering = does not satisfy this and so the sort will not work correctly. The requirements are (taken straight from the wikipedia page) A strict weak ordering has the

Re: [gcj] A big thanks to the organizers!

2011-05-23 Thread praveen dhanuka
i think i dont clear round 1 due to lack of practise and also as i am weak in using templates . i decode the fuzzy logic very quickly but problem arises while implementing it quickly. next time i will clear it. On Mon, May 23, 2011 at 12:13 PM, mYTH lovloot...@gmail.com wrote: After posting a

Re: [gcj] Re: [Round 1C problem B]

2011-05-23 Thread Sturzu Antonio Gabriel
Ok, thanks a lot. Too bad I didnt't knew this in the contest.    Toni --- On Mon, 5/23/11, consistent mitch.mis...@gmail.com wrote: From: consistent mitch.mis...@gmail.com Subject: [gcj] Re: [Round 1C problem B] To: google-code@googlegroups.com Date: Monday, May 23, 2011, 10:31 AM In

Re: [gcj] IOI 2011

2011-05-23 Thread Leopoldo Taravilse
IOI conflicts with IMO IOI conflicts with GCJ The problem isn't IMO or GCJ, the problem is the IOI date. -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to this group, send email to google-code@googlegroups.com. To unsubscribe from

Re: [gcj] round 1C - third problem : explaining a couple of algorithm

2011-05-23 Thread Davi Costa
Hi, this initial main part is just a very efficient implementation of the Sieve of Eratosthenes http://en.wikipedia.org/wiki/Sieve_of_Eratosthenes. Instead of using 8 bits (boolean or char) to indicate if a number is marked or not it uses only 1 bit, and the shifting and and operators are to

Re: [gcj] Re: [Round 1C problem B]

2011-05-23 Thread Vladimir Ignatyev
Hi! You can use default function (member of functional ) greaterlong long() -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to this group, send email to google-code@googlegroups.com. To unsubscribe from this group, send email to

Re: [gcj] Re: [Round 1C problem B]

2011-05-23 Thread Luke Pebody
Or just sort without specifying fn and then reverse. On 23 May 2011 20:27, Vladimir Ignatyev neac...@gmail.com wrote: Hi! You can use default function (member of functional ) greaterlong long() -- You received this message because you are subscribed to the Google Groups google-codejam group.

Re: [gcj] [Round 1C problem B]

2011-05-23 Thread Paul Holden
Hi Toni, I think the problem is that your predicate function must be a 'strict weak ordering'. One of the conditions it must satisfy is that it's irreflexive (i.e. comp( x, x ) == false) and antisymmetric (i.e. comp( x, y ) = !comp( y, x )). There are some other conditions it must observe, for

Re: [gcj] A big thanks to the organizers!

2011-05-23 Thread viral parekh
same here... ya but.. i will be backgcj 2012... well equipped with practice... :-) On Mon, May 23, 2011 at 1:07 PM, praveen dhanuka codep...@gmail.com wrote: i think i dont clear round 1 due to lack of practise and also as i am weak in using templates . i decode the fuzzy logic very

Re: [gcj] A big thanks to the organizers!

2011-05-23 Thread Billy Cooperman
I agree. This event is a great way to encourage programming, and the problems are obviously very well thought out. This was my first code jam, and I made it to round 1 (but then was knocked out also). GCJ is awesome! On Mon, May 23, 2011 at 3:37 AM, praveen dhanuka codep...@gmail.com wrote: i

Re: [gcj] IOI 2011

2011-05-23 Thread Bartholomew Furrow
I wasn't personally aware of that, but there's nothing we can do about it at this stage. Did they announce their schedule before ours and have us not take it into account, or vice versa? On Sun, May 22, 2011 at 6:35 PM, TripleM stephenmerri...@gmail.com wrote: Are the Code Jam organisers aware

Re: [gcj] Re: Will the round 1 schedule be adjusted for the rapture?

2011-05-23 Thread Bartholomew Furrow
Already done: http://code.google.com/codejam/contest/dashboard?c=433101#s=p1 . Not that I recommend actually reading and trying to solve it; we've improved our problem-phrasing abilities since then. On Sun, May 22, 2011 at 4:48 PM, Dalek cbro...@gmail.com wrote: That could certainly be a

Re: [gcj] A big thanks to the organizers!

2011-05-23 Thread Andres Lara M
It's a great contest! This was my first time, even I couldn´t go to round 2, I´m really happy for the experience and the adventure! I thank the organizers and my best to the top3000! Andrés 2011/5/23 Billy Cooperman aquamongo...@gmail.com I agree. This event is a great way to encourage

[gcj] Re: A big thanks to the organizers!

2011-05-23 Thread darthur
Thanks guys! A lot of work goes into the Google Code Jam, and it means a lot to us to hear that you all are enjoying it. Hope to see you all back again! On May 23, 2:10 pm, Andres Lara M a.lara0...@gmail.com wrote: It's a great contest! This was my first time, even I couldn´t go to round 2,

[gcj] Re: IOI 2011

2011-05-23 Thread TripleM
IOI was announced first it seems: http://apps.topcoder.com/forums/?module=ThreadthreadID=690423start=0mc=19 On May 24, 8:38 am, Bartholomew Furrow fur...@gmail.com wrote: I wasn't personally aware of that, but there's nothing we can do about it at this stage.  Did they announce their schedule

Re: [gcj] Very minor piece of suggestion to GCJ Team..

2011-05-23 Thread Alfonso J. Ramos
I have to agree with the formating... I lost a lot of time with that. Do you use /r/n or /n or /r or /n/r? I always use /r/n Is 0,5 and 0.5 the same? I use 0.5 always Is 0.50 valid when 0.5 expected? hmm... May be being more explicit in the formatting will help, also I would like to know that my

Re: [gcj] Very minor piece of suggestion to GCJ Team..

2011-05-23 Thread Ameer Ayoub
You can see how the output is formatted for the sample input provided below the problem description and make sure your program produces identical output in terms of formatting. If it doesn't match, the amount of output for the sample data is usually just a few cases so typos or missing line breaks

Re: [gcj] Very minor piece of suggestion to GCJ Team..

2011-05-23 Thread ulzha
Have you actually read the Terms/FAQ? Unix, Mac and Windows endlines are all acceptable ways of ending lines. What browser are you using? I have no problem copying the sample input. -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to