aboutsummaryrefslogtreecommitdiff
path: root/picker.java
blob: 2a31355482322d2729f56d71c6bff908cba6e96e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
import java.io.*;
import java.lang.*;
import java.util.*;

class Backpointer {
    static Stock NOTHING = new Stock(1, 0, "");

    int previousValue, totalValue;
    Stock stock;

    public Backpointer(int previousValue, Stock stock) {
		this.stock = stock;
		this.totalValue = previousValue + stock.value;
    }

	public static Backpointer chooseBackpointer(Stock stocks[],
		ArrayList<Backpointer> backpointers) {

		int currentPrice = backpointers.size();
		Backpointer best =
		new Backpointer(backpointers.get(currentPrice - 1).totalValue, NOTHING);

		for (int i = 0; i < stocks.length; i++) {
    		Stock stock = stocks[i];
	    	int previousPrice = currentPrice - stock.price;

	    	if (previousPrice >= 0) {
	    		Backpointer candidate =
					new Backpointer(backpointers.get(previousPrice).totalValue,
					stock);

			    if (candidate.totalValue > best.totalValue)
	    	    	best = candidate;
		    }
		}
		return best;
	}

	public static ArrayList chooseStocks(Stock stocks[], int priceLimit) {
		// assert stock values are integers

		// create backpointers
		ArrayList<Backpointer> backpointers = new ArrayList<Backpointer>();
		backpointers.add(new Backpointer(0, NOTHING));
		while (backpointers.size() <= priceLimit) {
			backpointers.add(chooseBackpointer(stocks, backpointers));
		}

		// postprocess backpointers
		ArrayList<Stock> result = new ArrayList<Stock>();
		for (int price = priceLimit; price > 0;
		price -= backpointers.get(price).stock.price) {
			// for debugging
			// System.out.println(price);
			Stock stock = backpointers.get(price).stock;

			if (stock != NOTHING)
				result.add(stock);
		}
		Collections.reverse(result);

		return result;
	}

	public static void main(String[] args) {
		int input;
		Scanner scanner = new Scanner(System.in);
		ArrayList<Stock> choices = new ArrayList<Stock>();
		int priceLimit = 0;
		boolean run = false;

		do {
			System.out.println("1. Add a stock");
			System.out.println("2. Buying power");
			System.out.println("3. Display stocks and buying power");
			System.out.println("4. Run");
			System.out.println("5. Exit");

			input = scanner.nextInt();
			String newLine = scanner.nextLine();

			switch (input) {
				case 1:
					System.out.println("Type 'Stock Ticker, Price (USD), "
						+ "Value'");
					String stockInput = scanner.nextLine();
					String[] stockTraits = stockInput.trim()
						.split("\\s*,\\s*");
					try {
						choices.add(new Stock(Integer.parseInt(stockTraits[1]), 
							Integer.parseInt(stockTraits[2]), stockTraits[0]));	
					} catch (NumberFormatException e) {
						System.out.println("Invalid input - must enter: "
							+ "ticker, #, #");
					} catch (ArrayIndexOutOfBoundsException e) {
						System.out.println("Wrong number of inputs - must "
							+ "enter: ticker, #, #");
					}
					break;
				case 2:
					System.out.println("How much money do you have to "
							+ "allocate?");
					priceLimit = Integer.parseInt(scanner.nextLine());
					break;
				case 3:
					System.out.println(choices);
					System.out.println(priceLimit);
					break;
				case 4:
					run = true;
					break;
				case 5:
					System.exit(0);
					break;
				default:
					System.out.println("Invalid input - must enter a number "
							+ "between 1 and 5");
					break;
			}
		}
		while(run == false);
		// Stock stocks[] = {new Stock(3, 10, "A"), new Stock(4, 14, "B")};
		ArrayList result = chooseStocks(choices.toArray(
			new Stock[choices.size()]), priceLimit);

		for (int i = 0; i < result.size(); i++) {
			System.out.println(result.get(i));
		}
	}
}

class Stock {
    int price, value;
    String ticker;

    public Stock() {
		price = 0;
		value = 0;
		ticker = "";
    }

    public Stock(int price, int value, String ticker) {
		this.price = price;
		this.value = value;
		this.ticker = ticker;
    }

	@Override
	public String toString() {
		return "Ticker: " + ticker + " price: " + price + " value: " + value;
	}
}