Programming C, C++, Java, PHP, Ruby, Turing, VB
Computer Science Canada 
Programming C, C++, Java, PHP, Ruby, Turing, VB  

Username:   Password: 
 RegisterRegister   
 Assistance With Keep on Truckin programming problem
Index -> Programming, Java -> Java Help
View previous topic Printable versionDownload TopicSubscribe to this topicPrivate MessagesRefresh page View next topic
Author Message
vertdragon23




PostPosted: Thu Mar 26, 2015 8:28 am   Post subject: Assistance With Keep on Truckin programming problem

The problem J5 on https://cemc.math.uwaterloo.ca/contests/computing/2007/stage1/juniorEn.pdf , If someone could help me get started, I would be greatly appreciative!
In Java.
Sponsor
Sponsor
Sponsor
sponsor
Insectoid




PostPosted: Thu Mar 26, 2015 3:18 pm   Post subject: RE:Assistance With Keep on Truckin programming problem

First thing you'll want to do is insert the new hotel locations into your hotel list. I'm gonna assume you can do that already, since that's the easy part.

It's basically a permutation problem. This can be done iteratively or recursively, whatever you prefer. If you're familiar with recursion it should be fairly simple and and quick to write.

Step one is to find a path to the end. Once you've found a single path, it's easy to adjust your code to find *all* paths, so we'll only deal with that for now.

Naturally, you'll need a counter that shows how many miles you've driven that day. When you iterate over your list of hotels, you check if the miles driven to get to that hotel is within the min and max distance given in the problem. From there, you have 3 options:
-The hotel is too close. You haven't driven enough miles. Go to the next hotel.
-The hotel is just right. Reset your mileage counter to 0, and check the next hotel on the list.
-The hotel is too far. This is the recursive step, if you take that approach. If the hotel is too far, you need to go back to a previous hotel and try another route.

When you go back to a previous hotel, you need to choose a different option. Depending on the miles driven to that hotel, you might not have another option, in which case you need to go back to the hotel before that one. A recursive approach will do this automatically.

There are two exit conditions- either you reach the last hotel at 7000km, in which case you've found your route, or you back up all the way to the beginning, which means there is no possible way to reach the end.

Once you have working code that can find one path or proves no path exists, try to find a way to make it count all paths instead. It's extremely simple and barely changes the algorithm at all.
vertdragon23




PostPosted: Thu Mar 26, 2015 6:47 pm   Post subject: Re: Assistance With Keep on Truckin programming problem

I'm stuck, as to how I can get it to somehow recursively add the counter while also cycling through motel locations. x_x






import java.util.Arrays;
import java.util.Scanner;

public class Truckproblem {



public static void main(String[] args) {
Scanner in = new Scanner(System.in);

int ways = 0;
int min;
int max;
int m;
int size;
int n;
int distance=0;


int motel[] = new int[] {990,1010,1970,2030,2940,3060,3930,4060,4970,5030,5990,6010,7000 };

System.out.println("Minimal distance per day:");
min = in.nextInt();

System.out.println("Maximum distance per day:");
max = in.nextInt();

System.out.println("Please enter Location of Additional Motel");
m= in.nextInt();

if (distance==7000) {

ways= ways+1;
}

else
{

for(int i=1; i < 14; i = i+1) {

}
Insectoid




PostPosted: Thu Mar 26, 2015 8:38 pm   Post subject: RE:Assistance With Keep on Truckin programming problem

Do you understand recursion?

Quote:
if (distance==7000) {

ways= ways+1;
}


I strongly suggest you completely ignore counting the number of ways to reach the end until you have figured out how to find a single way to the end.
Display posts from previous:   
   Index -> Programming, Java -> Java Help
View previous topic Tell A FriendPrintable versionDownload TopicSubscribe to this topicPrivate MessagesRefresh page View next topic

Page 1 of 1  [ 4 Posts ]
Jump to:   


Style:  
Search: