[gcj] Re: bad timing for the last online round (any soccer fans here?!)

2009-10-04 Thread Leopoldo Taravilse
A soccer match lasts 90 minutes, you can read the statments when the comptetition starts and code in the middle of the first half and the second half (I don't know how to say that part of the match in English) and when the competition ends. You won't make it to the finals if you do that but at

Re: [gcj] 2010 -- What do you think?

2009-12-19 Thread Leopoldo Taravilse
If you can't code on ANY Saturday then don't compete, one thing is if you have problem with ONE Saturday or TWO Saturdays but ALL Saturdays? Come on! What's the problem with coding on Saturdays? People is busy from Monday to Friday... -- You received this message because you are subscribed to

[gcj] Coders by Country

2010-03-05 Thread Leopoldo Taravilse
Can we access a list of coders by country this year in GCJ? It would be great! -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to this group, send email to google-c...@googlegroups.com. To unsubscribe from this group, send email to

[gcj] Latin American CodeJam

2010-03-08 Thread Leopoldo Taravilse
I heard about an African Code Jam... is there gonna be a Latin American CodeJam? -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to this group, send email to google-c...@googlegroups.com. To unsubscribe from this group, send email to

Re: [gcj] Latin American CodeJam

2010-03-11 Thread Leopoldo Taravilse
Then why did they open offices in Brazil and not in Argentina if Argentina proved to have better coders than Brazil? -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to this group, send email to google-c...@googlegroups.com. To

Re: [gcj] Latin American CodeJam

2010-03-11 Thread Leopoldo Taravilse
Then why did they open offices in Brazil and not in Argentina if Argentina proved to have better coders than Brazil? Indeed we have a GCJ winner (Sergio Sancho) -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to this group, send email

Re: [gcj] Latin American CodeJam

2010-03-12 Thread Leopoldo Taravilse
1) In the last 4 ICPC World Finals, 3 Latin American Champions were from Argentina (from UBA). The problem this year was that you trained with Petr and we couldn't train with nobody... 2) Argentinian women are mucho más lindas. 3) Sergio Sancho from Argentina won the GLOBAL Code Jam, not the LA

[gcj] Scoreboard

2010-03-16 Thread Leopoldo Taravilse
Can you include this year in the scoreboard all the people who submits at least one problem? And it would be better if you can include all people who reads a problem statement but I don't know how to verify this. -- You received this message because you are subscribed to the Google Groups

Re: [gcj] Code Jam at TopCoder

2010-04-19 Thread Leopoldo Taravilse
If you want you still have time to register at www.topcoder.com/tco10 for the TopCoder Open -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to this group, send email to google-c...@googlegroups.com. To unsubscribe from this group, send

Re: [gcj] Interesting Qualification Round stories

2010-04-23 Thread Leopoldo Taravilse
You don't work in Google because you're top 25 at the GCJ. You can work in Google because a lot of factors, including maybe your GCJ's performance. -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to this group, send email to

Re: [gcj] Regarding Small Input

2010-05-02 Thread Leopoldo Taravilse
You compete from your home. -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to this group, send email to google-c...@googlegroups.com. To unsubscribe from this group, send email to google-code+unsubscr...@googlegroups.com. For more

Re: [gcj] Re: help! I am a newbie....

2010-05-04 Thread Leopoldo Taravilse
sort(string.begin(),string.end()) do{ whatever you want to do with the string }while(next_permutation(string.begin(),string.end()) -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to this group, send email to

Re: [gcj] Re: help! I am a newbie....

2010-05-04 Thread Leopoldo Taravilse
I think the following is a better way to find faster all the permutations of a string: 1) sort the string 2) repeat the following: look for the first i such that from string[i] to string[string.size()-1] it's not sorted backwards, change string[i] for then next char in lexicographical order

[gcj] Old CodeJams

2010-05-06 Thread Leopoldo Taravilse
Can you please post in the website the problems for all the GCJs including those ones hosted by TopCoder? I think many people want them... -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to this group, send email to

Re: [gcj] Previous contests

2010-05-06 Thread Leopoldo Taravilse
You should practice... I solved all the problems I solved during contests because of all the problems I solved practicing... On Thu, May 6, 2010 at 6:56 PM, Gökhan Çetin gkhnce...@gmail.com wrote: Better not to practice and see what you can do in real. I won't practice any old contests. Think

Re: [gcj] Previous contests

2010-05-06 Thread Leopoldo Taravilse
Yes, I participated in 2008 and 2009 reaching 2nd and 3rd round. -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to this group, send email to google-c...@googlegroups.com. To unsubscribe from this group, send email to

Re: [gcj] Old CodeJams

2010-05-06 Thread Leopoldo Taravilse
They are not available in TopCoder -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to this group, send email to google-c...@googlegroups.com. To unsubscribe from this group, send email to google-code+unsubscr...@googlegroups.com. For

[gcj] How to read and write files

2010-05-07 Thread Leopoldo Taravilse
As many people has asked about this before I'll give a few hints on how to do it in C++ that is the language I use and the language most of people use. #include #include #include #include ... (defines) using namespace std; int main() { freopen(A-small.in,r,stdin);

Re: [gcj] Qualification started?

2010-05-07 Thread Leopoldo Taravilse
If you qualify for the Onsite Finals Google will pay your trip and your stay in Dublin. Also they will pay your Visa and a T-shirt for you (that is if you qualify for Round 3). But if I were you I would try to advance Round by Round instead of worring about the finals (that are very hard to reach)

[gcj] Large Input

2010-05-07 Thread Leopoldo Taravilse
From the Quick-Start Guide: 6. After you solve the Small input, the Large input will become available. Once your program is ready to deal with the higher limits, download the Large input. An 8-minute timer will start as soon as we receive the download request. That was decided this year for

Re: [gcj] Large Input

2010-05-07 Thread Leopoldo Taravilse
Please I'm a native Spanish speaker too but write in English here as many people doesn't understand what you're saying. On Fri, May 7, 2010 at 6:57 PM, darwin plazas ortega dpzt...@gmail.comwrote: como asi primero el pequeño y luego el grande? 2010/5/7 Leopoldo Taravilse ltaravi...@gmail.com

[gcj] Coders in scoreboard

2010-05-07 Thread Leopoldo Taravilse
Can you please add this year to the scoreboard all the coders who opened the contest but didn't solve any problem correctly? That would be great to do some statistics like simulating ratings like in TopCoder... -- You received this message because you are subscribed to the Google Groups

Re: [gcj] Performance with huge data sets

2010-05-08 Thread Leopoldo Taravilse
My code generated the following: for all i in [0..n) stored what's the first group in the line after the i-th group enters in the first of the k places and how many people goes for that ride. And then simulated in o(R). -- You received this message because you are subscribed to the Google

Re: [gcj] How many problems i need to complete for qualifying?

2010-05-08 Thread Leopoldo Taravilse
Not 33 but = 33 On Sat, May 8, 2010 at 9:19 PM, Dhruva Sagar dhruva.sa...@gmail.com wrote: If only you read the rules!!! Technically (as taken direct from the rules page) - If you successfully solve one small and one large input from any of the three problems, you will advance to Online

Re: [gcj] Mathematics

2010-05-09 Thread Leopoldo Taravilse
If you want to learn Maths I recommend you to read Problem Solving Strategies from Arthur Engel. You can search for the e-book on the web. -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to this group, send email to

Re: [gcj] Re: what kiond of computer?

2010-05-11 Thread Leopoldo Taravilse
I won't sell you my computer as long as GCJ and TC exist... -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to this group, send email to google-c...@googlegroups.com. To unsubscribe from this group, send email to

Re: [gcj] Date for Round 2...

2010-05-11 Thread Leopoldo Taravilse
If you can't dedicate 2:30 hours to GCJ Round 2 because you have exams on that week then don't participate, everyone have many things to do everyday you can't make the dates fit everyone. You cannot tell me that you don't have 2:30 hours because you have exams. -- You received this message

[gcj] Marek's score

2010-05-16 Thread Leopoldo Taravilse
How can Marek (1491) have a score of 89? -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to this group, send email to google-c...@googlegroups.com. To unsubscribe from this group, send email to google-code+unsubscr...@googlegroups.com.

Re: [gcj] Marek's score

2010-05-16 Thread Leopoldo Taravilse
Yes I know but how could he solve the large without solving the small? -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to this group, send email to google-c...@googlegroups.com. To unsubscribe from this group, send email to

Re: [gcj] Re: Error in my C++ code

2010-05-17 Thread Leopoldo Taravilse
This way is easier: if(++k%(1n) == 0) -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to this group, send email to google-c...@googlegroups.com. To unsubscribe from this group, send email to google-code+unsubscr...@googlegroups.com.

Re: [gcj] How is the rank decided?

2010-05-17 Thread Leopoldo Taravilse
Yes, it's the most important factor, if the algorithm is not efficient enough it will not run in time and you will get 0 points. -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to this group, send email to google-c...@googlegroups.com.

Re: [gcj] Re: your experience as a coder

2010-05-17 Thread Leopoldo Taravilse
Almost 2 years, since my first SRM in June 26th, 2008 -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to this group, send email to google-c...@googlegroups.com. To unsubscribe from this group, send email to

Re: [gcj] Re: Should large data sets be allowed multiple attemps?

2010-05-21 Thread Leopoldo Taravilse
I was being ironic... On Fri, May 21, 2010 at 7:53 AM, Dhruva Sagar dhruva.sa...@gmail.comwrote: :), I guess you forgot Windows ME, Windows Vista !? On Fri, May 21, 2010 at 16:20, Leopoldo Taravilse ltaravi...@gmail.comwrote: All Microsoft products are perfect in their first release

Re: [gcj] Re: Small request

2010-06-04 Thread Leopoldo Taravilse
If you don't try hard enough because you know you have a high chance to advance even if you don't try you don't deserve to advance, so better not try so you increase your chances of not advancing. On Fri, Jun 4, 2010 at 1:13 AM, Wen X wenxiao1...@gmail.com wrote: This idea is cool, but I don't

Re: [gcj] Re: post incrementation in JAVA... wierd

2010-06-08 Thread Leopoldo Taravilse
why r yew... Where did you learn English? On Tue, Jun 8, 2010 at 12:56 AM, cornerstone jignesh2481...@gmail.comwrote: why r yew confusing oders... as per c,c++, and java too this statement means(n=10;n=n++) when expanded means n=10; n=n;//since n++ is post increment //and then

Re: [gcj] polygraph question

2010-06-16 Thread Leopoldo Taravilse
The problem is can be reduced to a system of equations modulo 2. -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to this group, send email to google-c...@googlegroups.com. To unsubscribe from this group, send email to

Re: [gcj] Re: polygraph question

2010-06-21 Thread Leopoldo Taravilse
i T j means i xor j == 0 i L j means i xor j == 1 i S j k means i xor j xor k == 1 i D j k means i xor j xor k == 0 a xor b is (a+b)%2 a xor b xor c is(a+b+c)%2 You can create equations modulo 2 that can be solved in o(n^3) -- You received this message because you are subscribed to the Google

[gcj] Operator=

2010-07-19 Thread Leopoldo Taravilse
Why when I try to search for operator= in Google it thinks I'm trying to search for operator? -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to this group, send email to google-c...@googlegroups.com. To unsubscribe from this group,

Re: [gcj] Mohamed Ghoneim wants to chat

2010-10-30 Thread Leopoldo Taravilse
Please Mohamed don't use this list for spamming. -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to this group, send email to google-c...@googlegroups.com. To unsubscribe from this group, send email to

Re: [gcj] Re: Proposed schedule for Code Jam 2011

2010-11-08 Thread Leopoldo Taravilse
It would be great to use TopCoder Arena! Come on guys! Learn C++! -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to this group, send email to google-c...@googlegroups.com. To unsubscribe from this group, send email to

Re: [gcj] Python tool to download input and submit outputs

2010-11-12 Thread Leopoldo Taravilse
Congratulations Jorge! (for starting working at Google) -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to this group, send email to google-c...@googlegroups.com. To unsubscribe from this group, send email to

[gcj] Codejam Registrants

2011-04-21 Thread Leopoldo Taravilse
Bartholomew or whoever is in charge of GCJ this year: Can you please keep us updated (until the qualification round finishes) on how many people is registered for GCJ? It would be great to know that since GCJ isn't like TCO that has a list of registered people that includes people who then never

Re: [gcj] Can I enter my shipping information later?

2011-04-26 Thread Leopoldo Taravilse
Why don't you supply it now? On Tue, Apr 26, 2011 at 8:57 AM, Stonos sto...@gmail.com wrote: Hey, If I don't supply my shipping information during registration, will I be asked to enter it again if I win a T-Shirt? Thanks! -- You received this message because you are subscribed to the

Re: [gcj] Re: Can I enter my shipping information later?

2011-04-27 Thread Leopoldo Taravilse
It's pretty harder.. you have to be at the top 500 for the T-shirt if it's like the past two years. -- 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

Re: [gcj] Re: Can I enter my shipping information later?

2011-04-28 Thread Leopoldo Taravilse
+1000 :D On Thu, Apr 28, 2011 at 3:19 AM, Bartholomew Furrow fur...@gmail.comwrote: Top 1000 this year for a shirt, actually. On Wed, Apr 27, 2011 at 8:34 AM, Leopoldo Taravilse ltaravi...@gmail.comwrote: It's pretty harder.. you have to be at the top 500 for the T-shirt if it's like

Re: [gcj] Registration: residents of Italy

2011-05-07 Thread Leopoldo Taravilse
Why can't Italians receive prizes? -- 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 google-code+unsubscr...@googlegroups.com. For

[gcj] Re: Codejam Registrants

2011-05-07 Thread Leopoldo Taravilse
Can you tell us now how many people registered for the GCJ? -- 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] About output of problem D

2011-05-08 Thread Leopoldo Taravilse
For not giving hints about the fact that the answer is always an integer. -- 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: Codejam Registrants

2011-05-08 Thread Leopoldo Taravilse
I suspected that a lot of people singed up but if for example you tell me that 100.000 people registered I can be surprised that 1 of each 60.000 people in the world registered for CodeJam and that's an awesome stat. -- You received this message because you are subscribed to the Google Groups

Re: [gcj] Re: fast and furious

2011-05-08 Thread Leopoldo Taravilse
I heard that someone mentioned something about 5 minutes for each problem. People who solves all 4 problems in 40 minutes solve small and large with the same code, they don't solve first small and then find out how to solve large. -- You received this message because you are subscribed to the

Re: [gcj] Re: fast and furious

2011-05-09 Thread Leopoldo Taravilse
I don't agree that being a professional programmer for many years can help you be a better coder at a programming contest. I think that the only way of being good at programming contests is practicing and participating in contests. For those who know TopCoder, last year I solved a lot of problems

Re: [gcj] SubSet Program

2011-05-09 Thread Leopoldo Taravilse
This is a C++ implementation assuming that vectorint numbersOfTheSet has the elements of the set sorted and your result will be each vector in vectorvectorint solution. If you want to solve it with sets instead of vector it's the same, you only have to copy the elements of the set to a vector and

[gcj] Possible reasons for failing Large Data Set

2011-05-09 Thread Leopoldo Taravilse
I'd like to make a discussion about possible reasons for failing the Large Data Set after passing the Small one for preventing people of making mistakes that lead to a time expired or a wrong answer for the Large input. Some possible reasons I have in mind: Time Limit: Your code is not so fast

Re: [gcj] Solution for Goro sort?

2011-05-10 Thread Leopoldo Taravilse
Can't we just keep only one discussion for this problem? -- 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] Matlab in qualification round

2011-05-10 Thread Leopoldo Taravilse
Why did you choose Matlab? I understand that linguo used Shakespeare for fun... but Matlab? -- 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

Re: [gcj] Re: Matlab in qualification round

2011-05-10 Thread Leopoldo Taravilse
I thought that Matlab was only for making graphics and that kind of things. Obviously I'm wrong. -- 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,

Re: [gcj] Set

2011-05-13 Thread Leopoldo Taravilse
Here's an example setint setint; // you create a set setint.insert(4); // you add 4 to the set in o(log n) where n is the number of elements of the set setint.insert(5); // you add 5 to the set setint.insert(4); // nothing happens because 4 is already in the set if(setint.find(4)) cout 4 is in

Re: [gcj] Set

2011-05-13 Thread Leopoldo Taravilse
I'm really sorry, my mistake. I always get a compile error while I write .find and I never remember the correct way of how it works. On Fri, May 13, 2011 at 2:20 PM, Axel Freyn axel.fr...@gmail.com wrote: Just a small remark: On Fri, May 13, 2011 at 6:56 PM, Leopoldo Taravilse ltaravi

[gcj] Pseudominion

2011-05-21 Thread Leopoldo Taravilse
I couldn't find why my code failed. Can anyone please help me find my bug? Thanks in advance. #includealgorithm #includecmath #includefstream #includeiomanip #includeiostream #includemap #includequeue #includeset #includesstream #includestack #includevector using namespace std; #define

[gcj] Re: Pseudominion

2011-05-21 Thread Leopoldo Taravilse
(I'm sorry if you received this mail twice, but yesterday this mailing list was closed when I sent it and I don't know if it was finally sent) -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to this group, send email to

Re: [gcj] fast and furious

2011-05-22 Thread Leopoldo Taravilse
I don't know if I'm fast and furious but I can proudly say now that I solved the fastest problem in Round 1 (7:06 for Round 1A - Small) and I'm very happy about it! -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to this group, send

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] Re: IOI 2011

2011-05-24 Thread Leopoldo Taravilse
I thought the same than you at first but then I realized that some GCJ participants may go to IOI as team leaders or problem setters. On Tue, May 24, 2011 at 6:55 AM, Davi Costa daf...@gmail.com wrote: Correct me if I'm wrong but most IOI competitors are underaged, and you must be 18 to

Re: [gcj] Re: Round 1C 2010 - Load Test

2011-06-03 Thread Leopoldo Taravilse
I think that if you get a correct you cannot submit again on that problem. -- 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

[gcj] GCJ Ratings

2011-06-09 Thread Leopoldo Taravilse
Is is possible to use a rating formula similar to TC's one and calculate ratings of GCJ for the last 3 CodeJams? I think this can only be made by Google because if any user wants to do it he/she will need to know that ACRush and acrush are the same, bozzball and linguo are the same... and I don't

Re: [gcj] Memory and Time

2011-06-10 Thread Leopoldo Taravilse
That question shouldn't be asked during TCO's Marathon Match Round 2 as many participants of the TCO MM are in this list. It ends next Wednesday from that day on you can ask whatever you want about time measuring. -- You received this message because you are subscribed to the Google Groups

[gcj] Official Results

2011-06-10 Thread Leopoldo Taravilse
No official results yet. I think that people in positions 501, 502... that advanced to Round 3 because of disqualified coders may want to know about it before Round 3... -- You received this message because you are subscribed to the Google Groups google-codejam group. To post to this group,

Re: [gcj] problem on integers

2011-07-16 Thread Leopoldo Taravilse
You can solve it with no programming. a+b+c = 43 a^3 + b^3 + c^3 = 17299 As 17299 == 3 mod 4 then as a^3,b^3 and c^3 can be 0 or 1 mod 4 then a, b and c are odd. 27^3 17299 so a b c = 25 1^3 == 1 mod 5 2^3 == 3 mod 5 3^3 == 2 mod 5 4^3 == 4 mod 5 5^3 == 5 mod 5 (or 0^3 == 0 mod 5) So as

Re: [gcj] query

2011-08-09 Thread Leopoldo Taravilse
You don't need any certificate, your place in the contest will be published in http://code.google.com/codejam if anyone needs a proof that you're top 1000 you can just give him/her the link to the official standings. And your T-shirt can be a certificate ;) -- You received this message because

Re: [gcj] Factorial problem:-

2011-08-12 Thread Leopoldo Taravilse
0! is not 0, it's 1 -- 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 google-code+unsubscr...@googlegroups.com. For more options,

Re: [gcj]

2011-09-08 Thread Leopoldo Taravilse
GSoC = Google Summer of Code On Wed, Sep 7, 2011 at 11:32 PM, iman movahedi tiptop.bo...@gmail.comwrote: hi , GSoC ? you mean GCJ(google code jam) ? right ? before this , i have a suggestion : Topcoderhttp://community.topcoder.com/tc?module=ProblemArchive, CodeForces

Re: [gcj] Final Round - Rules

2012-05-06 Thread Leopoldo Taravilse
If you're good enough to be a finalist with 17 or younger you will probably be finalist many times after you turn 18 so don't worry. On Sat, Apr 14, 2012 at 12:33 PM, Matthew Brotzman matthewbr...@gmail.comwrote: ELIGIBILITY. This Contest is open to individuals who are 18 years of age or older

Re: [gcj] Code Jam site down

2013-04-14 Thread Leopoldo Taravilse
www.downforeveryoneorjustme.com On Sun, Apr 14, 2013 at 3:16 PM, Amir Hossein Sharifzadeh amirsharifza...@gmail.com wrote: Actually I don't know why! But yesterday I faced same problem during contest time and it really made me nervous. I had to switched on FireFox to continue. I think it

Re: [gcj] which IDE of c++ you are uesing?

2013-04-25 Thread Leopoldo Taravilse
I strongly recomend Geany for C++ On Thu, Apr 25, 2013 at 5:59 AM, Joseph Sakwa donsak...@gmail.com wrote: netbeans On Thu, Apr 25, 2013 at 4:51 AM, Jugesh Sundram jugeshsund...@gmail.comwrote: Makes sense. So basically what you are trying to say is you can't anymore Compile Run the

Re: [gcj] c++ ide for windows

2013-05-03 Thread Leopoldo Taravilse
http://www.geany.org/ I recommend to use Geany On Sun, Apr 28, 2013 at 11:44 AM, Rajeshwar Rudra rajeshwar1...@gmail.comwrote: which is the best c++ IDE for windows? And also the link to download that IDE? -- You received this message because you are subscribed to the Google Groups Google

Re: [gcj] Re: Next time offer t-shirts to top 999 and everyone tied with 1000-th place.

2013-06-02 Thread Leopoldo Taravilse
There was only one person in place 1000, 1001 had worst penalty. On Sun, Jun 2, 2013 at 9:07 AM, Alex Essilfie fale...@gmail.com wrote: I think this is a good idea. Vexorian wrote: Just saying' :) -- You received this message because you are subscribed to the Google Groups Google Code

Re: [gcj] Maintaining Max/Min Heap to get a sorted array

2014-03-28 Thread Leopoldo Taravilse
http://en.wikipedia.org/wiki/Heapsort On Thu, Mar 27, 2014 at 4:32 PM, vivek dhiman vivek4dhi...@gmail.comwrote: hmm. Last one did the trick. But i hold the value of required element always in a separate variable and manipulate min and max as required. //--- while i maxElems:

Re: [gcj] Magic Trick problem mistake (?)

2014-04-13 Thread Leopoldo Taravilse
The problem statement is very clear on when he is a bad magician. From the problem statement: If there are multiple cards the volunteer could have chosen, y should be Bad magician! So it doesn't matter if in real life that would be a bad magician. In the problem it's only a bad magician only in

Re: [gcj] Re: Minesweeper problem

2014-04-14 Thread Leopoldo Taravilse
was the trickiest for me too, had 2 failed checks until I got it right (my problem was that I considered things like 1 3 2 as impossible, although it should be c**). Dne pondělí, 14. dubna 2014 15:58:49 UTC+2 Leopoldo Taravilse napsal(a): I also couldn't solve this problem (I calculated by brute

Re: [gcj] Minesweeper Master judge

2014-04-15 Thread Leopoldo Taravilse
Is it possible that a non accepted solution is correct? Thanks, Leo.- On Mon, Apr 14, 2014 at 7:11 PM, Bartholomew Furrow fur...@gmail.comwrote: Hi All, I'm sending this email because there was a minor irregularity in the Qualification Round, and it's important to us that we're open about

Re: [gcj] Re: There should be a way to connect with other participants

2014-04-16 Thread Leopoldo Taravilse
Linking participants profiles to Google+ profile has two main problems: 1) It violates the participants privacy unless they're asked to authorize it. 2) Nobody uses Google+ On Tue, Apr 15, 2014 at 4:40 PM, Shuaib shu...@bytehood.com wrote: True that. I think it would be easy to link names in

Re: [gcj] which website to use for generating outputs in large data set problem?

2014-04-22 Thread Leopoldo Taravilse
You don't need to use a website, you need to use a program written by yourself in any programming language. On Tue, Apr 22, 2014 at 9:36 AM, Yash Srivastava yash321...@gmail.comwrote: which website to use for generating outputs in large data set problem? -- You received this message because

[gcj] Proper Shuffle - Great problem

2014-04-25 Thread Leopoldo Taravilse
Thanks Google for giving us again a great problem as Proper Shuffle was! It was an excelent problem! I really enjoyed solving it besides my 6 wrong tries! -- You received this message because you are subscribed to the Google Groups Google Code Jam group. To unsubscribe from this group and stop

Re: [gcj] Proposed 2015 Code Jam Schedule

2014-10-16 Thread Leopoldo Taravilse
Round 1C conflicts with ACM ICPC World Finals that start on the previous day. On Fri, Oct 10, 2014 at 3:27 PM, 'Google Code Jam' via Google Code Jam google-code@googlegroups.com wrote: Hi All, We're close to announcing the 2015 Code Jam schedule! But we want your feedback first. Here is the

Re: [gcj] Proposed 2015 Code Jam Schedule

2014-11-06 Thread Leopoldo Taravilse
schedule. Best, Leo.- On Thu, Oct 16, 2014 at 1:47 PM, Leopoldo Taravilse ltaravi...@gmail.com wrote: Round 1C conflicts with ACM ICPC World Finals that start on the previous day. On Fri, Oct 10, 2014 at 3:27 PM, 'Google Code Jam' via Google Code Jam google-code@googlegroups.com wrote: Hi

Re: [gcj] Code Jam 2015 Dates and Location Announced!

2014-12-01 Thread Leopoldo Taravilse
Google's Seattle, Washington office, home of the Space Needle and Nirvana! you forgot Jimi Hendrix!! Great news to have the schedule of the new GCJ! On Mon, Dec 1, 2014 at 8:36 PM, 'Google Code Jam' via Google Code Jam google-code@googlegroups.com wrote: Hi Everyone, In case you missed it

Re: [gcj] Any Practice Questions for Distributed CodeJam???

2015-04-25 Thread Leopoldo Taravilse
Emily, will you be able to add a problem for submitting as an example? Maybe after the three Rounds 1 finish you can have something for the Round 2 contestants. Best, Leo.- On Wed, Mar 25, 2015 at 8:18 PM, 'Emily Miller' via Google Code Jam google-code@googlegroups.com wrote: Apologies for

[gcj] Problem C - Mutexes

2015-06-14 Thread Leopoldo Taravilse
I know it's hard to read somebody else's code but I was the whole contest trying to solve problem C (mutexes) and I couldn't get more than a Wrong Answer. It was very hard for me as I couldn't compile locally so it was very hard to test but my last submission I thought was bugless and I couldn't

[gcj] Post-contest practice mode

2015-06-14 Thread Leopoldo Taravilse
It would be nice to have a 48 hour contest just for testing the problems we couldn't solve during the contest with the same problems to be able to know why we got wrong answers. Do you (admins) think it's possible? Thanks! Leo.- -- You received this message because you are subscribed to the

[gcj] Advice for next DCJ

2015-06-14 Thread Leopoldo Taravilse
It would be nice to be able to submit the exact same code for testing (problem A) so we can avoid compilation errors as it's very hard to test this codes locally. For example, if there's a problem called dummy_problem where I can call NumberOfPeople() and Height(i) for 0 = i NumberOfPeople(),

[gcj] Runtime Error on Sandwich (DCJ)

2015-06-12 Thread Leopoldo Taravilse
Hi everyone! I'm getting runtime error on my code for problem sandwich and I cannot test it on my local machine as I didn't figure out how to make the tester work on Windows 8 Here's my code, if anyone can tell me why is it giving me runtime error I'd appreciate it. I tried everything and it

[gcj] Re: Runtime Error on Sandwich (DCJ)

2015-06-12 Thread Leopoldo Taravilse
Nevermind I found my bug. On Fri, Jun 12, 2015 at 10:30 AM, Leopoldo Taravilse ltaravi...@gmail.com wrote: Hi everyone! I'm getting runtime error on my code for problem sandwich and I cannot test it on my local machine as I didn't figure out how to make the tester work on Windows 8 Here's