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 ...
Search found 125 matches
- Mon Jun 12, 2017 6:08 am
- Forum: Off Topic
- Topic: L19 Programming Problem Championship: Round 6 (Math)
- Replies: 8
- Views: 9477
- Wed Jun 07, 2017 4:35 am
- Forum: KGS
- Topic: The KGS is dead, long live the KGS ?
- Replies: 86
- Views: 67893
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 ...
- Tue Jun 06, 2017 8:38 am
- Forum: KGS
- Topic: The KGS is dead, long live the KGS ?
- Replies: 86
- Views: 67893
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 ...
KGS is still my "home". I've been ...
- 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.
- 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.
Unfortunately this time I had next to no time / energy to program.
- Thu Jun 01, 2017 7:57 am
- Forum: KGS
- Topic: The KGS is dead, long live the KGS ?
- Replies: 86
- Views: 67893
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.
At least there are some bots to play on KGS.
- 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...
- 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 ...
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 ...
- 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 ...
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 ...
- 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 ...
⋅ Maybe there is a trick with the input? Maybe there are 500 ...
- 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 ...
- Thu May 18, 2017 8:51 am
- Forum: Off Topic
- Topic: L19 Programming Problem Championship: Round 3 (Graphs)
- Replies: 65
- Views: 53005
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>>() ...
using System;
using System.Collections.Generic;
namespace BuildDependency
{
public class Program
{
public Dictionary<string, List<string>> ReverseRules = new Dictionary<string, List<string>>() ...
- 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 ...
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 ...
- Tue May 16, 2017 7:49 am
- Forum: Off Topic
- Topic: L19 Programming Problem Championship: Round 3 (Graphs)
- Replies: 65
- Views: 53005
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 ...
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 ...
- Mon May 15, 2017 9:11 am
- Forum: Off Topic
- Topic: L19 Programming Problem Championship: Round 3 (Graphs)
- Replies: 65
- Views: 53005
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 (strangely, because I didn't allocate anything in ...
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 (strangely, because I didn't allocate anything in ...