Programming Competition Team Name Ideas?

A place for Ogre users to discuss non-Ogre subjects with friends from the community.
Post Reply
User avatar
nikki
Old One
Posts: 2730
Joined: Sat Sep 17, 2005 10:08 am
Location: San Francisco
x 13
Contact:

Programming Competition Team Name Ideas?

Post by nikki »

Hey guys!

My school is taking part in a programming competition near the end of April. Each school can have one team, with 3 people in it. I'm in our team. :D We're free to choose any name for our team. I wanted to call it something geeky, like 'fork bomb' or something.

You guys have any ideas? :)
CABAListic
OGRE Retired Team Member
OGRE Retired Team Member
Posts: 2903
Joined: Thu Jan 18, 2007 2:48 pm
x 58
Contact:

Re: Programming Competition Team Name Ideas?

Post by CABAListic »

Well, the team names I have been participating with include 'Kill Dash Nine' and 'We came for free pizza/lunch'. :)
User avatar
madmarx
OGRE Expert User
OGRE Expert User
Posts: 1671
Joined: Mon Jan 21, 2008 10:26 pm
x 51

Re: Programming Competition Team Name Ideas?

Post by madmarx »

You are not lucky : usually there are not many geeks on these forums :D
I like the 'we came for free lunch'.
I propose : 'frEe vi-agrra'.
Tutorials + Ogre searchable API + more for Ogre1.7 : http://sourceforge.net/projects/so3dtools/
Corresponding thread : http://www.ogre3d.org/forums/viewtopic. ... 93&start=0
User avatar
Kyle_Katarn
Halfling
Posts: 92
Joined: Tue Jul 21, 2009 7:51 am
Location: Australia

Re: Programming Competition Team Name Ideas?

Post by Kyle_Katarn »

Go team discovery channel!
psquare
Hobgoblin
Posts: 554
Joined: Tue Nov 14, 2006 3:26 pm
x 7

Re: Programming Competition Team Name Ideas?

Post by psquare »

OT:

@JustBoo
Those are freaking hilarious! I choked on my coffee when I read some of those :-)
User avatar
emarcotte
Kobold
Posts: 37
Joined: Thu Nov 20, 2008 9:05 pm
Location: Anywhere but here
Contact:

Re: Programming Competition Team Name Ideas?

Post by emarcotte »

Kyle_Katarn wrote:Go team discovery channel!
Don't you mean radio shack, now? :)
User avatar
syedhs
Silver Sponsor
Silver Sponsor
Posts: 2703
Joined: Mon Aug 29, 2005 3:24 pm
Location: Kuala Lumpur, Malaysia
x 51

Re: Programming Competition Team Name Ideas?

Post by syedhs »

The Revenge of the Nerds - okay just kidding! Just remind me of nerd movies not too long ago. :mrgreen:
A willow deeply scarred, somebody's broken heart
And a washed-out dream
They follow the pattern of the wind, ya' see
Cause they got no place to be
That's why I'm starting with me
User avatar
nikki
Old One
Posts: 2730
Joined: Sat Sep 17, 2005 10:08 am
Location: San Francisco
x 13
Contact:

Re: Programming Competition Team Name Ideas?

Post by nikki »

Guess what?

We won! :D

'Team Analog'.

We did every problem except the 'most difficult' one. We tried it a few times then got bored and decided to sleep. :P Anyway after I got home I fiddled around a bit and was able to do it. My solution kinda sucks though. You might be able to come up with a better one. Basically, the question was 'How many different ways can you buy products of costs 1, 3, 10, 20 units each (there are infinite available of everything) with n units of money (max. n is 1900)?' (the real question had some 'story' behind it - the theme of the competition was 'pirates' so all the stories had to do with pirates :P ). Here's what I came up with finally:-
Linky

Mine gets really slow above 200, and it prints out the combinations too, but I don't think that's required (and I don't think the fastest answer would be able to do that - I think it would involve some more 'magic'). The competition was in Carnegie Mellon University, Qatar. So I met one of the students that made the problem set, and I asked him one way you could do that one. He said you need to use 'dynamic programming' - but I thought that was more a way of coming up with an algorithm than an actual algorithm. :?
User avatar
nikki
Old One
Posts: 2730
Joined: Sat Sep 17, 2005 10:08 am
Location: San Francisco
x 13
Contact:

Re: Programming Competition Team Name Ideas?

Post by nikki »

JustBoo wrote:Congratulations.
On behalf of The Team: Thanks! :D
Remember us lowly programmers when you are running some giant corporation. :D
Oh, come on. You guys are totally awesome! I've learnt so much by discussing on this board. It's probably one of the greatest experiences I'll ever have had (still having it - although a little less intensely due to school)!

And I don't want to run a giant corporation. I want to make a small team of friends (maybe people I'll meet in college) - I mean, real friends, as in, I know them, and stuff - and we'll sit together and make fun software and other things (try to make 'new' and 'creative' things mostly, and hope we can make some money off it. Not a big team where I don't know anyone and there's ... very loose coupling, to put it in a CS way. :)

We should organise an 'Ogre Meet' some time though. :D
User avatar
Kojack
OGRE Moderator
OGRE Moderator
Posts: 7157
Joined: Sun Jan 25, 2004 7:35 am
Location: Brisbane, Australia
x 538

Re: Programming Competition Team Name Ideas?

Post by Kojack »

Yay for programming challenges (and winning). :)
I should set this one for my students.

Here's my initial attempt (I only just woke up and haven't had any caffeine, so I might not be thinking too clearly):

Code: Select all

	 int n=200;
	 int combinations=0;
	 for(int a=0;a<=n;a+=3)
		 for(int b=0;b<=n-a;b+=10)
			 for(int c=0;c<=n-a-b;c+=20)
				 if(a+b+c <= n)
				 {
					 cout << n-(a+b+c) << " * 1, " << a/3 << " * 3, " << b/10 << " * 10, " << c/20 << " * 20" << endl;
					 combinations++;
				 }
	 cout<<combinations<<" combinations"<<endl;
For 200 items:
yours = 36 seconds, roughly 327MB ram (measured in task manager)
mine = 2.9 seconds, roughly 20 bytes ram (5 int vars) plus usual vc2008 exe overhead


Hmm, if the theme was pirates, why have a challenge about buying items? Wouldn't pirates just steal them (or infringe their copyright if they aren't the sea faring kind, since steal is an inaccurate word)? Maybe the problem could be that pirates are stealing items that weigh 1, 3, 10 or 20kg each, and their ship has a max weight limit.
:)
User avatar
johnhpus
Platinum Sponsor
Platinum Sponsor
Posts: 1186
Joined: Sat Apr 17, 2004 2:49 am
x 3

Re: Programming Competition Team Name Ideas?

Post by johnhpus »

Hold me closer, tiny pirates. You had a busy day today.
User avatar
nikki
Old One
Posts: 2730
Joined: Sat Sep 17, 2005 10:08 am
Location: San Francisco
x 13
Contact:

Re: Programming Competition Team Name Ideas?

Post by nikki »

Kojack wrote:... Here's my initial attempt (I only just woke up and haven't had any caffeine, so I might not be thinking too clearly): ...
Nice one, Kojack! :D

Damn why didn't I think of that... :?
Post Reply