一 原题
The advice to "buy low" is half the formula to success in the stock market. But to be considered a great investor you must also follow this problems' advice:
That is, each time you buy a stock, you must purchase more at a lower price than the previous time you bought it. The more times you buy at a lower price than before, the better! Your goal is to see how many times you can continue purchasing at ever lower prices.
You will be given the daily selling prices of a stock over a period of time. You can choose to buy stock on any of the days. Each time you choose to buy, the price must be lower than the previous time you bought stock. Write a program which identifies which days you should buy stock in order to maximize the number of times you buy.
By way of example, suppose on successive days stock is selling like this:
Day 1 2 3 4 5 6 7 8 9 10 11 12 Price 68 69 54 64 68 64 70 67 78 62 98 87
In the example above, the best investor (by this problem, anyway) can buy at most four times if they purchase at a lower price each time. One four day sequence (there might be others) of acceptable buys is:
Day 2 5 6 10 Price 69 68 64 62
PROGRAM NAME: buylow
INPUT FORMAT
| Line 1: | N (1 <= N <= 5000), the number of days for which stock prices are available. |
| Line 2..etc: | A series of N positive space-separated integers (which may require more than one line of data) that tell the price for that day. The integers will fit into 32 bits quite nicely. |
SAMPLE INPUT (file buylow.in)
12 68 69 54 64 68 64 70 67 78 62 98 87
OUTPUT FORMAT
Two integers on a single line:
- the length of the longest sequence of decreasing prices
- the number of sequences that have this length
In counting the number of solutions, two potential solutions are considered the same (and would only count as one solution) if they repeat the same string of decreasing prices, that is, if they "look the same" when the successive prices are compared. Thus, two different sequence of "buy" days could produce the same string of decreasing prices and be counted as only a single solution.
SAMPLE OUTPUT (file buylow.out)
4 2
二 分析
三 代码
USER: Qi Shen [maxkibb3] TASK: buylow LANG: JAVA Compiling... Compile: OK Executing... Test 1: TEST OK [0.137 secs, -1194644 KB] Test 2: TEST OK [0.173 secs, -1194644 KB] Test 3: TEST OK [0.122 secs, -1194644 KB] Test 4: TEST OK [0.122 secs, -1194644 KB] Test 5: TEST OK [0.209 secs, -1194644 KB] Test 6: TEST OK [0.259 secs, -1194644 KB] Test 7: TEST OK [0.266 secs, -1194644 KB] Test 8: TEST OK [0.209 secs, -1194644 KB] Test 9: TEST OK [0.439 secs, -1194644 KB] Test 10: TEST OK [0.670 secs, -1194644 KB] All tests OK.
Your program ('buylow') produced all correct answers! This is your submission #5 for this problem. Congratulations!
/*
ID:maxkibb3
LANG:JAVA
PROB:buylow
*/
import java.io.*;
import java.math.BigInteger;
import java.util.Scanner;
class Node {
int len;
BigInteger times;
Node() {
len = 1;
times = new BigInteger("1");
}
}
public class buylow {
int n;
int[] a = new int[5005];
int[] front = new int[5005];
Node[] dp = new Node[5005];
void init() throws IOException {
Scanner sc = new Scanner(new FileReader("buylow.in"));
n = sc.nextInt();
for(int i = 0; i < n; i++) {
a[i] = sc.nextInt();
front[i] = -1;
for(int j = i - 1; j >= 0; j--) {
if(a[j] == a[i]) {
front[i] = j;
break;
}
}
dp[i] = new Node();
}
sc.close();
}
void solve() throws IOException {
for(int i = 1; i < n; i++) {
for(int j = 0; j < i; j++) {
if(a[j] <= a[i]) continue;
if(dp[j].len + 1 == dp[i].len) {
dp[i].times = dp[i].times.add(dp[j].times);
}
else if(dp[j].len + 1 > dp[i].len) {
dp[i].len = dp[j].len + 1;
dp[i].times = dp[j].times;
}
}
int idx = i;
while(front[idx] != -1) {
if(dp[i].len == dp[front[idx]].len) {
dp[i].times = dp[i].times.subtract(dp[front[idx]].times);
}
idx = front[idx];
}
}
int max_len = 0;
BigInteger max_times = new BigInteger("0");
for(int i = 0; i < n; i++) {
if(dp[i].len > max_len) {
max_len = dp[i].len;
max_times = dp[i].times;
}
else if(dp[i].len == max_len) {
max_times = max_times.add(dp[i].times);
}
}
PrintWriter out = new PrintWriter(new BufferedWriter(new FileWriter("buylow.out")));
out.println(max_len + " " + max_times);
out.close();
}
void run() throws IOException{
init();
solve();
}
public static void main(String[] args) throws IOException {
new buylow().run();
}
}

本文介绍了一种股票投资策略,即“低价买入,更低价买入”的原则,并通过算法实现该策略来找出最佳购买时机,旨在最大化购买次数的同时确保每次购买价格低于上一次。文章详细解析了算法的具体实现过程,包括如何寻找最长递减子序列及其数量。
616

被折叠的 条评论
为什么被折叠?



