結果

問題 No.417 チューリップバブル
ユーザー 37zigen37zigen
提出日時 2016-08-11 16:10:27
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 5,595 bytes
コンパイル時間 4,823 ms
コンパイル使用メモリ 89,136 KB
実行使用メモリ 73,200 KB
最終ジャッジ日時 2024-04-25 07:27:31
合計ジャッジ時間 19,068 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
42,352 KB
testcase_01 AC 54 ms
36,932 KB
testcase_02 AC 57 ms
36,592 KB
testcase_03 AC 53 ms
37,024 KB
testcase_04 AC 54 ms
36,932 KB
testcase_05 AC 55 ms
36,356 KB
testcase_06 AC 54 ms
37,160 KB
testcase_07 AC 52 ms
37,016 KB
testcase_08 AC 55 ms
36,556 KB
testcase_09 AC 54 ms
37,032 KB
testcase_10 AC 55 ms
37,248 KB
testcase_11 AC 58 ms
36,580 KB
testcase_12 AC 59 ms
37,136 KB
testcase_13 AC 59 ms
37,140 KB
testcase_14 AC 85 ms
38,728 KB
testcase_15 AC 72 ms
37,392 KB
testcase_16 AC 65 ms
37,312 KB
testcase_17 TLE -
testcase_18 AC 226 ms
44,568 KB
testcase_19 AC 227 ms
44,896 KB
testcase_20 AC 407 ms
46,368 KB
testcase_21 AC 236 ms
44,356 KB
testcase_22 AC 296 ms
46,672 KB
testcase_23 AC 189 ms
43,800 KB
testcase_24 AC 56 ms
37,100 KB
testcase_25 AC 583 ms
48,920 KB
testcase_26 AC 92 ms
39,056 KB
testcase_27 AC 152 ms
41,872 KB
testcase_28 AC 1,800 ms
51,048 KB
testcase_29 AC 213 ms
44,812 KB
testcase_30 AC 108 ms
40,240 KB
testcase_31 AC 264 ms
45,592 KB
testcase_32 AC 52 ms
36,744 KB
testcase_33 AC 58 ms
36,340 KB
testcase_34 AC 55 ms
36,992 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Comparator;

public class チューリップバブル {
	static InputStream is;
	static PrintWriter out;
	static String INPUT = "";

	static double opt;// 単位時間あたりにゲットできる最大チューリップ数
	static long total_time;

	void solver() {

		int n = ni();// 村の数
		int m = ni();// 残り時間
		total_time = m;

		long[] u = new long[n];
		for (int i = 0; i < n; i++) {
			u[i] = nl();// 税収
		}
		ArrayList<Edge>[] e = new ArrayList[n];
		for (int i = 0; i < n; i++) {
			e[i] = new ArrayList<>();
		}
		opt = -1;
		for (int i = 0; i < n - 1; i++) {
			int a = ni();
			int b = ni();
			int c = ni();
			e[a].add(new Edge(c, a, b));
			e[b].add(new Edge(c, b, a));
			opt = Math.max(opt, ((double) u[i]) / ((double) c));
		}
		ArrayList<State> list = dfs(-1, 0, e, u, m, 0, 0);
		list.sort(new Comparator<State>() {
			@Override
			public int compare(State s1, State s2) {
				return -Long.compare(s1.u, s2.u);
			}
		});

		out.println(list.get(0).u);
	}

	ArrayList<State> dfs(int p, int cur, ArrayList<Edge>[] e, long[] u, int m, int depth, long total) {
		ArrayList<ArrayList<State>> tmpList = new ArrayList<>();
		for (Edge v : e[cur]) {
			if (v.to != p) {
				ArrayList<State> d = dfs(cur, v.to, e, u, m - 2 * v.time, depth + 1, u[cur] + total);

				ArrayList<State> tmpList2 = new ArrayList<>();
				for (State tmp : d) {
					tmp.t += 2 * v.time;
					tmp.u += u[cur];
					if (m >= tmp.t) {
						tmpList2.add(tmp);
					}
				}
				tmpList.add(tmpList2);
			}
		}
		ArrayList<State> ret = new ArrayList<>();

		for (ArrayList<State> lst : tmpList) {
			int n = ret.size();
			for (State s : lst) {
				for (int j = 0; j < n; j++) {
					State tmp = new チューリップバブル().new State(s.u + ret.get(j).u - u[cur], s.t + ret.get(j).t);
					if (m >= tmp.t) {
						ret.add(tmp);
					}
				}
			}
			ret.addAll(lst);
			ret.sort(new Comparator<State>() {
				@Override
				public int compare(State s1, State s2) {
					return Long.compare(s1.t, s2.t);
				}
			});

			for (int i = 0; i < ret.size() - 1; i++) {
				while (i + 1 < ret.size() && ret.get(i).u > ret.get(i + 1).u) {
					ret.remove(i + 1);
				}
			}
		}

		for (int i = 0; i < ret.size() - 1; i++) {
			if (ret.size() >= 2
					&& ret.get(0).u + opt * (total_time - ret.get(0).t) < ret.get(ret.size() - 1).u + total) {
				ret.remove(0);
			}
		}

		ret.add(new チューリップバブル().new State(u[cur], 0));
		return ret;
	}

	static class Edge {
		int time;
		int from;
		int to;

		Edge(int time, int from, int to) {
			this.time = time;
			this.from = from;
			this.to = to;
		}
	}

	class State {
		long u;
		int t;

		State(long u, int t) {
			this.u = u;
			this.t = t;
		}
	}

	public static void main(String[] args) throws Exception {
		is = INPUT.isEmpty() ? System.in : new ByteArrayInputStream(INPUT.getBytes());
		out = new PrintWriter(System.out);
		long t = System.currentTimeMillis();
		new チューリップバブル().solver();
		System.err.println(System.currentTimeMillis() - t);
		out.flush();
	}

	static long nl() {
		try {
			long num = 0;
			boolean minus = false;
			while ((num = is.read()) != -1 && !((num >= '0' && num <= '9') || num == '-'))
				;
			if (num == '-') {
				num = 0;
				minus = true;
			} else {
				num -= '0';
			}

			while (true) {
				int b = is.read();
				if (b >= '0' && b <= '9') {
					num = num * 10 + (b - '0');
				} else {
					return minus ? -num : num;
				}
			}
		} catch (IOException e) {
		}
		return -1;
	}

	static char nc() {
		try {
			int b = skip();
			if (b == -1)
				return 0;
			return (char) b;
		} catch (IOException e) {
		}
		return 0;
	}

	static double nd() {
		try {
			return Double.parseDouble(ns());
		} catch (Exception e) {
		}
		return 0;
	}

	static String ns() {
		try {
			int b = skip();
			StringBuilder sb = new StringBuilder();
			if (b == -1)
				return "";
			sb.append((char) b);
			while (true) {
				b = is.read();
				if (b == -1)
					return sb.toString();
				if (b <= ' ')
					return sb.toString();
				sb.append((char) b);
			}
		} catch (IOException e) {
		}
		return "";
	}

	public static char[] ns(int n) {
		char[] buf = new char[n];
		try {
			int b = skip(), p = 0;
			if (b == -1)
				return null;
			buf[p++] = (char) b;
			while (p < n) {
				b = is.read();
				if (b == -1 || b <= ' ')
					break;
				buf[p++] = (char) b;
			}
			return Arrays.copyOf(buf, p);
		} catch (IOException e) {
		}
		return null;
	}

	public static byte[] nse(int n) {
		byte[] buf = new byte[n];
		try {
			int b = skip();
			if (b == -1)
				return null;
			is.read(buf);
			return buf;
		} catch (IOException e) {
		}
		return null;
	}

	static int skip() throws IOException {
		int b;
		while ((b = is.read()) != -1 && !(b >= 33 && b <= 126))
			;
		return b;
	}

	static boolean eof() {
		try {
			is.mark(1000);
			int b = skip();
			is.reset();
			return b == -1;
		} catch (IOException e) {
			return true;
		}
	}

	static int ni() {
		try {
			int num = 0;
			boolean minus = false;
			while ((num = is.read()) != -1 && !((num >= '0' && num <= '9') || num == '-'))
				;
			if (num == '-') {
				num = 0;
				minus = true;
			} else {
				num -= '0';
			}

			while (true) {
				int b = is.read();
				if (b >= '0' && b <= '9') {
					num = num * 10 + (b - '0');
				} else {
					return minus ? -num : num;
				}
			}
		} catch (IOException e) {
		}
		return -1;
	}
}
0