vote up 10 vote down star
9

In Google Code Jam 2009, Round 1B, there is a problem called Decision Tree that lent itself to rather creative solutions.

Post your shortest solution; I'll update the Accepted Answer to the current shortest entry on a semi-frequent basis, assuming you didn't just create a new language just to solve this problem. :-P

Current rankings:

flag
17  
While meta.stackoverflow.com/questions/20912/… indicates a modest consensus in favor of code gold right now, I don't like the formulation here. At a minimum I would suggest coping the spec locally. – dmckee Sep 16 at 14:48
1  
I agree, I think you need to recreate the question here so that it is similar, but not worded exactly as the Google Code Jam question. – pdavis Sep 16 at 15:01
I'll try to come up with a way to word the problem that doesn't violate Google's copyright. :-D – Chris Jester-Young Sep 16 at 16:12
2  
A bit off topic responce to dmckee; I didn't post mine this week's code golf since I saw my latest question wasn't ranked high. I guess people need time to chill between golfs :) – LiraNuna Sep 19 at 2:32
code.google.com/codejam/contest/… nobody from the US in the top 50?! – Chris S Oct 5 at 15:21
show 2 more comments

21 Answers

vote up 8 vote down check

Perl in 107 characters

say("Case #$_:"),
$_=eval"''".'.<>'x<>,
s:[a-z]+:*(/ $&\\s/?:g,s/\)\s*\(/):/g,
eval"\$_=<>;say$_;"x<>for 1..<>

Newlines for legibility; none of them is necessary or counted in.

It uses features found only in the latest versions of Perl, so run with perl -M5.010 or later.

I used to be a Perl noob too, so this works almost the same as the ruby one. Original version 126 chars, optimizations by peutri.

link|flag
vote up 0 vote down

Pure java in 462 bytes

Looks like I've achieved what I thought was impossible: a shorter java solution that doesn't use any eval trick! Lo and behold:

import java.util.*;class F{static Scanner c,d;static float p(String a){return
d.nextFloat()*(d.hasNext("\\D+")?a.contains(' '+d.next()+' ')?p(a)+0*p(a):0*p(a)+p(a):1);}static{c=new
Scanner(System.in);int n=c.nextInt(),i=0,l;while(i++<n){l=c.nextInt();String
s="";while(l-->=0)s+=c.nextLine();System.out.println("Case #"+i+":");l=c.nextInt();while(l-->0){c.next();d=new
Scanner(s.replaceAll("[()]"," "));System.out.println(p(c.nextLine()+' '));}}System.exit(0);}}

Thanks pfn for showing me a dirty trick to avoid the "main" method.

link|flag
vote up 0 vote down

R in 280 bytes

Note: On the standard distribution of R (as of v. 2.9.2), this program does not pass the large input and fails on just Case 28 (which is nested to 34 levels), generating a "contextstack overflow". To fix this, modify the line in src/main/gram.c that reads

#define CONTEXTSTACK_SIZE 50

and replace the 50 with something like 500. Then recompile. Et voilà!

n=0
g=gsub
eval(parse(text=g('[^
]* [0-9]+( [^
]*|
)','f=c(\\1)
cat(eval(d),"
")
',g('
\\(','
cat("Case #",n<-n+1,":
",sep="")
d=expression(',g('" "','","',g(')\\s*\\(',',',g(' *("[a-z]+")\\s*\\(','*ifelse(\\1%in%f,',g('([a-z]+)','"\\1"',paste(readLines('A'),collapse='
')))))))))

Usage (requires renaming input): cp input.in A; R -q --slave -f thisfile.R >output.out

link|flag
vote up 2 vote down

LilyPond: 223 characters

Craziness! Utter ridiculousness!! LilyPond, with its built-in Scheme interpreter, manages to outdo Scheme by a whole FIFTY BYTES! Holy acrobatic flying mooses in tights!!

z=#define
y=#format
x=#lambda
w=#read
#(z(v a)(map a(iota(w)1)))#(z(c f q)(*(car q)(if(any list? q)(c
f((if(memq(cadr q)f)caddr cadddr)q))1)))#(v(x(i)(w)(set! z(w))(y #t"Case #~a:
"i)(v(x(i)(w)(y #t"~y"(c(v(x(i)(w)))z))))))

Usage: lilypond thisfile.ly <input.in >output.out 2>/dev/null

Credit goes to cky for writing the Scheme solution this was based on, though this version is now substantially different. Seriously, though, the Scheme could be golfed a bit further...

link|flag
vote up 0 vote down

OCaml in 718 bytes

I'm an OCaml n00b, so this is probably much longer than it needs to be.

Usage: ocaml thisfile.ml <input.in >output.out

#load"str.cma";;open List;;open String;;open Str;;let x=length and
y=Printf.printf and e=global_replace and h=float_of_string and b=regexp and
k=index and r=read_line and a=read_int and w s m c=sub s(c+1)(m-c-1);;for i=1to
a()do y"Case #%d:\n"i;let t=let n=a()in let rec g d j=if j>n then d else
g(d^(r()))(j+1)in e(b" ")""(e(b"\\b")"^"(g""1))and n=a()in let rec z j=if j>n
then()else let q=tl(split(b" ")(r()))in let rec g l j s p=let o=k s '('and c=k
s ')'in if j then let f=w s c o in if contains f '('then let m=k s '^'in let
c=index_from s(m+1)'^'in g 0(mem(w s c m)q)(w s(x s)c)(h(w s m o)*.p)else h f*.p
else if o<c then g(l+1)j(w s(x s)o)p else g(l-1)(l=1)(w s(x s)c)p in y"%f\n"(g
0(0=0)t 1.);z(j+1)in z 1done
link|flag
vote up 4 vote down

Arc, 154 characters

Very similar to the CL one, but Arc sure has terse identifiers. Wrapped every 40 chars:

(def r()(read))(for i 1(r)(prn"Case #"i"
:")(r)(= z(r))(repeat(r)(r)(loop(= g(n-o
f(r)(r))c z p 1)c(= p(*(pop c)p)c(if(pos
(pop c)g)(c 0)(cadr c))))(prn p)))

Indented:

(def r () (read))
(for i 1 (r)
  (prn "Case #" i ":")
  (r)
  (= z (r))
  (repeat (r)
    (r)
    (loop (= g (n-of (r) (r))
             c z
             p 1)
       c
       (= p (* (pop c) p)
          c (if (pos (pop c) g)
                (c 0)
                (cadr c))))
    (prn p)))
link|flag
vote up 2 vote down

FORTRAN - 417

Save as a.F
Compile with f95 -ffree-form a.F


#define _ ENDDO
#define A READ((t(k:l-1)),*),a
#define Q j=1,n;READ"(a999)",s
#define R READ*,n;DO
#define S k+SCAN(t(k:),'()')
PROGRAM X;CHARACTER(999)::s,t,u;R i=1,n;t="";PRINT"('Case #',i0,':')",i
R Q;t=TRIM(t)//s;_;R Q
d=1;k=1;DO;k=S;l=S-1;IF(t(l:l)>"(")THEN
A;d=d*a;PRINT*,d;EXIT
ELSE;A,u;d=d*a;k=l;m=0;IF(INDEX(s," "//TRIM(u)//" ")>0)CYCLE
DO;IF(')'>t(k:k))m=m+2;m=m-1;k=k+1;IF(1>m)EXIT;k=S-1
_;ENDIF;_;_;_;END

By using the default format, each of the results starts with 2 spaces, but the google judge permits it. Thanks google judge!

EXPANDED VERSION - this is a bit out of date now


 PROGRAM X
 CHARACTER(999)::s,t,u
 READ*,n
 DO i=1,n
 PRINT"('Case #',i0,':')",i
 t=""
 READ*,n
 DO j=1,n
 READ"(a99)",s
 t=TRIM(t)//s
 ENDDO
 READ*,n
 DO j=1,n
 READ"(a999)",s
 s=s(SCAN(s,' '):)
 d=1.0
 k=1
 DO
 k=k+SCAN(t(k:),'01')-1
 l=k+SCAN(t(k:),'()')-1
 IF(t(l:l)>"(")THEN
 READ((T(k:l-1)),*),a
 d=d*a
 EXIT
 ELSE
 READ(t(k:l-1),*),a,u
 d=d*a
 k=l
 IF(INDEX(s," "//TRIM(u)//" ")>0)CYCLE
 m=0
 DO
 IF(t(k:k)=="(")m=m+2
 m=m-1
 IF(m==0)EXIT
 k=k+SCAN(t(k+1:),"()") 
 ENDDO
 k=k+1
 ENDIF
 ENDDO
 PRINT"(f8.6)",d
 ENDDO 
 ENDDO
 END
link|flag
vote up 3 vote down

JavaScript in 222 bytes

r='replace';l=readFile(r).split('\n');for(n=i=1;l[0]--;){for(print('Case #'+n+++':'),d='',x=l[i++];x--;d+=l[i++]);for(x=l[i++];x--;)print(eval(d[r](/([a-z]+)/g,'*({'+l[i++][r](/ /g,':1,z')+':1}.z$1?')[r](/\) *\(/g,'):')))}

Usage (requires renaming input file): cp input.in replace; rhino thisfile.js >output.out

With contributions by Hyperlisk.

link|flag
vote up 1 vote down

Haskell, 312 characters

Here's another aproach to Haskell. I left the dirty work to the Prelude's lex. The wrapping around it is Text.ParserCombinators.ReadP. Importing it cost 36 characters on its own—ugh!

The parser is a Features -> SExp -> Cuteness function, which spares me most of the type declarations in quibble's/yairchu's solution.

import Text.ParserCombinators.ReadP
main=f(\t->do putStrLn$"Case #"++show t++":";s<-r g;r$print.fst.head.($id=<<s).readP_to_S.d.tail.words=<<g)
d x=do"("<-e;w<-e;c<-do{f<-e;y<-d x;n<-d x;u$if elem f x then y else n}<++u 1.0;e;u$c*read w
f x=do n<-g;mapM x[1..read n]
e=readS_to_P lex
r=f.const
g=getLine
u=return

It used to use Control.Monad's join, forM_ and replicateM, but it turns out it takes less space to redefine them approximately than to import.

I also abandoned the Prelude's readParen in favor of just calling lex before and after. In the current version, there is no need to verify the closing parenthesis: on a valid input it will always be there. On the other hand, it is vital to check the opening one: since the number is only converted after the whole subexpression has been read, a lot of backtracking would be needed to align to the correct parse.

On a theoretical machine with infinite memory and time to spare, the "("<- part might be dropped (4 characters' gain, 308 in total). Unless the call to read just aborts. On mine, the stack just overflows pretty fast.

link|flag
vote up 0 vote down

C++ in 698 bytes
Compile with 'g++ -o test source.cpp -include iostream -include vector -include sstream'

#define R(x,f,t) for(int x=f;x<t;x++){
#define S(x) x.size()
#define H string
#define U while
#define I if
#define D cin>>
#define X t.substr(p,S(t))
using namespace std;
int main(){int h,l,n,a,p,Y,W;D h;for(int q=1;q<=h;q++){D l;H s;char c;D c;R(i,0,l)H L;getline(cin,L);R(j,0,S(L))I (L[j]==41||L[j]==40)s+=32;s+=L[j];I(L[j]==40)s+=32;}}D a;printf("Case #%d:\n",q);R(i,0,a)H N;D N;D n;vector<H>f;R(j,0,n)D N;f.push_back(N);}H t=s;float P=1;p=0;U(p<S(t)-1){p=0;U(t[p]!=48&&t[p]!=49)p++;t=X;stringstream T(t);float V;T>>V;H F;T>>F;P*=V;I(F[0]==41)break;Y=0;R(j,0,S(f))if(F==f[j])Y=1;}p=t.find(40)+1;t=X;p=0;I(Y==0){W=1;U (W>0){I(t[p]==40)W++;I(t[p]==41)W--;p++;}t=X;p=0;}}cout<<P<<endl;}}return 0;}

EDIT: I'm sorry; I thought it was ok for the includes (eg, C works even w/o including basic libraries), while I'm sure it would be if I decleared the defines this way. I'm not home now, and I won't be for some time: I won't be able to modify it. Just ignore my submission.

link|flag
The includes on the compilation command line feel like cheating. If you go that path, you might just as well put all the defines there too, which the other languages haven't done. (see for example Scheme, Haskell, Java, CL, C) – JB Oct 4 at 9:08
OTOH, you probably don't need the newline after the using namespace (-1), and could declare q with the other ints (-2). You might also try not to return 0 at the end; though it's dubious C++, I recall it works with most compilers anyway. – JB Oct 4 at 9:11
btw, thanks for the hints. :) – spiglerg Oct 4 at 18:51
3  
The c++ standard explicitly states (3.6.1): "If control reaches the end of main without encountering a return statement, the effect is that of executing 'return 0'" – ThomasClay Oct 4 at 21:25
vote up 3 vote down

PHP in 314

<?php function q(){return trim(fgets(STDIN));}for($n=q($x=0);$x++<$n;){for($s=q($t='');$s--;$t.=q());echo"Case #$x:\n";for($z=q();$z--;){$l=explode(' ',q());$l[0]=0;printf("%f\n",eval('return'.preg_replace(array('/\(/','/(\w+),/','/(\d\)*),\((\d)/','/^./'),array(',(','*(in_array("$1",$l,1)?','$1:$2'),$t).';'));}}
link|flag
vote up 19 vote down

sed in 1746 bytes

Yes, seriously.

Usage: sed -r -f thisfile.sed < input.in > output.out

(works on GNU sed; not sure about other seds)

1d
/ /!{x
s/^$/Case #Y:/
s/99Y/Y00/
s/9Y/Y0/
s/#Y/#0Y/
s/8Y/9&/
s/7Y/8&/
s/6Y/7&/
s/5Y/6&/
s/4Y/5&/
s/3Y/4&/
s/2Y/3&/
s/1Y/2&/
s/0Y/1&/
s/.Y(.*):.*/\1Y:/
x
G
s/.*\n|Y//gp
s/.*//
:p
N
/[()]/s/ |\n//g
y/()/JK/
tp
H
d}
s/.*[0-9] ?/ /
G
s/\n[^J]*//
s/[^JK]*$//
s/J/ %J/
:c
s/J([.-9]+)(.*)K/\2@\1/
/%@/bd
:b
/J[^JK]*K/s/T//
s/J([^JK]*)K/TC\1B/
tb
/ (.+) .*%\1C/{s/%[^C]*/%/
s/T.*B//
by}
s/%.*T/%/
:y
y/CB/JK/
tc
:d
s/0\.|(^|@1)[^@]*//g
:r
/@.*@/{s/[^@]*@[^@]*$/C&B/
:s
s/C([^@])(.*B)/\1C\2~/
s/"[^"]*/&0/g
:t
s/([^@])(C.*)([^@])B(.*~)/\1\2B\3\4\1\3/
T
s/~(10|2[01]|3[0-2]|4[0-3]|5[0-4]|6[0-5]|7[0-6]|8[0-7]|9.)/&Q/
s/(.)(.)Q/\2\1/
s/~0[^']/`00/
s/~1([^'])/`0\1/
s/~22/`04/
s/~23/`06/
s/~24/`08/
s/~33/`09/
s/~25/`10/
s/~26|~34/`12/
s/~27/`14/
s/~28|~44/`16/
s/~29|~36/`18/
s/~35/`15/
s/~45/`20/
s/~37/`21/
s/~38|~46/`24/
s/~55/`25/
s/~39/`27/
s/~47/`28/
s/~56/`30/
s/~48/`32/
s/~57/`35/
s/~49|~66/`36/
s/~58/`40/
s/~67/`42/
s/~59/`45/
s/~68/`48/
s/~77/`49/
s/~69/`54/
s/~78/`56/
s/~79/`63/
s/~88/`64/
s/~89/`72/
s/~99/`81/
s/`(.)(.)/~\1'\2/
bt
:
s/(~.)'/\1/
s/..'/K&/
/K/bk
:v
s/=(,?.)'/\1/
s/,/1'/
t
s/'//
s/B(.*)~/\1B"/
ts
s/"([0-9]*)0/A\1/g
:m
/A.*A/{s/A[^A]*$/J&K/
:k
s/([^A])(J.*)([^A])K/\2K\1\3/
s/K(10|2[01]|3[0-2]|4[0-3]|5[0-4]|6[0-5]|7[0-6]|8[^9]|9.)/&Q/
s/(.)(.)Q/\2\1/
s/K0/=/
s/K11/=2/
s/K12/=3/
s/K13|K22/=4/
s/K14|K23/=5/
s/K15|K24|K33/=6/
s/K16|K25|K34/=7/
s/K(17|26|35|44)/=8/
s/K(18|27|36|45)/=9/
s/K(19|28|37|46|55)/W0/
s/K(29|38|47|56)/W1/
s/K(39|48|57|66)/W2/
s/K49|K58|K67/W3/
s/K59|K68|K77/W4/
s/K69|K78/W5/
s/K79|K88/W6/
s/K89/W7/
s/K99/W8/
s/W/=,/
/'/bv
s/([0-A])=/\1K:/
tk
s/JA|KA|[:KJ]//g
:l
s/0,/1/
s/1,/2/
s/2,/3/
s/3,/4/
s/4,/5/
s/5,/6/
s/6,/7/
s/7,/8/
s/8,/9/
s/9,/,0/
s/A,/A1/g
/,/bl}
/A.*A/bm}
s/@[^@]*C.*A/@/
tr
s/@/./

And here's a completely unreadable obfuscated version of the above:

1d;/ /!{x;s;^$;Case #Y:;;ss99YsY00s;s#9Y#Y0#;ss#Ys#0Ys;s78Y79&7;s67Y68&6
s56Y57&5;s75Y76&7;s84Y85&8;s23Y24&2;s52Y53&5;s41Y42&4;s20Y21&2;s;.Y(.*):.*;\1Y:;
x;G;sg.*\n|Ygggp;s;.*;;;:p;N;/[()]/sg |\nggg;y<()<JK<;tp;H;d};s+.*[0-9] ?+ +;G
s;\n[^J]*;;;ss[^JK]*$ss;sjJj %Jj;:c;scJ([.-9]+)(.*)Kc\2@\1c;/%@/bd;:b
/J[^JK]*K/sJTJJ;s.J([^JK]*)K.TC\1B.;tb;/ (.+) .*%\1C/{s(%[^C]*(%(;s)T.*B));by}
sy%.*Ty%y;:y;y;CB;JK;;tc;:d;sg0\.|(^|@1)[^@]*ggg;:r;/@.*@/{s)[^@]*@[^@]*$)C&B)
:s;s"C([^@])(.*B)"\1C\2~";s'"[^"]*'&0'g;:t
s!([^@])(C.*)([^@])B(.*~)!\1\2B\3\4\1\3!;T
s\~(10|2[01]|3[0-2]|4[0-3]|5[0-4]|6[0-5]|7[0-6]|8[0-7]|9.)\&Q\;s,(.)(.)Q,\2\1,
s1~0[^']1`001;s2~1([^'])2`0\12;s3~223`043;s4~234`064;s3~243`083;s4~334`094
s3~253`103;s5~26|~345`125;s6~276`146;s3~28|~443`163;s7~29|~367`187;s4~354`154
s ~45 `20 ;s ~37 `21 ;s!~38|~46!`24!;sS~55S`25S;s|~39|`27|;s"~47"`28"
sO~56O`30O;sB~48B`32B;sT~57T`35T;sA~49|~66A`36A;s;~58;`40;;s;~67;`42;;sS~59S`45S
s#~68#`48#;s?~77?`49?;s%~69%`54%;s^~78^`56^;s.~79.`63.;si~88i`64i;s_~89_`72_
s[~99[`81[;s]`(.)(.)]~\1'\2];bt;:;s"(~.)'"\1";s,..',K&,;/K/bk;:v;s-=(,?.)'-\1-
s:,:1':;t;s"'"";s=B(.*)~=\1B"=;ts;s'"([0-9]*)0'A\1'g;:m;/A.*A/{saA[^A]*$aJ&Ka;:k
s&([^A])(J.*)([^A])K&\2K\1\3&
s]K(10|2[01]|3[0-2]|4[0-3]|5[0-4]|6[0-5]|7[0-6]|8[^9]|9.)]&Q];s|(.)(.)Q|\2\1|
s<K0<=<;s!K11!=2!;s K12 =3 ;s K13|K22 =4 ;s*K14|K23*=5*;s;K15|K24|K33;=6;
s?K16|K25|K34?=7?;s`K(17|26|35|44)`=8`;s$K(18|27|36|45)$=9$
s~K(19|28|37|46|55)~W0~;s+K(29|38|47|56)+W1+;s}K(39|48|57|66)}W2}
s{K49|K58|K67{W3{;s>K59|K68|K77>W4>;s\K69|K78\W5\;s`K79|K88`W6`
s K89 W7 ;s K99 W8 ;s;W;=,;;/'/bv;ss([0-A])=s\1K:s;tk;s@JA|KA|[:KJ]@@g;:l
s.0,.1.;s:1,:2:;s;2,;3;;s!3,!4!;s?4,?5?;s&5,&6&;s^6,^7^;s)7,)8);s(8,(9(
s%9,%,0%;s A, A1 g;/,/bl};/A.*A/bm};s!@[^@]*C.*A!@!;tr;s!@!.!
link|flag
6  
The unobfuscated code looks pretty obfuscated to me! – Terry Donaghe Oct 29 at 15:39
vote up 5 vote down

C - 346 bytes

Compile with gcc -w

#define N{int n=atoi(gets(A));for(;n--;)
T[999];F[99];char*t,*f,*a,A[99];float p(){float
d,m=1;for(;*t++^40;);sscanf(t,"%f %[^ (]",&d,A);if(*A^41){for(f=F;m**f;){for(;*f&&*f++^32;);for(a=A;*a&&*f==*a;f++,a++);m=*a||*f&64;}d*=!m*p()+m*p();}return
d;}main(I)N{printf("Case #%d:\n",I++);t=T;N
for(gets(t);*++t;);}N gets(F),t=T,printf("%f\n",p());}}}
link|flag
vote up 2 vote down

Java in 476 bytes

This uses the javascript interpreter contained in java 6.

import java.util.*;import javax.script.*;class D{static{Scanner c=new
Scanner(System.in);int n=c.nextInt(),i=0,l;while(i++<n){l=c.nextInt();String
s="(";while(l-->=0)s+=c.nextLine();System.out.println("Case #"+i+":");l=c.nextInt();while(l-->0)try{c.next();System.out.println(new
ScriptEngineManager().getEngineByName("js").eval(s.replace(")","))").replaceAll("\\) *\\(",":(").replaceAll("[a-z]+","*(/ $0 /.test('"+c.nextLine()+" ')?")));}catch(Exception
x){}}System.exit(0);}}

Thanks Varan, Chris and pfn (indirectly) for helping me shorten it.
Please see my other (even shorter!) java answer.

link|flag
You can shorten it further by using js (lowercase) as the engine name. – Chris Jester-Young Oct 13 at 18:27
vote up 0 vote down

C in 489 bytes

Code wrapped at 80 chars, there are actually just 3 lines.

Save in a.c and compile with: gcc -w a.c -o a

#define S int I,N;scanf("%d\n",&N);for(I=-1;++I<N;)
#define M 1000
char B[M],Z[M],Q[M]={' '},*F[M],*V;float W[M],H;int J,C,L[M],R[M];t(){V=strtok(0
," \n()");}p(){int U=C++;F[U]=0;if(!V)t();sscanf(V,"%f",W+U);t();if(V&&*V>='a')s
trcpy(Q+1,V),V=0,F[U]=strdup(strcat(Q," ")),L[U]=p(),R[U]=p();return U;}main(){S
{printf("Case #%d:\n",I+1);*B=0;{S strcat(B,gets(Z));}V=strtok(B," \n(");C=0,p()
;{S{strcat(gets(B)," ");for(J=0,H=W[0];F[J];J=strstr(B,F[J])?L[J]:R[J],H*=W[J]);
printf("%f\n",H);};}}}
link|flag
vote up 0 vote down

Haskell, 514 bytes (I suck?).

Based on quibble's solution:

import Control.Monad
import Text.ParserCombinators.Parsec
data F=N|F String(Float,F)(Float,F)
r=return
f=many1 letter>>= \i->w>>d>>= \t->d>>=r.F i t
d=char '('>>w>>many1(oneOf".0123456789")>>= \g->w>>(f<|>r N)>>= \p->char ')'>>w>>r(read g,p)
w=many$oneOf" \n"
g=getLine
l=readLn
m=replicateM
main=l>>= \n->forM_[1..n]$ \t->putStrLn("Case #"++show t++":")>>l>>=(`m`g)>>=(\(Right q)->l>>=(`m`p q)).parse d"".join
z(p,f)=(p*).y f
y N _=1
y(F n t f)x=z(if n`elem`x then t else f)x
p q=fmap(drop 2.words)g>>=print.z q
link|flag
Are you sure all those leading definitions actually make your code shorter? Some of them seem unnecessary. – Chris Lutz Oct 4 at 21:23
Which ones do you have in mind? From the imports, Control.Monad is needed for forM_, replicateM and join, Parsec is needed for pretty much anything else. From the toplevels, it seems to me they all save some characters. – JB Oct 6 at 10:43
vote up 7 vote down

Ruby in 136

def j;1..gets.to_i;end;j.map{|c|m=j.map{gets}*"";puts"Case ##{c}:";j.map{gets;p eval m.gsub(/[a-z]+/,'*(/ \0\s/?').gsub /\)\s*\(/,'):'}}

I just learned about *"" being equivalent to .join"". Also realised that map could be used in a few places

Ruby in 150

1.upto(gets.to_i){|c|m=eval("gets+"*gets.to_i+"''");puts"Case ##{c}:";1.upto(gets.to_i){gets;p eval m.gsub(/[a-z]+/,'*(/ \0\s/?').gsub /\)\s*\(/,'):'}}

I am just a noob to ruby, so there is probably still a lot of room for improvement

link|flag
Wow. What does a regex in a condition even do, anyway? What does it operate on? – DigitalRoss Sep 18 at 10:21
If it works like Perl, it evaluates as true if it matches, false otherwise. – JB Sep 18 at 16:10
If it doesn't match it evaluates to nil which works like false. – gnibbler Sep 19 at 2:20
I should add that it causes lots of these warnings (eval):1: warning: regex literal in condition but stdout still gets the correct result – gnibbler Sep 21 at 5:37
Anyone want to rewrite this in golfscript? golfscript.com/golfscript Might be the winner then... – CodeJoust Nov 4 at 14:08
show 1 more comment
vote up 7 vote down

Python in 192

import re;S=re.sub;R=raw_input;I=input;c=0;exec r"c+=1;L=S('\) *\(',')or ',S('([a-z]+)','*(\' \\1 \'in a and',eval(('+R()'*I('Case #%s:\n'%c))[1:])));exec'a=R()+\' \';print eval(L);'*I();"*I()
link|flag
vote up 5 vote down

Common Lisp, 199 bytes

Wrapped every 80 characters:

(defun r()(read))(dotimes(i(r))(format t"~&Case #~D:"(1+ i))(r)(set'z(r))(dotime
s(a(r))(r)(print(do((g(mapcar'read(make-list(r))))(p 1(*(pop c)p))(c z(if(find(p
op c)g)(car c)(cadr c))))((not c)p)))))

Spaced and indented:

(defun r () (read))
(dotimes (i (r))
  (format t "~&Case #~D:" (1+ i))
  (r)
  (set 'z (r))
  (dotimes (a (r))
    (r)
    (print
      (do ((g (mapcar 'read (make-list (r))))
           (p 1 (* (pop c) p))
           (c z (if (find (pop c) g)
                    (car c)
                    (cadr c))))
          ((not c) p)))))
link|flag
1  
Darn CL and its pop function! :-P Scheme, sadly (for code golfing), doesn't have such succinct means to modify a list. – Chris Jester-Young Sep 16 at 16:25
vote up 6 vote down

PostScript: 176

My shortest PostScript solution so far, provided that you rename the input file to "A" (176 characters, including newlines); uses a GhostScript-specific procedure (=only):

1[/:{repeat}/!{exch dup<>ne{]\ exch known not{]pop}if]]3 index mul
!}if}(]){token pop}/?(A)(r)file([){?]}>>begin
1[{(Case #)2{=only}:(:)=[/|[def[{[/\<<[{[/}:>>def |]! = =}:}for

Usage: cp input.in A; gs -q -dNOPROMPT -dNODISPLAY -dBATCH thisfile.ps > output.out

link|flag
vote up 1 vote down

Here's my version at 278 bytes (with improvements from KirarinSnow to bring it down to 273), after stripping off all the newlines (except ones in string literals, of course). It only works on Guile (since in standard Scheme, define is a syntax, not an object, but Guile represents it as an object anyway).

(define ! define)
(!(c f p w . r)(if(null? r)(* p w)(apply c f(* p w)((if(memq(car r)f)cadr caddr)r))))
(!(d . l)(map display l))
(!(r . x)(read))
(! n(r))
(do((i 1(1+ i)))((> i n))(r)(let((t(r)))(d"Case #"i":
")(do((a(r)(1- a)))((= a 0))(r)(d(apply c(map r(iota(r)))1 t)"
"))))
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.