Search found 125 matches

by peti29
Mon Jun 12, 2017 6:08 am
Forum: Off Topic
Topic: L19 Programming Problem Championship: Round 6 (Math)
Replies: 8
Views: 9477

Re: L19 Programming Problem Championship: Round 6 (Math)

As always, thx for the round, Solomon!

B) I googled up a formula that had PI, E and lots of log10 in it, had no idea how it works, but apparently everyone else used the same here, so

D) I really enjoyed D. That's my level of math (shame or not). First I realized that in base 3 those sets consist ...
by peti29
Wed Jun 07, 2017 4:35 am
Forum: KGS
Topic: The KGS is dead, long live the KGS ?
Replies: 86
Views: 67882

Re: The KGS is dead, long live the KGS ?

OGS limits my choice of opponent I think that is a fantastic feature. When creating the game invite you can specify the range of ranks you're willing to play and no one else can even click on your game. There is no need to put "6-8k ranked, no ?" and the likes into the game description that way ...
by peti29
Tue Jun 06, 2017 8:38 am
Forum: KGS
Topic: The KGS is dead, long live the KGS ?
Replies: 86
Views: 67882

Re: The KGS is dead, long live the KGS ?

One thing to ponder could be OGS's default setting of no handicap. First it was strange but then the more I think about it the better choice it seems. It puts less emphasis on proper ranks (and given the inherent inaccuracy of ranking systems, that's a good thing).

KGS is still my "home". I've been ...
by peti29
Tue Jun 06, 2017 8:20 am
Forum: Off Topic
Topic: Music Recommendations
Replies: 11
Views: 13613

Re: Music Recommendations

Either my Spotify playlist or some hands up techno mix on Youtube - those are long enough that I don't have to interrupt my game to find a new track.
by peti29
Tue Jun 06, 2017 8:14 am
Forum: Off Topic
Topic: L19 Programming Problem Championship: Round 5 (I/O)
Replies: 12
Views: 12917

Re: L19 Programming Problem Championship: Round 5

Thanks for organizing the round!
Unfortunately this time I had next to no time / energy to program.
by peti29
Thu Jun 01, 2017 7:57 am
Forum: KGS
Topic: The KGS is dead, long live the KGS ?
Replies: 86
Views: 67882

Re: The KGS is dead, long live the KGS ?

It is hard to get a game... (I've rather played on OGS lately - but there ranks are like random)
At least there are some bots to play on KGS.
by peti29
Thu Jun 01, 2017 7:53 am
Forum: Off Topic
Topic: L19 Programming Problem Championship: Round 5 (I/O)
Replies: 12
Views: 12917

Re: L19 Programming Problem Championship: Round 5

Oh, I just saw this. Joined...
by peti29
Thu May 25, 2017 4:33 pm
Forum: Off Topic
Topic: How Alpha Go works
Replies: 3
Views: 7278

How Alpha Go works

It's been another longer break for me with Go, so I haven't been playing games or following anything Go related until recently.

But now I learned that Alpha Go has beaten Ke Jie a few days ago. And then when I watched some Nick Sibicky videos he kept referring to Alpha Go style... I got the feeling ...
by peti29
Mon May 22, 2017 7:38 am
Forum: Off Topic
Topic: L19 Programming Problem Championship: Round 4 (Japan)
Replies: 27
Views: 27276

Re: L19 Programming Problem Championship: Round 4

Thanks, Solomon, for arranging this round!

I regret not having much time this week. That overflow tricked me for quite some time in problem B. Then I wrote up a program to solve A - when I realized that I solved something completely different than what the problem was about . Then I couldn't think ...
by peti29
Fri May 19, 2017 5:29 pm
Forum: Off Topic
Topic: L19 Programming Problem Championship: Round 4 (Japan)
Replies: 27
Views: 27276

Re: L19 Programming Problem Championship: Round 4

Hm. This is the first time that I'm reasonably sure that my solution is correct, yet I get rejected with "wrong answer". I suspect that Problem B (Pachinko Probability) might be erroneous... (44% wrong answer can be a hint?)
⋅ Maybe there is a trick with the input? Maybe there are 500 ...
by peti29
Thu May 18, 2017 9:49 am
Forum: Off Topic
Topic: L19 Programming Problem Championship: Round 4 (Japan)
Replies: 27
Views: 27276

Re: L19 Programming Problem Championship: Round 4

I think that getting good at these programming competitions is just a skill to be learned. I played around with Google code jam before, but never really got into competitive programming that much. I think it's a useful skill, because both speed of development and small perf optimizations matter ...
by peti29
Thu May 18, 2017 8:51 am
Forum: Off Topic
Topic: L19 Programming Problem Championship: Round 3 (Graphs)
Replies: 65
Views: 53000

Re: L19 Programming Problem Championship: Round 3

My non-recursive C# solution for Building Dependencies if anyone is interested:
using System;
using System.Collections.Generic;

namespace BuildDependency
{
public class Program
{
public Dictionary<string, List<string>> ReverseRules = new Dictionary<string, List<string>>&#40;&#41 ...
by peti29
Thu May 18, 2017 8:46 am
Forum: Off Topic
Topic: L19 Programming Problem Championship: Round 4 (Japan)
Replies: 27
Views: 27276

Re: L19 Programming Problem Championship: Round 4

Yes. I myself was also considering withdrawing from these contests. But, "not today"!
The thing is, I have very limited free time. On the other hand though it really helps "unrusting" my brain!
(I finally managed to complete my iterative solution for Building Dependencies last night - I'll post it ...
by peti29
Tue May 16, 2017 7:49 am
Forum: Off Topic
Topic: L19 Programming Problem Championship: Round 3 (Graphs)
Replies: 65
Views: 53000

Re: L19 Programming Problem Championship: Round 3

Ah, and of course thx for arranging this round, Solomon!

What I did was I ported Solomon's Build Dependency solution to C# so that I better understand what's going on. I noticed two differences compared to what I tried: 1, I didn't map strings to indices and vice versa (I'm not sure if that's ...
by peti29
Mon May 15, 2017 9:11 am
Forum: Off Topic
Topic: L19 Programming Problem Championship: Round 3 (Graphs)
Replies: 65
Views: 53000

Re: L19 Programming Problem Championship: Round 3

This round has been a little bit bitter for me even though I got C for first try which was refreshing.
Maybe C# is at disadvantage after all?

The story of my solution for A:
First I implemented a naive recursive algorithm which hit memory limit &#40;strangely, because I didn't allocate anything in ...