Search found 63 matches

by ugoertz
Wed Sep 23, 2020 11:22 am
Forum: Computer Go
Topic: Go4go recent delivery import error Kombilo
Replies: 16
Views: 21169

Re: Go4go recent delivery import error Kombilo

Sorry for replying rather late.

I have received a few emails regarding this problem, and this issue was raised also on github. Even though the issue might be caused by the line mentioned above, I do not really understand that (and also, as was mentioned, it seems to be a Windows specific problem ...
by ugoertz
Wed Sep 27, 2017 10:45 am
Forum: Computer Go
Topic: Kombilo Virus warning Trojan:Win32/Vagger!rfn
Replies: 6
Views: 14483

Re: Kombilo Virus warning Trojan:Win32/Vagger!rfn

Today Windows Defender detected a trojan virus (Win32/Vagger!rfn) in the kombilo.exe

True threat or false positive?

Thanks for the notice.

I am very confident that this is a false positive, as far as the installer is concerned: I checked that the exe files which can be downloaded from u-go.net ...
by ugoertz
Sun Sep 24, 2017 11:27 am
Forum: Off Topic
Topic: L19 Programming Problem Championship: Round 11
Replies: 2
Views: 5359

Re: L19 Programming Problem Championship: Round 11

Thanks, Solomon, for setting up the contest! Problem C in particular was quite instructive for me, so I enjoyed it.

Best, Ulrich
by ugoertz
Sat Sep 02, 2017 4:25 am
Forum: Off Topic
Topic: L19 Programming Problem Championship: Round 10
Replies: 7
Views: 9426

Re: L19 Programming Problem Championship: Round 10

Congratulations to Ulrich for not only getting all 6, but for getting 5/6 in 1 try! I would be even more impressed if he passed all the test cases with Python :).

Thanks, Solomon, and thanks for setting up the contest! Yes, I did all of it in Python - the problems this time had a sufficiently ...
by ugoertz
Sat Aug 19, 2017 8:10 am
Forum: Off Topic
Topic: L19 Programming Problem Championship: Round 9
Replies: 8
Views: 10474

Re: L19 Programming Problem Championship: Round 9

Thanks, Solomon, for taking up the contests again. I agree the week-long format is a good idea.

So now I'm curious how Ulrich solved problem D...

The basic idea was the following: Assume for simplicity that all numbers in the given sequence are different. Then given a query, i.e., an interval ...
by ugoertz
Mon Jun 19, 2017 8:45 am
Forum: Off Topic
Topic: L19 Programming Problem Championship: Round 7 (Palindromes)
Replies: 11
Views: 11985

Re: L19 Programming Problem Championship: Round 7 (Palindrom

Thanks, Solomon, for setting up the contest!

As to my solutions, I do not have much to add to what Bernd said - for A, B, C, and F, I did roughly the same as he described. I did not spend much time on D, it also looked like a graph theory problem to me, with the edges encoding that two entries are ...
by ugoertz
Mon Jun 12, 2017 8:00 am
Forum: Off Topic
Topic: L19 Programming Problem Championship: Round 6 (Math)
Replies: 8
Views: 9486

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


A. Taking a difference in the final step, it is enough to compute the number of zeros needed to write down all numbers from 0 to n. To do this, I computed how often the i-th digit is a 0, for all i. This is quite easy: Say n = 12345, then for the 5th digit we get 1235, for the 4th digit we get ...
by ugoertz
Mon Jun 12, 2017 3:34 am
Forum: Off Topic
Topic: L19 Programming Problem Championship: Round 6 (Math)
Replies: 8
Views: 9486

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

Thanks, Solomon, for setting up the contest! Here are some thoughts on my solutions:

A. Taking a difference in the final step, it is enough to compute the number of zeros needed to write down all numbers from 0 to n. To do this, I computed how often the i-th digit is a 0, for all i. This is quite ...
by ugoertz
Tue Jun 06, 2017 10:39 am
Forum: Off Topic
Topic: L19 Programming Problem Championship: Round 5 (I/O)
Replies: 12
Views: 12955

Re: L19 Programming Problem Championship: Round 5

(Would you mind posting your solution, Solomon?
from sys import ...

Thanks! That's interesting, and I can see some points where this is faster than my solution ... but I guess I would have to create a large test case in order to see which of the differences really matters. (E.g., it is not ...
by ugoertz
Mon Jun 05, 2017 1:29 am
Forum: Off Topic
Topic: L19 Programming Problem Championship: Round 5 (I/O)
Replies: 12
Views: 12955

Re: L19 Programming Problem Championship: Round 5

Thanks, Solomon, for setting up the contest!

This time, I found A, B, C pretty much straightforward. With D I had some problems to meet the time restrictions. (Would you mind posting your solution, Solomon? Since it is more than twice as fast as mine it would be interesting to compare. Form ...
by ugoertz
Mon May 22, 2017 1:24 am
Forum: Off Topic
Topic: L19 Programming Problem Championship: Round 4 (Japan)
Replies: 27
Views: 27344

Re: L19 Programming Problem Championship: Round 4

Thanks, Solomon, for setting up the contest!

Some thoughts about the problems:

Problem A: Viewing the people as vertices of a graph, with an edge connecting those whose paths cross, the problem is to find the maximal length of a clique. My first tries did that without taking the special form of ...
by ugoertz
Tue May 16, 2017 2:39 am
Forum: Off Topic
Topic: L19 Programming Problem Championship: Round 3 (Graphs)
Replies: 65
Views: 53157

Re: L19 Programming Problem Championship: Round 3

Still puzzled how to get near the top in Power Strings.

I would guess that checking for prime divisors of the string length, and continuing with the initial piece of the string in the case of a hit, should be pretty fast. To save time, one should compute the list of primes only as far as required ...
by ugoertz
Mon May 15, 2017 9:22 am
Forum: Off Topic
Topic: L19 Programming Problem Championship: Round 3 (Graphs)
Replies: 65
Views: 53157

Re: L19 Programming Problem Championship: Round 3

Thanks, Solomon, for setting up another contest.

I liked the problems since for all of them there were enough sucessful submissions, also in Python, to prove that hitting the time limit means that the choice of algorithm is not ideal. (Although maybe true, this was not as obvious for the second ...
by ugoertz
Sun May 14, 2017 2:56 am
Forum: Off Topic
Topic: L19 Programming Problem Championship: Round 3 (Graphs)
Replies: 65
Views: 53157

Re: L19 Programming Problem Championship: Round 3

jeromie wrote:I seem to be having an odd problem parsing the file in problem F.
I had a similar problem until I noticed that the description says "The input for each room consists of one or more lines containing:".

Best regards,

Ulrich
by ugoertz
Mon May 08, 2017 8:13 am
Forum: Off Topic
Topic: L19 Programming Problem Championship: Round 2 (Strings)
Replies: 53
Views: 42476

Re: L19 Programming Problem Championship: Round 2

For the curious, I put my solutions/attempts on github: https://github.com/ugoertz/l19contest. Comments welcome!

I was thinking of doing something like this after the first round, but decided against it - having the solutions googleable kind of breaks the concept of contest web sites.

I was ...