Sealeopard
(KiX Master)
2007-10-06 03:48 AM
KiXgolf: Linear Pachinko - Private Round

=============
The Challenge: Linear Pachinko
=============


This problem is inspired by Pachinko, a popular game in Japan. A traditional Pachinko machine is a cross between a vertical pinball machine and a slot machine. The player launches small steel balls to the top of the machine using a plunger as in pinball. A ball drops through a maze of pins that deflect the ball, and eventually the ball either exits at a hole in the bottom and is lost, or lands in one of many gates scattered throughout the machine which reward the player with more balls in varying amounts. Players who collect enough balls can trade them in for prizes.

For the purposes of this problem, a linear Pachinko machine is a sequence of one or more of the following: holes ("."), floor tiles ("_"), walls ("|"), and mountains ("/\"). A wall or mountain will never be adjacent to another wall or mountain. To play the game, a ball is dropped at random over some character within a machine. A ball dropped into a hole falls through. A ball dropped onto a floor tile stops immediately. A ball dropped onto the left side of a mountain rolls to the left across any number of consecutive floor tiles until it falls into a hole, falls off the left end of the machine, or stops by hitting a wall or mountain. A ball dropped onto the right side of a mountain behaves similarly. A ball dropped onto a wall behaves as if it were dropped onto the left or right side of a mountain, with a 50% chance for each. If a ball is dropped at random over the machine, with all starting positions being equally likely, what is the probability that the ball will fall either through a hole or off an end?

For example, consider the following machine, where the numbers just indicate character positions and are not part of the machine itself:

 Code:
123456789
/\.|__/\.

The probabilities that a ball will fall through a hole or off the end of the machine are as follows, by position: 1=100%, 2=100%, 3=100%, 4=50%, 5=0%, 6=0%, 7=0%, 8=100%, 9=100%. The combined probability for the whole machine is just the average, which is approximately 61.111%.


A download is available at http://s91376351.onlinehome.us/kixtart/kixgolf_lp.zip

=============
Inputs & Outputs
=============


Input: The input consists of a linear Pachinko machines, 1–99 characters long

Output: For each machine, compute as accurately as possible the probability that a ball will fall through a hole or off the end when dropped at random, then output that percentage truncated to an integer by dropping any fractional part.

=======
Scoring
=======


The solution must pass all tests in order for it's KiXgolf Score to be considered.

When posting KiXtart Golf Scores, please include the KIXGOLF_*.TXT file that is created in the script directory. It contains some basic information about the computer that the script is run on and the resulting scores.

============
Test program
============


Test cases are provided to help screen entries and to provide the Golf Score.
Any script that passes the test cases can be submitted. If you are surprised that your solution passed the test cases, please submit it anyway! That will help me identify bugs in the test program.

================================================================
KiXtart GOLF - How To Play
================================================================


Most importantly, anybody can play, no age restrictions, no penalties, no handicap!

The object in "real" golf is to hit the ball in the hole in the fewest strokes. The object in KiXtart Golf is to get from input (tee) to target (hole) in the fewest keystrokes.

Example: How many positive elements are in array $a?

Array $a could be of structure $a=[1, 2 ,-3, 4, -5, -7, 8, 9]

One approach:
 Code:
for $b=0 to ubound($a)
  if $a[$b]>0
    $c=$c+1
  endif
next

for a score of 45.

Another solution is:
 Code:
DO
  $b=$b+1
  if $a[$b]>0
    $c=$c+1
  endif
UNTIL $b>(UBOUND($a)+1)

for a score of 53.

Better approach: Code sample 1

================================================================
KiXtart GOLF - The Rules
================================================================


1) The goal of KiXtart Golf is to score the lowest strokes.
2) Strokes are all characters in a piece of code except whitespace characters, unless the whitespace character is necessary for the line of code to work. Therefore, carriage returns and line feeds do not count or spaces in between the '=' sign when assigning variables, e.g. '$a = $b' scores 5.
3) Code can be constructed any way you like, as long as it does not generate syntax or other errors when running the script in KiXtart.
4) The final solution MUST pass all test scripts that are part of the KiXtart golf challenge.
7) During the private coding phase, no code is allowed to be posted. Violations result in disqualification of said player.
8) During the public coding phase, code should be posted, reused, and borrowed from other players.
9) The test script contains the official KiXgolf scoring engine
10) Only the person posting a particular score will be recognized for the score, unless the KiXtart Golf Challenge organizer or another delegate posts code on behalf of a player
11) KiXtart Golf (a.k.a KiXgolf) codes must be written inside the KiXgolf UDF collection tags, ';!' and ';!;!'
12) Parameter names of the UDF's can be changed and additional optional parameters can be added.
13) Additional helper UDFs can be written as long as they reside inside the ';!' and ';!;!' tags.
14) The use of '$' as a variable is allowed.
15) The UDF layout is up to coder.
16) The UDF is expected to finish in a reasonable time, that is, on modern computers inside 1 hour timeframe.
17) You can submit scores as often as you want.
18) If you reach leading score, you are obligated to post your score immediately so others can try to compete with you.
19) The UDF may only use the KiXtart/KiXforms commands/functions/macros, no other code fragments are allowed.
20) Calls to COM components that are part of a standard default Windows installation are allowed.
21) The use of the KiXforms DLL is also permitted as the KiXforms DLL can now be considered an integral part of KiXtart scripting.
22) Calls to other executables, as long as they are part of a standard default Windows installation are allowed.
23) The UDF should be self-contained (except for any I/O mentioned in the challenge). In particular, you may not do things like fetching extra data from a remote site or file.
24) You may assume ASCII as character set.
25) You may use block comments as the KiXgolf Scoring Engine now supports block comments.
26) You are allowed to only use publicly available versions of KiXtart and KiXforms, private builds or alpha builds are NOT allowed.
27) Your submitted score must include the result print of the KiXgolf test-engine.
28) The SETOPTION() parameters in the KiXgolf script may not be modified and will govern the script behavior. SETOPTION() parameters may change depending on the particular needs of the KiXgolf challenge.
29) Tokenizing the UDF, script, or portions thereof is not allowed.
30) If something is not explicitly denied by the rules, it's allowed.
31) If Confusion arises, arranger of the KiXgolf round has the final say.
32) Additional test cases can be added during the private round by submitting a proposal for a new test case to the BBS. The proposed test case becomes official once it has been added to the existing test cases and the KiXgolf package has been reposted for download. If new test cases are added within 12 hours of private round end the private round will extend by an additional 24 hours. The public round will then start one day later and also end one day later. Not additional test cases will be added during the public round.


================================================================
KiXtart GOLF - The Duration of the Competition
================================================================


1) Private coding phase: From date/time of posting the tournament challenge to October 10 6pm EST (BBS+6 time)

2) Public coding phase: From October 10 6EST (BBS+6 time) to October 14 6pm EST (BBS+6 time)

3) Final results: October 15 11pm EST (BBS+6 time)

You will need the complete package from http://s91376351.onlinehome.us/kixtart/kixgolf_lp.zip.


Sealeopard
(KiX Master)
2007-10-06 04:22 AM
Re: KiXgolf: Linear Pachinko - Private Round

Anybody playing already?

Benny69
(MM club member)
2007-10-06 05:13 AM
Re: KiXgolf: Linear Pachinko - Private Round

Yup

Benny69
(MM club member)
2007-10-06 06:44 AM
Re: KiXgolf: Linear Pachinko - Private Round

its a pig but:

Running Test 1...Done
Running Test 2...Done
Running Test 3...Done
Running Test 4...Done
Running Test 5...Done
Running Test 6...Done
Running Test 7...Done
Running Test 8...Done
Running Test 9...Done
Your solution passed all tests

Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/05 23:44:55.092
Processing End = 2007/10/05 23:44:55.123
Duration = 0000/00/00 00:00:00.031
KiXGolf Score = 588

Thank you for participating in KiXtart Golf!
Press any key to continue...


NTDOCAdministrator
(KiX Master)
2007-10-06 06:49 AM
Re: KiXgolf: Linear Pachinko - Private Round

Great work Benny - dang - you're just too frickn good at this all this KiX stuff. Congrats on first post points

Benny69
(MM club member)
2007-10-06 07:02 AM
Re: KiXgolf: Linear Pachinko - Private Round

thanks doc,
ok a little better, but still a pig:

Running Test 1...Done
Running Test 2...Done
Running Test 3...Done
Running Test 4...Done
Running Test 5...Done
Running Test 6...Done
Running Test 7...Done
Running Test 8...Done
Running Test 9...Done
Your solution passed all tests

Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/06 00:02:00.962
Processing End = 2007/10/06 00:02:00.993
Duration = 0000/00/00 00:00:00.030
KiXGolf Score = 478

Thank you for participating in KiXtart Golf!
Press any key to continue...


Benny69
(MM club member)
2007-10-06 07:17 AM
Re: KiXgolf: Linear Pachinko - Private Round

ok now we are making some progress:

Running Test 1...Done
Running Test 2...Done
Running Test 3...Done
Running Test 4...Done
Running Test 5...Done
Running Test 6...Done
Running Test 7...Done
Running Test 8...Done
Running Test 9...Done
Your solution passed all tests

Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/06 00:18:14.650
Processing End = 2007/10/06 00:18:14.681
Duration = 0000/00/00 00:00:00.030
KiXGolf Score = 369

Thank you for participating in KiXtart Golf!
Press any key to continue...


Gargoyle
(MM club member)
2007-10-06 08:52 AM
Re: KiXgolf: Linear Pachinko - Private Round

Not even half way, but I am on the board.... so to speak
 Code:

Your solution failed 5 of 9 tests.

KiXtart
KiXtart Version  = 4.51
KiXGolf Script   = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/05 23:51:24.515
Processing End   = 2007/10/05 23:51:24.546
Duration         = 0000/00/00 00:00:00.031
KiXGolf Score    = 770
 
Thank you for participating in KiXtart Golf!



Benny69
(MM club member)
2007-10-06 09:06 AM
Re: KiXgolf: Linear Pachinko - Private Round

good to see you in it Gar, i gota go to bed, gn

Gargoyle
(MM club member)
2007-10-06 09:07 AM
Re: KiXgolf: Linear Pachinko - Private Round

I am headed the same way (the wife is telling me so)

JochenAdministrator
(KiX Supporter)
2007-10-06 09:19 AM
Re: KiXgolf: Linear Pachinko - Private Round

Ahhh, nice, solid, and fast tee-off Dale.

I may be having really time this time from tuesday noon on \:o
Well, lets see what I can come up with in the short breaks til then.


Gargoyle
(MM club member)
2007-10-06 09:39 AM
Re: KiXgolf: Linear Pachinko - Private Round

Okay, had to at least get it working before bed... \:\)

 Code:

Your solution passed all tests

KiXtart
KiXtart Version  = 4.51
KiXGolf Script   = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/06 00:36:00.375
Processing End   = 2007/10/06 00:36:00.406
Duration         = 0000/00/00 00:00:00.030
KiXGolf Score    = 611
 
Thank you for participating in KiXtart Golf!


NTDOCAdministrator
(KiX Master)
2007-10-06 12:50 PM
Re: KiXgolf: Linear Pachinko - Private Round

Just an FYI you might be hampering your score possibly by using that version of KiX

KiXtart Version = 4.51


Mart
(KiX Supporter)
2007-10-06 01:56 PM
Re: KiXgolf: Linear Pachinko - Private Round

I think I sort of understand the challenge. Will get some groceries, start the washing machine and then see what I can get going.

Benny69
(MM club member)
2007-10-06 03:39 PM
Re: KiXgolf: Linear Pachinko - Private Round

way to go Gar, for this chalenge that is a pretty good first score

JochenAdministrator
(KiX Supporter)
2007-10-06 05:28 PM
Re: KiXgolf: Linear Pachinko - Private Round

first short break,

got the logic, but am far away from first approach. Back to work then \:\(


Gargoyle
(MM club member)
2007-10-06 05:30 PM
Re: KiXgolf: Linear Pachinko - Private Round


Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/06 08:27:56.500
Processing End = 2007/10/06 08:27:56.546
Duration = 0000/00/00 00:00:00.045
KiXGolf Score = 544

Thank you for participating in KiXtart Golf!


Benny69
(MM club member)
2007-10-06 05:42 PM
Re: KiXgolf: Linear Pachinko - Private Round

Dang Gar your code must be solid to be able to knock off 100, I better get back to it

JochenAdministrator
(KiX Supporter)
2007-10-06 08:56 PM
Re: KiXgolf: Linear Pachinko - Private Round

second short break from work ... pretty traditional approach, no fancy stuff, but hey it works.


Running Test 1...Done
Running Test 2...Done
Running Test 3...Done
Running Test 4...Done
Running Test 5...Done
Running Test 6...Done
Running Test 7...Done
Running Test 8...Done
Running Test 9...Done
Your solution passed all tests

Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/06 20:54:30.843
Processing End   = 2007/10/06 20:54:30.843
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 296

Thank you for participating in KiXtart Golf!




JochenAdministrator
(KiX Supporter)
2007-10-06 09:03 PM
Re: KiXgolf: Linear Pachinko - Private Round

btw, is version 4.53 still assumed official, since 4.60 has gone gold (With reported bugs though) ?

Benny69
(MM club member)
2007-10-06 09:06 PM
Re: KiXgolf: Linear Pachinko - Private Round

you dawg! ;\)

JochenAdministrator
(KiX Supporter)
2007-10-06 09:15 PM
Re: KiXgolf: Linear Pachinko - Private Round

thanx

JochenAdministrator
(KiX Supporter)
2007-10-06 09:36 PM
Re: KiXgolf: Linear Pachinko - Private Round

re-arranging vars...


Running Test 1...Done
Running Test 2...Done
Running Test 3...Done
Running Test 4...Done
Running Test 5...Done
Running Test 6...Done
Running Test 7...Done
Running Test 8...Done
Running Test 9...Done
Your solution passed all tests

Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/06 21:32:31.250
Processing End   = 2007/10/06 21:32:31.250
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 293

Thank you for participating in KiXtart Golf!





DrillSergeant
(MM club member)
2007-10-06 11:08 PM
Re: KiXgolf: Linear Pachinko - Private Round

This is my very first draft score... lots of room for optimization:

 Code:

Your solution passed all tests

KiXtart
KiXtart Version  = 4.52
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/06 23:06:34.093
Processing End   = 2007/10/06 23:06:34.109
Duration         = 0000/00/00 00:00:00.016
KiXGolf Score    = 444
 
Thank you for participating in KiXtart Golf!


Benny69
(MM club member)
2007-10-06 11:11 PM
Re: KiXgolf: Linear Pachinko - Private Round

Nice first score Roger \:\)

JochenAdministrator
(KiX Supporter)
2007-10-06 11:28 PM
Re: KiXgolf: Linear Pachinko - Private Round

and another 3 strokes... enough for today


Running Test 1...Done
Running Test 2...Done
Running Test 3...Done
Running Test 4...Done
Running Test 5...Done
Running Test 6...Done
Running Test 7...Done
Running Test 8...Done
Running Test 9...Done
Your solution passed all tests

Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/06 23:26:23.078
Processing End   = 2007/10/06 23:26:23.078
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 290

Thank you for participating in KiXtart Golf!




Benny69
(MM club member)
2007-10-06 11:29 PM
Re: KiXgolf: Linear Pachinko - Private Round

Jochen you Dawg! your gonna make me work for it arn't you

Benny69
(MM club member)
2007-10-06 11:34 PM
Re: KiXgolf: Linear Pachinko - Private Round

ok here is a few more:

Running Test 1...Done Result... 61
Running Test 2...Done Result... 53
Running Test 3...Done Result... 100
Running Test 4...Done Result... 0
Running Test 5...Done Result... 100
Running Test 6...Done Result... 50
Running Test 7...Done Result... 53
Running Test 8...Done Result... 10
Running Test 9...Done Result... 0
Your solution passed all tests

Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/06 16:34:02.072
Processing End = 2007/10/06 16:34:02.103
Duration = 0000/00/00 00:00:00.031
KiXGolf Score = 342

Thank you for participating in KiXtart Golf!
Press any key to continue...


Benny69
(MM club member)
2007-10-07 12:26 AM
Re: KiXgolf: Linear Pachinko - Private Round

now my head hurts:

Running Test 1...Done Result... 61
Running Test 2...Done Result... 53
Running Test 3...Done Result... 100
Running Test 4...Done Result... 0
Running Test 5...Done Result... 100
Running Test 6...Done Result... 50
Running Test 7...Done Result... 53
Running Test 8...Done Result... 10
Running Test 9...Done Result... 0
Your solution passed all tests

Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/06 17:25:11.956
Processing End = 2007/10/06 17:25:11.987
Duration = 0000/00/00 00:00:00.031
KiXGolf Score = 301

Thank you for participating in KiXtart Golf!
Press any key to continue...


DrillSergeant
(MM club member)
2007-10-07 12:59 AM
Re: KiXgolf: Linear Pachinko - Private Round

k, I'm off to bed, I'll check tomorrow to see who's closing in on the 200 :-)





Your solution passed all tests

KiXtart
KiXtart Version = 4.52
KiXGolf Script = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/07 00:57:15.937
Processing End = 2007/10/07 00:57:15.953
Duration = 0000/00/00 00:00:00.016
KiXGolf Score = 288


Thank you for participating in KiXtart Golf!




Nice turnup of players, btw. Good luck, y'all!



DrillSergeant
(MM club member)
2007-10-07 01:03 AM
Re: KiXgolf: Linear Pachinko - Private Round

forgot an unused var ;\)




Your solution passed all tests

KiXtart
KiXtart Version = 4.52
KiXGolf Script = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/07 01:02:12.406
Processing End = 2007/10/07 01:02:12.406
Duration = 0000/00/00 00:00:00.000
KiXGolf Score = 285

Thank you for participating in KiXtart Golf!




Benny69
(MM club member)
2007-10-07 01:07 AM
Re: KiXgolf: Linear Pachinko - Private Round

Dang Roger, let me lick my wounds from Jochen first ;\)

DrillSergeant
(MM club member)
2007-10-07 01:09 AM
Re: KiXgolf: Linear Pachinko - Private Round

added some golf-tricks



Your solution passed all tests

KiXtart
KiXtart Version = 4.52
KiXGolf Script = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/07 01:07:23.640
Processing End = 2007/10/07 01:07:23.640
Duration = 0000/00/00 00:00:00.000
KiXGolf Score = 272

Thank you for participating in KiXtart Golf!




DrillSergeant
(MM club member)
2007-10-07 01:10 AM
Re: KiXgolf: Linear Pachinko - Private Round

you want to lick jochen's wounds?



Benny69
(MM club member)
2007-10-07 01:11 AM
Re: KiXgolf: Linear Pachinko - Private Round

DOH! ;\)

DrillSergeant
(MM club member)
2007-10-07 01:16 AM
Re: KiXgolf: Linear Pachinko - Private Round

-k- I think I'll leave it at this for tonight and let you guys catch up first ;\)

Your solution passed all tests

KiXtart
KiXtart Version = 4.52
KiXGolf Script = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/07 01:14:02.218
Processing End = 2007/10/07 01:14:02.218
Duration = 0000/00/00 00:00:00.000
KiXGolf Score = <font color="red">268</font>

Thank you for participating in KiXtart Golf!


DrillSergeant
(MM club member)
2007-10-07 01:31 AM
Re: KiXgolf: Linear Pachinko - Private Round

Ok, one more, I wouldn't want to be accused of holding back scores ;\)


Your solution passed all tests

KiXtart
KiXtart Version = 4.52
KiXGolf Script = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/07 01:28:58.281
Processing End = 2007/10/07 01:28:58.281
Duration = 0000/00/00 00:00:00.000
KiXGolf Score = 239

Thank you for participating in KiXtart Golf!



DrillSergeant
(MM club member)
2007-10-07 01:39 AM
Re: KiXgolf: Linear Pachinko - Private Round

can't...stop...must...sleep...


Your solution passed all tests

KiXtart
KiXtart Version = 4.52
KiXGolf Script = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/07 01:39:07.156
Processing End = 2007/10/07 01:39:07.171
Duration = 0000/00/00 00:00:00.015
KiXGolf Score = 217

Thank you for participating in KiXtart Golf!


Sealeopard
(KiX Master)
2007-10-07 02:28 AM
Re: KiXgolf: Linear Pachinko - Private Round

 Quote:

Rule 26) You are allowed to only use publicly available versions of KiXtart and KiXforms, private builds or alpha builds are NOT allowed.

Thus, you can use 4.60 or 4.53 or 4.00 or whatever other 4.x version you dig out. Who knows, maybe one of the versions contains a bug/feature that shaves off characters that other versions don't have ;\)


JochenAdministrator
(KiX Supporter)
2007-10-07 08:38 AM
Re: KiXgolf: Linear Pachinko - Private Round

Wow,
nice start!

I knew this would happen as my approach IS very conventional ;\)
Er, what is with my wounds ? \:o


JochenAdministrator
(KiX Supporter)
2007-10-07 08:47 AM
Re: KiXgolf: Linear Pachinko - Private Round

anyway, back in the race...


Running Test 1...Done
Running Test 2...Done
Running Test 3...Done
Running Test 4...Done
Running Test 5...Done
Running Test 6...Done
Running Test 7...Done
Running Test 8...Done
Running Test 9...Done
Your solution passed all tests

Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/07 08:45:43.906
Processing End   = 2007/10/07 08:45:43.953
Duration         = 0000/00/00 00:00:00.047
KiXGolf Score    = 280

Thank you for participating in KiXtart Golf!



JochenAdministrator
(KiX Supporter)
2007-10-07 09:34 AM
Re: KiXgolf: Linear Pachinko - Private Round



Running Test 1...Done
Running Test 2...Done
Running Test 3...Done
Running Test 4...Done
Running Test 5...Done
Running Test 6...Done
Running Test 7...Done
Running Test 8...Done
Running Test 9...Done
Your solution passed all tests

Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/07 09:39:39.531
Processing End   = 2007/10/07 09:39:39.562
Duration         = 0000/00/00 00:00:00.030
KiXGolf Score    = 274

Thank you for participating in KiXtart Golf!



JochenAdministrator
(KiX Supporter)
2007-10-07 11:30 AM
Re: KiXgolf: Linear Pachinko - Private Round

pfft...


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/07 11:29:00.968
Processing End   = 2007/10/07 11:29:01.000
Duration         = 0000/00/00 00:00:00.031
KiXGolf Score    = 272

Thank you for participating in KiXtart Golf!



JochenAdministrator
(KiX Supporter)
2007-10-07 11:44 AM
Re: KiXgolf: Linear Pachinko - Private Round

Hah!


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/07 11:43:14.296
Processing End   = 2007/10/07 11:43:14.328
Duration         = 0000/00/00 00:00:00.031
KiXGolf Score    = 265

Thank you for participating in KiXtart Golf!



DrillSergeant
(MM club member)
2007-10-07 12:36 PM
Re: KiXgolf: Linear Pachinko - Private Round






Your solution passed all tests

KiXtart
KiXtart Version = 4.52
KiXGolf Script = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/07 12:36:03.593
Processing End = 2007/10/07 12:36:03.609
Duration = 0000/00/00 00:00:00.015
KiXGolf Score = 212

Thank you for participating in KiXtart Golf!




JochenAdministrator
(KiX Supporter)
2007-10-07 02:20 PM
Re: KiXgolf: Linear Pachinko - Private Round

Arrrgh

DrillSergeant
(MM club member)
2007-10-07 02:21 PM
Re: KiXgolf: Linear Pachinko - Private Round

broke 200 \:D






Your solution passed all tests

KiXtart
KiXtart Version = 4.52
KiXGolf Script = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/07 14:20:53.875
Processing End = 2007/10/07 14:20:53.890
Duration = 0000/00/00 00:00:00.014
KiXGolf Score = 198

Thank you for participating in KiXtart Golf!




JochenAdministrator
(KiX Supporter)
2007-10-07 02:23 PM
Re: KiXgolf: Linear Pachinko - Private Round

OMG!!!

Wow, congrats Rogier!
68 strokes to go for me then


DrillSergeant
(MM club member)
2007-10-07 02:57 PM
Re: KiXgolf: Linear Pachinko - Private Round

Gotta break with that traditional approach, Jochen ;\)

JochenAdministrator
(KiX Supporter)
2007-10-07 03:01 PM
Re: KiXgolf: Linear Pachinko - Private Round

Yup,

will have to start from scratch to go beyond the 200 frontier


DrillSergeant
(MM club member)
2007-10-07 03:53 PM
Re: KiXgolf: Linear Pachinko - Private Round






Your solution passed all tests

KiXtart
KiXtart Version = 4.52
KiXGolf Script = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/07 15:53:13.750
Processing End = 2007/10/07 15:53:13.765
Duration = 0000/00/00 00:00:00.014
KiXGolf Score = 190

Thank you for participating in KiXtart Golf!




DrillSergeant
(MM club member)
2007-10-07 04:53 PM
Re: KiXgolf: Linear Pachinko - Private Round






Your solution passed all tests

KiXtart
KiXtart Version = 4.52
KiXGolf Script = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/07 16:53:08.468
Processing End = 2007/10/07 16:53:08.468
Duration = 0000/00/00 00:00:00.000
KiXGolf Score = 188

Thank you for participating in KiXtart Golf!




DrillSergeant
(MM club member)
2007-10-07 05:17 PM
Re: KiXgolf: Linear Pachinko - Private Round

Current standing:
 Code:
DrillSergeant 188
Jochen        265
Benny69       301
Gargoyle      544


Gargoyle
(MM club member)
2007-10-07 08:11 PM
Re: KiXgolf: Linear Pachinko - Private Round

I must say that I must be doing things way to traditionally. Every time I find a way to reduce the code, I break it. And that was only go to get me to 410, still more than twice what Sarge has at this point.

Think that maybe my box is to big, and therefore I can't see the outside of it. \:\)


DrillSergeant
(MM club member)
2007-10-07 08:29 PM
Re: KiXgolf: Linear Pachinko - Private Round

Gargoyle,

Do not try and follow the ball... that's impossible. Instead only try to realize the truth: There is no ball. \:D


DrillSergeant
(MM club member)
2007-10-07 11:14 PM
Re: KiXgolf: Linear Pachinko - Private Round






Your solution passed all tests

KiXtart
KiXtart Version = 4.52
KiXGolf Script = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/07 23:14:13.187
Processing End = 2007/10/07 23:14:13.187
Duration = 0000/00/00 00:00:00.000
KiXGolf Score = 176

Thank you for participating in KiXtart Golf!




Sealeopard
(KiX Master)
2007-10-08 03:20 AM
Re: KiXgolf: Linear Pachinko - Private Round

Jeez, are we now getting into KiXgolf Zen:
 Quote:

Do not try and follow the ball... that's impossible. Instead only try to realize the truth: There is no ball

What's KiXgolf Zen Level 2 then?
"Do not follow the code...<breath in>...just realize there is no code...<breath out>...just random characters"


AllenAdministrator
(KiX Supporter)
2007-10-08 07:49 AM
Re: KiXgolf: Linear Pachinko - Private Round

A Participation point sounds good to me ... Out of time and not figuring this out... Good luck gents.

 Quote:

Your solution failed 4 of 9 tests.

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/08 01:41:23.912
Processing End = 2007/10/08 01:41:23.943
Duration = 0000/00/00 00:00:00.030
KiXGolf Score = 370

Thank you for participating in KiXtart Golf!


NTDOCAdministrator
(KiX Master)
2007-10-08 07:55 AM
Re: KiXgolf: Linear Pachinko - Private Round

So does failing 9 out of 9 count too ?

Mart
(KiX Supporter)
2007-10-08 09:21 AM
Re: KiXgolf: Linear Pachinko - Private Round

 Originally Posted By: NTDOC
So does failing 9 out of 9 count too ?


That's what I got.
Nothing that makes any sense running yet.

No time yesterday (d#mn those birthdays ) and now work started. Will start over tonight. I guess it’s going to be a monster of a script \:o


Mart
(KiX Supporter)
2007-10-08 09:22 AM
Re: KiXgolf: Linear Pachinko - Private Round

 Originally Posted By: Sealeopard
Jeez, are we now getting into KiXgolf Zen:
 Quote:

Do not try and follow the ball... that's impossible. Instead only try to realize the truth: There is no ball

What's KiXgolf Zen Level 2 then?
"Do not follow the code...<breath in>...just realize there is no code...<breath out>...just random characters"


LOL


AllenAdministrator
(KiX Supporter)
2007-10-08 10:20 AM
Re: KiXgolf: Linear Pachinko - Private Round

Damn, I have got to go to bed... 4:20am here... BUT must post before doing so! Finally!

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/08 04:14:40.675
Processing End = 2007/10/08 04:14:40.721
Duration = 0000/00/00 00:00:00.046
KiXGolf Score = 486

Thank you for participating in KiXtart Golf!


DrillSergeant
(MM club member)
2007-10-08 10:21 AM
Re: KiXgolf: Linear Pachinko - Private Round

 Originally Posted By: NTDOC
So does failing 9 out of 9 count too ?


Doc,

For a participation point, just the line:

$a=0

will give you only 7 of 9 failures \:\)


DrillSergeant
(MM club member)
2007-10-08 10:30 AM
Re: KiXgolf: Linear Pachinko - Private Round

 Originally Posted By: Sealeopard
Jeez, are we now getting into KiXgolf Zen:
 Quote:

Do not try and follow the ball... that's impossible. Instead only try to realize the truth: There is no ball

What's KiXgolf Zen Level 2 then?
"Do not follow the code...<breath in>...just realize there is no code...<breath out>...just random characters"


You get used to it. I don't even see the code. All I see is blonde, brunette, red-head.


JochenAdministrator
(KiX Supporter)
2007-10-08 10:41 AM
Re: KiXgolf: Linear Pachinko - Private Round

this one was a brunette...


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/08 10:38:30.359
Processing End   = 2007/10/08 10:38:30.406
Duration         = 0000/00/00 00:00:00.047
KiXGolf Score    = 260

Thank you for participating in KiXtart Golf!



JochenAdministrator
(KiX Supporter)
2007-10-08 10:58 AM
Re: KiXgolf: Linear Pachinko - Private Round

retracting a structural change no longer needed brings another 2 ...


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/08 10:52:04.406
Processing End   = 2007/10/08 10:52:04.453
Duration         = 0000/00/00 00:00:00.046
KiXGolf Score    = 258

Thank you for participating in KiXtart Golf!



Benny69
(MM club member)
2007-10-08 02:23 PM
Re: KiXgolf: Linear Pachinko - Private Round

Roger you are too funny "There is no Ball", HA!
I am amazed, you broke the 200 mark, and what is even more crazy, your times are zero! If I have any chance to catch up I am gonna have to re-think this all together.

Jochen you keep Roger busy and I will sneak up from behind and thump him on the head, with any luck he will forget how to play and start adding strokes to his code ;\)


JochenAdministrator
(KiX Supporter)
2007-10-08 02:29 PM
Re: KiXgolf: Linear Pachinko - Private Round

I'll try,

actually I am in the middle of an entirely new approach, including fancy undocumented features and a vast amount of voodoo magic... too bad I am over 200 with it as well \:o


[edit]
Crap, I wanted too keep my post #5000 for posting that 150 score


DrillSergeant
(MM club member)
2007-10-08 02:50 PM
Re: KiXgolf: Linear Pachinko - Private Round

* wakes up

* huh??? what was I doing?? Oh, yeah...

* HaHaHa, I'm leaving them all behind!!!


Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/08 11:14:21.875
Processing End = 2007/10/08 11:14:21.890
Duration = 0000/00/00 04:33:59.014
KiXGolf Score = 3176

Thank you for participating in KiXtart Golf!


JochenAdministrator
(KiX Supporter)
2007-10-08 02:52 PM
Re: KiXgolf: Linear Pachinko - Private Round

big fat ROFL

DrillSergeant
(MM club member)
2007-10-08 02:53 PM
Re: KiXgolf: Linear Pachinko - Private Round

Congrats Jochen!

You might be just 82 points behind me, I'm a whopping 4166 posts behind you!


DrillSergeant
(MM club member)
2007-10-08 03:13 PM
Re: KiXgolf: Linear Pachinko - Private Round

Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/08 15:13:45.562
Processing End = 2007/10/08 15:13:45.578
Duration = 0000/00/00 00:00:00.016
KiXGolf Score = 173

Thank you for participating in KiXtart Golf!


DrillSergeant
(MM club member)
2007-10-08 03:21 PM
Re: KiXgolf: Linear Pachinko - Private Round

Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/08 15:19:33.593
Processing End = 2007/10/08 15:19:33.609
Duration = 0000/00/00 00:00:00.015
KiXGolf Score = 171

Thank you for participating in KiXtart Golf!


Benny69
(MM club member)
2007-10-08 03:43 PM
Re: KiXgolf: Linear Pachinko - Private Round

OMG! ROFLMAO! Roger no one can acuse you of being a spoiled sport, this stuff makes this all the more fun, you guys are alright.

congrats Jochen on the 5k


JochenAdministrator
(KiX Supporter)
2007-10-08 04:52 PM
Re: KiXgolf: Linear Pachinko - Private Round

Now the brunette is gone left only random characters \:\(



Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/08 16:48:46.421
Processing End   = 2007/10/08 16:48:46.437
Duration         = 0000/00/00 00:00:00.015
KiXGolf Score    = 246

Thank you for participating in KiXtart Golf!



JochenAdministrator
(KiX Supporter)
2007-10-08 05:03 PM
Re: KiXgolf: Linear Pachinko - Private Round

Yay!

Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/08 17:00:26.609
Processing End   = 2007/10/08 17:00:26.625
Duration         = 0000/00/00 00:00:00.016
KiXGolf Score    = 242

Thank you for participating in KiXtart Golf!



AllenAdministrator
(KiX Supporter)
2007-10-08 05:07 PM
Re: KiXgolf: Linear Pachinko - Private Round

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/08 11:07:19.692
Processing End = 2007/10/08 11:07:19.801
Duration = 0000/00/00 00:00:00.108
KiXGolf Score = 357


DrillSergeant
(MM club member)
2007-10-08 05:16 PM
Re: KiXgolf: Linear Pachinko - Private Round

Nice one, Allen!

From 486 to 357 just after a night of sleep.


AllenAdministrator
(KiX Supporter)
2007-10-08 05:24 PM
Re: KiXgolf: Linear Pachinko - Private Round

Thanks Serg. Actually, I've only slept about 2 hours but I had to get up for a project I was working on. I am headed for a nap now, and maybe dream up some grand solution.

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/08 11:21:55.023
Processing End = 2007/10/08 11:21:55.055
Duration = 0000/00/00 00:00:00.031
KiXGolf Score = 350

Thank you for participating in KiXtart Golf!


DrillSergeant
(MM club member)
2007-10-08 05:43 PM
Re: KiXgolf: Linear Pachinko - Private Round

 Originally Posted By: Allen
Actually, I've only slept about 2 hours but I had to get up for a project I was working on.



Damn, with only two hours of sleep I wouldn't even know how to put my pants back on, let alone golf down 129 points. \:o


JochenAdministrator
(KiX Supporter)
2007-10-08 06:10 PM
Re: KiXgolf: Linear Pachinko - Private Round

Nice one Allen, now get a grip and slash off another 180 ;\)


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/08 18:08:02.125
Processing End   = 2007/10/08 18:08:02.125
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 234

Thank you for participating in KiXtart Golf!



JochenAdministrator
(KiX Supporter)
2007-10-08 06:53 PM
Re: KiXgolf: Linear Pachinko - Private Round



Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/08 18:52:26.421
Processing End   = 2007/10/08 18:52:26.421
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 225

Thank you for participating in KiXtart Golf!



DrillSergeant
(MM club member)
2007-10-08 07:23 PM
Re: KiXgolf: Linear Pachinko - Private Round

Damn Jochen, you're making pretty big jumps there. Should I be getting worried?


(I am, btw ;))


JochenAdministrator
(KiX Supporter)
2007-10-08 07:45 PM
Re: KiXgolf: Linear Pachinko - Private Round

Well, yes and no.

I gave up with the new approach and instead reworked my initial 'conventional' one. I was surprised how much there still was to shave. On the other side it will probably not go beneath 200. In the mean time it looks really like random characters


JochenAdministrator
(KiX Supporter)
2007-10-08 07:54 PM
Re: KiXgolf: Linear Pachinko - Private Round

Oh, btw...


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/08 19:50:33.765
Processing End   = 2007/10/08 19:50:33.765
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 221

Thank you for participating in KiXtart Golf!



JochenAdministrator
(KiX Supporter)
2007-10-08 08:00 PM
Re: KiXgolf: Linear Pachinko - Private Round

whoops, I forgot


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/08 19:58:58.843
Processing End   = 2007/10/08 19:58:58.843
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 220

Thank you for participating in KiXtart Golf!



DrillSergeant
(MM club member)
2007-10-08 08:08 PM
Re: KiXgolf: Linear Pachinko - Private Round

Starting to look like a blonde with a nice rack, jochen? \:\)

JochenAdministrator
(KiX Supporter)
2007-10-08 08:29 PM
Re: KiXgolf: Linear Pachinko - Private Round

rather a car accident, why?


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/08 20:19:31.359
Processing End   = 2007/10/08 20:19:31.359
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 219

Thank you for participating in KiXtart Golf!



AllenAdministrator
(KiX Supporter)
2007-10-08 09:20 PM
Re: KiXgolf: Linear Pachinko - Private Round

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/08 15:19:27.903
Processing End = 2007/10/08 15:19:27.934
Duration = 0000/00/00 00:00:00.031
KiXGolf Score = 334

Thank you for participating in KiXtart Golf!


JochenAdministrator
(KiX Supporter)
2007-10-08 09:50 PM
Re: KiXgolf: Linear Pachinko - Private Round

getting harder each stroke


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/08 21:49:17.468
Processing End   = 2007/10/08 21:49:17.468
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 217

Thank you for participating in KiXtart Golf!



JochenAdministrator
(KiX Supporter)
2007-10-08 09:57 PM
Re: KiXgolf: Linear Pachinko - Private Round

Now, this one was fun


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/08 21:54:23.484
Processing End   = 2007/10/08 21:54:23.484
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 208

Thank you for participating in KiXtart Golf!



DrillSergeant
(MM club member)
2007-10-08 10:09 PM
Re: KiXgolf: Linear Pachinko - Private Round

 Originally Posted By: Jochen
getting harder each stroke


ehm...


AllenAdministrator
(KiX Supporter)
2007-10-08 10:14 PM
Re: KiXgolf: Linear Pachinko - Private Round

 Quote:
getting harder each stroke


With all my bloat, (Right Now) I have no idea whay you guys are talking about.

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/08 16:11:41.682
Processing End = 2007/10/08 16:11:41.713
Duration = 0000/00/00 00:00:00.031
KiXGolf Score = 308

Thank you for participating in KiXtart Golf!


JochenAdministrator
(KiX Supporter)
2007-10-08 10:21 PM
Re: KiXgolf: Linear Pachinko - Private Round

Allen: Only 8 to go for 3rd place, only 101 to go for 2nd. Keep 'em coming.

Rogier: lol, didn't recognize the pitfall :p


AllenAdministrator
(KiX Supporter)
2007-10-08 10:34 PM
Re: KiXgolf: Linear Pachinko - Private Round

 Originally Posted By: Jochen
Allen: Only 8 to go for 3rd place, only 101 to go for 2nd. Keep 'em coming.


Hmmm, are you saying Rogier has nothing to worry about. ;\)


JochenAdministrator
(KiX Supporter)
2007-10-08 10:52 PM
Re: KiXgolf: Linear Pachinko - Private Round

Jooel maybe, but somehow he's missing in action?!

AllenAdministrator
(KiX Supporter)
2007-10-09 02:29 AM
Re: KiXgolf: Linear Pachinko - Private Round

Yawn.

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/08 20:27:20.474
Processing End = 2007/10/08 20:27:20.503
Duration = 0000/00/00 00:00:00.028
KiXGolf Score = 283

Thank you for participating in KiXtart Golf!


NTDOCAdministrator
(KiX Master)
2007-10-09 02:39 AM
Re: KiXgolf: Linear Pachinko - Private Round

LOL - Nice going there Allen. Glad to see you're getting it down good.

Sealeopard
(KiX Master)
2007-10-09 04:11 AM
Re: KiXgolf: Linear Pachinko - Private Round

Jooel just sent me an IM, he' still working on the bruenette but will have time for a hole-in-one shortly \:\)

Gargoyle
(MM club member)
2007-10-09 05:13 AM
Re: KiXgolf: Linear Pachinko - Private Round

And I am just going to sit here with my 544, and wait for the public round and see what other approaches there were. As I still see the ball.

AllenAdministrator
(KiX Supporter)
2007-10-09 05:23 AM
Re: KiXgolf: Linear Pachinko - Private Round

Take pride Gargs. You made a working solution, and personally, I think that is the hardest part sometimes. Just ask Doc what his score is ;\)

AllenAdministrator
(KiX Supporter)
2007-10-09 05:30 AM
Re: KiXgolf: Linear Pachinko - Private Round

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/08 23:31:25.720
Processing End = 2007/10/08 23:31:25.751
Duration = 0000/00/00 00:00:00.031
KiXGolf Score = 270

Thank you for participating in KiXtart Golf!


NTDOCAdministrator
(KiX Master)
2007-10-09 07:03 AM
Re: KiXgolf: Linear Pachinko - Private Round

 Originally Posted By: Allen
Just ask Doc what his score is ;\)


Terrible, I've only really tried one Golf and that was the Aztec counting one. Learned some neat stuff but without the help of Allen I would not have gotten off the ground.
Often I just don't seem to have the vision for this Golf stuff. I can code okay in general but I suppose without seeing the real life use, need, method I can't seem to get started so out of frustration I normally don't bother. i.e. If I can't get some useful results within like 20 minutes then I lose the drive to keep going on it as I find other things to occupy time on the computer.

So, congrats Garg I think you're doing a great job, just hang in there.


DrillSergeant
(MM club member)
2007-10-09 10:38 AM
Re: KiXgolf: Linear Pachinko - Private Round

Current Standings:

 Code:
Drillsergeant 171
Jochen        208
Allen         270
Benny         301
Gargoyle      544


DrillSergeant
(MM club member)
2007-10-09 12:24 PM
Re: KiXgolf: Linear Pachinko - Private Round


Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/09 12:23:51.718
Processing End = 2007/10/09 12:23:51.734
Duration = 0000/00/00 00:00:00.015
KiXGolf Score = 167

Thank you for participating in KiXtart Golf!


JochenAdministrator
(KiX Supporter)
2007-10-09 01:22 PM
Re: KiXgolf: Linear Pachinko - Private Round

I'm dying to see that code of yours Rogier \:\)

Well, now that my 70-290 exam is done (and passed), I may have my head free for some serious stroke-shaving


DrillSergeant
(MM club member)
2007-10-09 01:34 PM
Re: KiXgolf: Linear Pachinko - Private Round

Congratulations on your exam!

I'm going to get recertified soon too. My MCSE NT4 doesn't impress many people anymore ;\)


Benny69
(MM club member)
2007-10-09 01:45 PM
Re: KiXgolf: Linear Pachinko - Private Round

Dang! I go to work for just one day and now I feel like the kid left behind in the parking lot for school field trip.

DrillSergeant
(MM club member)
2007-10-09 01:47 PM
Re: KiXgolf: Linear Pachinko - Private Round

 Originally Posted By: Jochen
Well, now that my 70-290 exam is done (and passed), I may have my head free for some serious stroke-shaving


Better build up a bigger gap ;\)

Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/09 13:47:49.937
Processing End = 2007/10/09 13:47:49.953
Duration = 0000/00/00 00:00:00.016
KiXGolf Score = 163

Thank you for participating in KiXtart Golf!


JochenAdministrator
(KiX Supporter)
2007-10-09 02:07 PM
Re: KiXgolf: Linear Pachinko - Private Round

 Originally Posted By: DrillSergeant
My MCSE NT4 doesn't impress many people anymore ;\)


Same goes for mine \:\)

edit: Damn you did it again \:o 45 Strokes


DrillSergeant
(MM club member)
2007-10-09 02:18 PM
Re: KiXgolf: Linear Pachinko - Private Round

47 \:D


Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/09 14:17:57.218
Processing End = 2007/10/09 14:17:57.218
Duration = 0000/00/00 00:00:00.000
KiXGolf Score = 161

Thank you for participating in KiXtart Golf!


JochenAdministrator
(KiX Supporter)
2007-10-09 02:21 PM
Re: KiXgolf: Linear Pachinko - Private Round

I should learn to keep my mouth shut

DrillSergeant
(MM club member)
2007-10-09 02:23 PM
Re: KiXgolf: Linear Pachinko - Private Round

 Originally Posted By: Jochen
I should learn to keep my mouth shut


LOL!


AllenAdministrator
(KiX Supporter)
2007-10-09 08:33 PM
Re: KiXgolf: Linear Pachinko - Private Round

Since it's so quiet in here...

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/09 14:34:02.450
Processing End = 2007/10/09 14:34:02.481
Duration = 0000/00/00 00:00:00.031
KiXGolf Score = 260

Thank you for participating in KiXtart Golf!


NTDOCAdministrator
(KiX Master)
2007-10-09 09:33 PM
Re: KiXgolf: Linear Pachinko - Private Round

 Originally Posted By: DrillSergeant
Congratulations on your exam!

I'm going to get recertified soon too. My MCSE NT4 doesn't impress many people anymore ;\)



Congrats Jochen.

You too. Yeah my MCSE NT4 just doesn't seem to impress anyone either ;\)


NTDOCAdministrator
(KiX Master)
2007-10-09 09:34 PM
Re: KiXgolf: Linear Pachinko - Private Round

Quit holding back Allen. Just take the day off and slam some code down

DrillSergeant
(MM club member)
2007-10-10 01:07 PM
Re: KiXgolf: Linear Pachinko - Private Round

awfully quiet in here...

Jooel? Mart? Where are you guys???


Benny69
(MM club member)
2007-10-10 01:23 PM
Re: KiXgolf: Linear Pachinko - Private Round

still here just been work busy

JochenAdministrator
(KiX Supporter)
2007-10-10 01:50 PM
Re: KiXgolf: Linear Pachinko - Private Round

Arrgh, my new approach


Your solution failed 1 of 9 tests.

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/10 13:49:05.593
Processing End   = 2007/10/10 13:49:05.593
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 192

Thank you for participating in KiXtart Golf!



Mart
(KiX Supporter)
2007-10-10 03:00 PM
Re: KiXgolf: Linear Pachinko - Private Round

Sarg,

Quote from the shoutbox as a reply on Gargoyle.
 Quote:

Break the 500 barrier? I'd be happy to get something going that makes any sense. All I got is crap up until now.


And crap it is. Tried several different approaches but all crashed and burned killing all passengers and crew. I guess I'll wait for the public round all my stuff up until now leads nowhere and does not do what it should do.

I’m not sure but I suspect Jooel to be cooking up a 10 character stinker and post it like one minute before this round ends.


DrillSergeant
(MM club member)
2007-10-10 03:06 PM
Re: KiXgolf: Linear Pachinko - Private Round

But you should post at least one of your failure scores to get a participation point or else all your work would have been for nothing...

AllenAdministrator
(KiX Supporter)
2007-10-10 03:07 PM
Re: KiXgolf: Linear Pachinko - Private Round

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/10 09:08:37.510
Processing End = 2007/10/10 09:08:37.541
Duration = 0000/00/00 00:00:00.030
KiXGolf Score = 232

Thank you for participating in KiXtart Golf!


Mart
(KiX Supporter)
2007-10-10 03:12 PM
Re: KiXgolf: Linear Pachinko - Private Round

 Originally Posted By: DrillSergeant
But you should post at least one of your failure scores to get a participation point or else all your work would have been for nothing...


I'm ashamed to post my 1200 plus codes that is failing all tests

BTW: This is the first golf round that I tried to get a solution for. It’s just like dating don’t try to get to second or third base on the first date. Always start easy and relaxed \:\)


JochenAdministrator
(KiX Supporter)
2007-10-10 03:15 PM
Re: KiXgolf: Linear Pachinko - Private Round

Gawd,

Now that I have my 192 score script pass all tests, it seems to be constructed to fit the given cases.

If I change case 7 to this:

 Quote:

[Test 7]
Input=_|.|_|_|_|.|_
Output=38


it fails \:\(


Edit: My 208 score script is of course bullet proof


DrillSergeant
(MM club member)
2007-10-10 03:39 PM
Re: KiXgolf: Linear Pachinko - Private Round

 Originally Posted By: Jochen

If I change case 7 to this:

 Quote:

[Test 7]
Input=_|.|_|_|_|.|_
Output=38


it fails \:\(




Works fine for me \:\)


DrillSergeant
(MM club member)
2007-10-10 03:42 PM
Re: KiXgolf: Linear Pachinko - Private Round

 Originally Posted By: Mart

I'm ashamed to post my 1200 plus codes that is failing all tests


LOL, I understand that feeling \:\)


Benny69
(MM club member)
2007-10-10 03:45 PM
Re: KiXgolf: Linear Pachinko - Private Round

ok added Jochen's Test as Test 10

 Code:
[Test 1]
Input=/\.|__/\.
Output=61
[Test 2]
Input=_._/\_|.__/\./\_
Output=53
[Test 3]
Input=...
Output=100
[Test 4]
Input=___
Output=0
[Test 5]
Input=./\.
Output=100
[Test 6]
Input=_/\_
Output=50
[Test 7]
Input=_|.|_|.|_|.|_
Output=53
[Test 8]
Input=____|_____
Output=10
[Test 9]
Input=___________________________________________________________________________________________________
Output=0
[Test 10]
Input=_|.|_|_|_|.|_
Output=38


Running Test 1...Done Result... 61
Running Test 2...Done Result... 53
Running Test 3...Done Result... 100
Running Test 4...Done Result... 0
Running Test 5...Done Result... 100
Running Test 6...Done Result... 50
Running Test 7...Done Result... 53
Running Test 8...Done Result... 10
Running Test 9...Done Result... 0
Running Test 10...Done Result... 38
Your solution passed all tests

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/10 08:46:09.254
Processing End = 2007/10/10 08:46:09.301
Duration = 0000/00/00 00:00:00.046
KiXGolf Score = 294

Thank you for participating in KiXtart Golf!
Press any key to continue...


JochenAdministrator
(KiX Supporter)
2007-10-10 03:49 PM
Re: KiXgolf: Linear Pachinko - Private Round

 Originally Posted By: DrillSergeant
 Originally Posted By: Jochen

If I change case 7 to this:

 Quote:

[Test 7]
Input=_|.|_|_|_|.|_
Output=38


it fails \:\(




Works fine for me \:\)



It is sooo disturbing that you have managed this with 161 strokes \:o
I can't get a handling for 'walls' without 'hills' in my new approach,
still fails case 7 with in the mean time 189.


DrillSergeant
(MM club member)
2007-10-10 03:56 PM
Re: KiXgolf: Linear Pachinko - Private Round


Running Test 1...Done Result=61
Running Test 2...Done Result=53
Running Test 3...Done Result=100
Running Test 4...Done Result=0
Running Test 5...Done Result=100
Running Test 6...Done Result=50
Running Test 7...Done Result=53
Running Test 8...Done Result=10
Running Test 9...Done Result=0
Running Test 10...Done Result=38
Your solution passed all tests

Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/10 15:55:48.953
Processing End = 2007/10/10 15:55:48.968
Duration = 0000/00/00 00:00:00.014
KiXGolf Score = 161

Thank you for participating in KiXtart Golf!


JochenAdministrator
(KiX Supporter)
2007-10-10 04:04 PM
Re: KiXgolf: Linear Pachinko - Private Round

alright, just to verify that my scoring code is bullet proof:


Running Test 1...Done 61
Running Test 2...Done 53
Running Test 3...Done 100
Running Test 4...Done 0
Running Test 5...Done 100
Running Test 6...Done 50
Running Test 7...Done 53
Running Test 8...Done 10
Running Test 9...Done 0
Running Test 10...Done 38
Your solution passed all tests

Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/10 15:58:12.578
Processing End   = 2007/10/10 15:58:12.593
Duration         = 0000/00/00 00:00:00.014
KiXGolf Score    = 208

Thank you for participating in KiXtart Golf!



DrillSergeant
(MM club member)
2007-10-10 04:30 PM
Re: KiXgolf: Linear Pachinko - Private Round

Jochen,

If your 192 code works with the 'official' ini file, that's a valid score, so you can run with that, unless Jens will recognize the extra test as a nice addition in which case he can add it to the official ini.

If he will add it, it would be nice for you guys, because then the deadline will be moved to 24 hours later, which gives y'all more time to catch up. \:\)

Either way is no problem for me, so it's up to Jens I guess...


AllenAdministrator
(KiX Supporter)
2007-10-10 04:47 PM
Re: KiXgolf: Linear Pachinko - Private Round

Running Test 1... 61/61
Running Test 2... 53/53
Running Test 3... 100/100
Running Test 4... 0/0
Running Test 5... 100/100
Running Test 6... 50/50
Running Test 7... 53/53
Running Test 8... 10/10
Running Test 9... 0/0
Running Test 10... 38/38
Your solution passed all tests

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/10 10:46:52.413
Processing End = 2007/10/10 10:46:52.413
Duration = 0000/00/00 00:00:00.000
KiXGolf Score = 231

Thank you for participating in KiXtart Golf!


Sealeopard
(KiX Master)
2007-10-10 06:51 PM
Re: KiXgolf: Linear Pachinko - Private Round

This new 38% Test 10 will be added to the official package. The private round will be extended by 24 hours. A new official package will be posted once I'm home, which should be around 10pm EST.

JochenAdministrator
(KiX Supporter)
2007-10-10 06:59 PM
Re: KiXgolf: Linear Pachinko - Private Round

Well, this is bad news for me as my 2nd place seems to melt faster recently. But as the last extension was to my advantage I won't get grumpy about it

DrillSergeant
(MM club member)
2007-10-10 07:34 PM
Re: KiXgolf: Linear Pachinko - Private Round

 Originally Posted By: Jochen
Well, this is bad news for me as my 2nd place seems to melt faster recently. But as the last extension was to my advantage I won't get grumpy about it


and because you're the one that introduced it! ;\)


JochenAdministrator
(KiX Supporter)
2007-10-10 08:15 PM
Re: KiXgolf: Linear Pachinko - Private Round

Did I ?

JochenAdministrator
(KiX Supporter)
2007-10-10 08:32 PM
Re: KiXgolf: Linear Pachinko - Private Round

anyway \:D


Running Test 1...Done 61
Running Test 2...Done 53
Running Test 3...Done 100
Running Test 4...Done 0
Running Test 5...Done 100
Running Test 6...Done 50
Running Test 7...Done 53
Running Test 8...Done 10
Running Test 9...Done 0
Running Test 10...Done 38
Your solution passed all tests

Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/10 20:31:22.750
Processing End   = 2007/10/10 20:31:22.750
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 202

Thank you for participating in KiXtart Golf!



JochenAdministrator
(KiX Supporter)
2007-10-10 08:41 PM
Re: KiXgolf: Linear Pachinko - Private Round

FINALLY!!!! \:\)


Running Test 1...Done 61
Running Test 2...Done 53
Running Test 3...Done 100
Running Test 4...Done 0
Running Test 5...Done 100
Running Test 6...Done 50
Running Test 7...Done 53
Running Test 8...Done 10
Running Test 9...Done 0
Running Test 10...Done 38
Your solution passed all tests

Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/10 20:40:50.359
Processing End   = 2007/10/10 20:40:50.359
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 197

Thank you for participating in KiXtart Golf!



DrillSergeant
(MM club member)
2007-10-10 08:59 PM
Re: KiXgolf: Linear Pachinko - Private Round

congrats on the 200 border! \:\)

And without taking any duration time too! I guess you're on the same track as I am, so it's just a matter of time now...

Now, who should be grumpy about the extra 24 hours??? \:D


JochenAdministrator
(KiX Supporter)
2007-10-10 09:43 PM
Re: KiXgolf: Linear Pachinko - Private Round

Thanx, we may be not on the same tracks as I am back at my intial 'conventional' approach, which looks rather like a brunette than a car accident again


Running Test 1...Done 61
Running Test 2...Done 53
Running Test 3...Done 100
Running Test 4...Done 0
Running Test 5...Done 100
Running Test 6...Done 50
Running Test 7...Done 53
Running Test 8...Done 10
Running Test 9...Done 0
Running Test 10...Done 38
Your solution passed all tests

Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/10 21:38:42.859
Processing End   = 2007/10/10 21:38:42.859
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 192

Thank you for participating in KiXtart Golf!




DrillSergeant
(MM club member)
2007-10-10 09:50 PM
Re: KiXgolf: Linear Pachinko - Private Round



JochenAdministrator
(KiX Supporter)
2007-10-10 09:52 PM
Re: KiXgolf: Linear Pachinko - Private Round

Wow mate,

looks like a tranny to me


DrillSergeant
(MM club member)
2007-10-10 09:53 PM
Re: KiXgolf: Linear Pachinko - Private Round

LMAO

yeah, it's me on the weekends \:D


Gargoyle
(MM club member)
2007-10-11 12:00 AM
Re: KiXgolf: Linear Pachinko - Private Round

Well I finally broke the 500 mark

Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/10 14:57:11.562
Processing End = 2007/10/10 14:57:11.625
Duration = 0000/00/00 00:00:00.063
KiXGolf Score = 490

Thank you for participating in KiXtart Golf!


Benny69
(MM club member)
2007-10-11 12:07 AM
Re: KiXgolf: Linear Pachinko - Private Round

way to go Gar

Gargoyle
(MM club member)
2007-10-11 12:15 AM
Re: KiXgolf: Linear Pachinko - Private Round

Still don't know how to get rid of the other 300 strokes to win \:\)

Gargoyle
(MM club member)
2007-10-11 01:35 AM
Re: KiXgolf: Linear Pachinko - Private Round

Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/10 16:14:34.109
Processing End = 2007/10/10 16:14:34.171
Duration = 0000/00/00 00:00:00.062
KiXGolf Score = 481


Sealeopard
(KiX Master)
2007-10-11 04:20 AM
Re: KiXgolf: Linear Pachinko - Private Round

New package including the new test 10 has been posted. Private round deadline is now October 11 and public round deadline is now October 15.

JochenAdministrator
(KiX Supporter)
2007-10-11 09:03 AM
Re: KiXgolf: Linear Pachinko - Private Round



Running Test 1...Done 61
Running Test 2...Done 53
Running Test 3...Done 100
Running Test 4...Done 0
Running Test 5...Done 100
Running Test 6...Done 50
Running Test 7...Done 53
Running Test 8...Done 10
Running Test 9...Done 0
Running Test 10...Done 38
Your solution passed all tests

Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/11 09:00:48.671
Processing End   = 2007/10/11 09:00:48.671
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 190

Thank you for participating in KiXtart Golf!



JochenAdministrator
(KiX Supporter)
2007-10-11 09:14 AM
Re: KiXgolf: Linear Pachinko - Private Round



Running Test 1...Done 61
Running Test 2...Done 53
Running Test 3...Done 100
Running Test 4...Done 0
Running Test 5...Done 100
Running Test 6...Done 50
Running Test 7...Done 53
Running Test 8...Done 10
Running Test 9...Done 0
Running Test 10...Done 38
Your solution passed all tests

Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/11 09:11:24.734
Processing End   = 2007/10/11 09:11:24.734
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 186

Thank you for participating in KiXtart Golf!



JochenAdministrator
(KiX Supporter)
2007-10-11 09:21 AM
Re: KiXgolf: Linear Pachinko - Private Round

There is no spoon. So we can just leave the spoon code out


Running Test 1...Done 61
Running Test 2...Done 53
Running Test 3...Done 100
Running Test 4...Done 0
Running Test 5...Done 100
Running Test 6...Done 50
Running Test 7...Done 53
Running Test 8...Done 10
Running Test 9...Done 0
Running Test 10...Done 38
Your solution passed all tests

Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/11 09:17:40.578
Processing End   = 2007/10/11 09:17:40.578
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 181

Thank you for participating in KiXtart Golf!



NTDOCAdministrator
(KiX Master)
2007-10-11 09:44 AM
Re: KiXgolf: Linear Pachinko - Private Round

That's looking great Jochen but Jooel asked me to post his tomorrow as he is busy at work and won't have time. 139

DrillSergeant
(MM club member)
2007-10-11 09:46 AM
Re: KiXgolf: Linear Pachinko - Private Round

We're playing poker again? \:\) Check rule 18

NTDOCAdministrator
(KiX Master)
2007-10-11 10:01 AM
Re: KiXgolf: Linear Pachinko - Private Round

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/10 15:17:11.302
Processing End = 2007/10/10 15:17:11.625
Duration = 0000/00/00 00:00:00.323
KiXGolf Score = 139

Thank you for participating in KiXtart Golf!


JochenAdministrator
(KiX Supporter)
2007-10-11 10:18 AM
Re: KiXgolf: Linear Pachinko - Private Round

Can you post the complete result using the latest official package (10 test cases) ?

We somehow like to see the 'Your solution passed all tests' line


JochenAdministrator
(KiX Supporter)
2007-10-11 10:25 AM
Re: KiXgolf: Linear Pachinko - Private Round

in the mean time:


Running Test 1...Done 61
Running Test 2...Done 53
Running Test 3...Done 100
Running Test 4...Done 0
Running Test 5...Done 100
Running Test 6...Done 50
Running Test 7...Done 53
Running Test 8...Done 10
Running Test 9...Done 0
Running Test 10...Done 38
Your solution passed all tests

Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/11 10:23:49.296
Processing End   = 2007/10/11 10:23:49.296
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 179

Thank you for participating in KiXtart Golf!



JochenAdministrator
(KiX Supporter)
2007-10-11 10:50 AM
Re: KiXgolf: Linear Pachinko - Private Round



Running Test 1...Done 61
Running Test 2...Done 53
Running Test 3...Done 100
Running Test 4...Done 0
Running Test 5...Done 100
Running Test 6...Done 50
Running Test 7...Done 53
Running Test 8...Done 10
Running Test 9...Done 0
Running Test 10...Done 38
Your solution passed all tests

Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Linear Pachinko
Processing Start = 2007/10/11 10:46:49.609
Processing End   = 2007/10/11 10:46:49.609
Duration         = 0000/00/00 00:00:00.000
KiXGolf Score    = 177

Thank you for participating in KiXtart Golf!



Richard H.Administrator
(KiX Supporter)
2007-10-11 11:15 AM
Re: KiXgolf: Linear Pachinko - Private Round

Only just got time to look at this this morning.

Not as tricky as I thought it would be, without any golfing i get:
 Quote:
Running Test 1...Done
Running Test 2...Done
Running Test 3...Done
Running Test 4...Done
Running Test 5...Done
Running Test 6...Done
Running Test 7...Done
Running Test 8...Done
Running Test 9...Done
Running Test 10...Done
Your solution passed all tests

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/11 10:11:59.570
Processing End = 2007/10/11 10:11:59.585
Duration = 0000/00/00 00:00:00.014
KiXGolf Score = 196

Thank you for participating in KiXtart Golf!


Not sure if I'm going to have time to golf the code down.


NTDOCAdministrator
(KiX Master)
2007-10-11 11:17 AM
Re: KiXgolf: Linear Pachinko - Private Round

I'm just playing with you Jochen. Don't have any code from Jooel. Spoke with him and he said he is busy at work and may not have time to play.

You're doing great. Almost caught up to Rogier.


JochenAdministrator
(KiX Supporter)
2007-10-11 11:25 AM
Re: KiXgolf: Linear Pachinko - Private Round

Whoa dude!
You really got me with this, nice one

Richard: What do you think you're doing here, eh?? Coming along in the extension time, initially posting a score that is way below anything I had for days and telling us that it is not tricky? Bold! ;\)


DrillSergeant
(MM club member)
2007-10-11 11:32 AM
Re: KiXgolf: Linear Pachinko - Private Round

Damn, that extra day is going to kill me!

Nah, I'm glad it's given some people some time to jump onto the bandwagon too \:D

Doc, you realy had me going there too! \:\)


DrillSergeant
(MM club member)
2007-10-11 11:41 AM
Re: KiXgolf: Linear Pachinko - Private Round

 Originally Posted By: Jochen
There is no spoon. So we can just leave the spoon code out


I imagine that right now, you're feeling a bit like Alice. Hmm? Tumbling down the rabbit hole?


JochenAdministrator
(KiX Supporter)
2007-10-11 11:51 AM
Re: KiXgolf: Linear Pachinko - Private Round

I may have crossed the border from Wonderland to Otherland already

DrillSergeant
(MM club member)
2007-10-11 11:53 AM
Re: KiXgolf: Linear Pachinko - Private Round

Current standings:

 Code:
DrillSergeant 161
Jochen        177
Richard H.    196
Allen         231
Benny69       294
Gargoyle      481


Richard H.Administrator
(KiX Supporter)
2007-10-11 12:10 PM
Re: KiXgolf: Linear Pachinko - Private Round

Apologies for the sneaky entry. Gotta heavy schedule at the moment, but I gave myself a couple of hours off for good behaviour and thought I'd participate as a way of relaxing.

I'm sure that you've already realised that once you have thought around the problem the low scoring code pretty much writes itself.

With most of these golf tournaments the real gains are not so much in the coding but in the approach \:\)

One last shot, but I have to get back to the boring stuff now...
 Quote:
KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/11 11:03:42.361
Processing End = 2007/10/11 11:03:42.376
Duration = 0000/00/00 00:00:00.014
KiXGolf Score = 185


DrillSergeant
(MM club member)
2007-10-11 12:14 PM
Re: KiXgolf: Linear Pachinko - Private Round

 Originally Posted By: Richard H.
With most of these golf tournaments the real gains are not so much in the coding but in the approach \:\)


So true, my basic approach from score 444 to 161 didn't change, but if you start out with a wrong aproach it's a devil to change your thinking to come up with another approach.

Good to see you joined up, Richard! Good luck with the boring stuff



DrillSergeant
(MM club member)
2007-10-11 12:30 PM
Re: KiXgolf: Linear Pachinko - Private Round

tick, tock, tick, tock, gentlemen \:\)

http://www.timeanddate.com/counters/full...our=6pm&p0=179'


Richard H.Administrator
(KiX Supporter)
2007-10-11 02:16 PM
Re: KiXgolf: Linear Pachinko - Private Round

Prefer this format meself: http://www.timeanddate.com/counters/fullscreen.html?mode=a&year=2007&month=10&day=11&hour=6pm&p0=179

DrillSergeant
(MM club member)
2007-10-11 02:46 PM
Re: KiXgolf: Linear Pachinko - Private Round

Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/11 14:45:34.265
Processing End = 2007/10/11 14:45:34.281
Duration = 0000/00/00 00:00:00.016
KiXGolf Score = 160

Thank you for participating in KiXtart Golf!


JochenAdministrator
(KiX Supporter)
2007-10-11 02:50 PM
Re: KiXgolf: Linear Pachinko - Private Round

\:o

DrillSergeant
(MM club member)
2007-10-11 02:58 PM
Re: KiXgolf: Linear Pachinko - Private Round


Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/11 14:56:36.718
Processing End = 2007/10/11 14:56:36.734
Duration = 0000/00/00 00:00:00.015
KiXGolf Score = 152

Thank you for participating in KiXtart Golf!


JochenAdministrator
(KiX Supporter)
2007-10-11 03:08 PM
Re: KiXgolf: Linear Pachinko - Private Round

\:o \:o \:o

AllenAdministrator
(KiX Supporter)
2007-10-11 03:20 PM
Re: KiXgolf: Linear Pachinko - Private Round

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/11 09:21:10.074
Processing End = 2007/10/11 09:21:10.074
Duration = 0000/00/00 00:00:00.000
KiXGolf Score = 229

Thank you for participating in KiXtart Golf!


Richard H.Administrator
(KiX Supporter)
2007-10-11 03:22 PM
Re: KiXgolf: Linear Pachinko - Private Round

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/11 14:20:07.383
Processing End = 2007/10/11 14:20:07.399
Duration = 0000/00/00 00:00:00.015
KiXGolf Score = 182


Benny69
(MM club member)
2007-10-11 03:23 PM
Re: KiXgolf: Linear Pachinko - Private Round

Roger you Basta!

AllenAdministrator
(KiX Supporter)
2007-10-11 03:24 PM
Re: KiXgolf: Linear Pachinko - Private Round

 Quote:
I'm sure that you've already realised that once you have thought around the problem the low scoring code pretty much writes itself.


"There is no ball", "The code writes itself". GAHH! You guys SUCK!

Looking forward to seeing this.


DrillSergeant
(MM club member)
2007-10-11 03:31 PM
Re: KiXgolf: Linear Pachinko - Private Round

 Originally Posted By: Allen
 Quote:
I'm sure that you've already realised that once you have thought around the problem the low scoring code pretty much writes itself.


"There is no ball", "The code writes itself". GAHH! You guys SUCK!


LMFAO!!! \:D \:D


Richard H.Administrator
(KiX Supporter)
2007-10-11 03:44 PM
Re: KiXgolf: Linear Pachinko - Private Round

Well, I didn't expect the code to work, but it did.

It's now at the stage where I'm beginning to have trouble working out what is going on!

Running Test 1...Done
Running Test 2...Done
Running Test 3...Done
Running Test 4...Done
Running Test 5...Done
Running Test 6...Done
Running Test 7...Done
Running Test 8...Done
Running Test 9...Done
Running Test 10...Done
Your solution passed all tests

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_lp.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/11 14:42:02.430
Processing End = 2007/10/11 14:42:02.445
Duration = 0000/00/00 00:00:00.014
KiXGolf Score = 174

Thank you for participating in KiXtart Golf!


JochenAdministrator
(KiX Supporter)
2007-10-11 03:50 PM
Re: KiXgolf: Linear Pachinko - Private Round

\:o *speechless*

DrillSergeant
(MM club member)
2007-10-11 03:54 PM
Re: KiXgolf: Linear Pachinko - Private Round

Wow! From zero to second place in a day! \:o You tha man, Rich!

JochenAdministrator
(KiX Supporter)
2007-10-11 03:55 PM
Re: KiXgolf: Linear Pachinko - Private Round

Ok, 8 hours left, 26 to go for Rogier, only 4 for Richard.
Got an appointment with the Doctor next, but will return to the battle for the last 5 hours or so.

Cya


AllenAdministrator
(KiX Supporter)
2007-10-11 03:57 PM
Re: KiXgolf: Linear Pachinko - Private Round

Allen thinks... damn, there went 3rd
Jochen thinks... damn, there went 2nd (ain't that extra 24 hours a bitch?)
Rogier thinks... self writing code... you better get on a diet quick.


JochenAdministrator
(KiX Supporter)
2007-10-11 04:00 PM
Re: KiXgolf: Linear Pachinko - Private Round

 Originally Posted By: DrillSergeant
Wow! From zero to second place in a day! \:o You tha man, Rich!


I quite agree with Rogier, but tell me, why does it take so freaking long to complete? 486 Processor???


JochenAdministrator
(KiX Supporter)
2007-10-11 08:13 PM
Re: KiXgolf: Linear Pachinko - Private Round

alright, 'm back.

already spent 20 minutes ... anything I try raises the score


DrillSergeant
(MM club member)
2007-10-11 11:00 PM
Re: KiXgolf: Linear Pachinko - Private Round

final hour:

http://www.timeanddate.com/counters/fullscreen.html?mode=a&year=2007&month=10&day=11&hour=6pm&p0=179

I'm going to sleep, I'll post my code 8 hours from now \:\)


JochenAdministrator
(KiX Supporter)
2007-10-11 11:12 PM
Re: KiXgolf: Linear Pachinko - Private Round

I give up!

I won't be able to shave those 4 strokes left for 2nd Place, congrats Richard \:\)

Right, as I have scheduled an ambulatory surgery (Meniscus) tomorrow before noon, I will at least miss the first day of public round \:\(
I'll try to post my code tomorrow morning though \:\)

G'night Gentlemen


Benny69
(MM club member)
2007-10-11 11:44 PM
Re: KiXgolf: Linear Pachinko - Private Round

Running Test 1...Done Result... 61
Running Test 2...Done Result... 53
Running Test 3...Done Result... 100
Running Test 4...Done Result... 0
Running Test 5...Done Result... 100
Running Test 6...Done Result... 50
Running Test 7...Done Result... 53
Running Test 8...Done Result... 10
Running Test 9...Done Result... 0
Running Test 10...Done Result... 38
Your solution passed all tests

Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/11 16:43:22.853
Processing End = 2007/10/11 16:43:22.885
Duration = 0000/00/00 00:00:00.031
KiXGolf Score = 289

Thank you for participating in KiXtart Golf!
Press any key to continue...


Benny69
(MM club member)
2007-10-12 01:04 AM
Re: KiXgolf: Linear Pachinko - Private Round

Running Test 1...Done Result... 61
Running Test 2...Done Result... 53
Running Test 3...Done Result... 100
Running Test 4...Done Result... 0
Running Test 5...Done Result... 100
Running Test 6...Done Result... 50
Running Test 7...Done Result... 53
Running Test 8...Done Result... 10
Running Test 9...Done Result... 0
Running Test 10...Done Result... 38
Your solution passed all tests

Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_lp.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Linear Pachinko
Processing Start = 2007/10/11 18:04:08.992
Processing End = 2007/10/11 18:04:09.148
Duration = 0000/00/00 00:00:00.156
KiXGolf Score = 288

Thank you for participating in KiXtart Golf!
Press any key to continue...


Sealeopard
(KiX Master)
2007-10-12 04:12 AM
Re: KiXgolf: Linear Pachinko - Private Round

The private round is now closed. Please continue in the public round by posting your code.