結果
問題 | No.364 門松木 |
ユーザー | 37zigen |
提出日時 | 2016-06-11 02:02:11 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,402 bytes |
コンパイル時間 | 2,728 ms |
コンパイル使用メモリ | 79,580 KB |
実行使用メモリ | 368,656 KB |
最終ジャッジ日時 | 2024-10-09 12:46:48 |
合計ジャッジ時間 | 31,054 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 398 ms
250,592 KB |
testcase_01 | AC | 395 ms
252,620 KB |
testcase_02 | AC | 398 ms
250,700 KB |
testcase_03 | AC | 407 ms
250,592 KB |
testcase_04 | AC | 398 ms
250,716 KB |
testcase_05 | AC | 394 ms
250,660 KB |
testcase_06 | WA | - |
testcase_07 | AC | 391 ms
250,524 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | AC | 389 ms
250,436 KB |
testcase_32 | AC | 394 ms
250,536 KB |
testcase_33 | RE | - |
ソースコード
package yukicoder; import java.util.ArrayList; import java.util.Scanner; public class Main { public static void main(String[] args) { new Main().solve(); } ArrayList<Integer>[] edges = new ArrayList[50000]; int[] A; // dp[v][A[u]]:頂点vの子頂点uをvにつないだ時の門松列の総数 int[][] dp = new int[50000][1001]; int[] num_up = new int[1001];// num_up[v]:頂点vの持つ数字より大きい数を持つ子頂点の数 int[] num_down = new int[1001];// num_up[v]:頂点vの持つ数字より小さい数を持つ子頂点の数 int[] sc_down = new int[1001];// sc_up[v]:頂点vの子頂点がvより小さくなるような場合に含める最大の門松列の総数 int[] sc_up = new int[1001];// sc_down[v]:頂点vの子頂点がvより大きくなるな場合に含める最大の門松列の総数 int dfs(int cur, int pre) { int ret = 0; for (int i = 0; i < edges[cur].size(); i++) { int u = edges[cur].get(i); if (pre != u) { ret = Math.max(ret, dfs(u, cur)); if (A[cur] > A[u]) { if (dp[u][A[cur]] >= 0) { dp[cur][A[u]] = Math.max(sc_up[u] - dp[u][A[cur]], dp[cur][A[u]]); } else { dp[cur][A[u]] = Math.max(num_up[u] + sc_up[u], dp[cur][A[u]]); } } else if (A[cur] < A[u]) { if (dp[u][A[cur]] >= 0) { dp[cur][A[cur]] = Math.max(sc_down[u] - dp[u][A[cur]], dp[cur][A[cur]]); } else { dp[cur][A[u]] = Math.max(num_down[u] + sc_down[u], dp[cur][A[u]]); } } } } for (int i = 1; i <= 1000; i++) { if (dp[cur][i] >= 0) { if (A[cur] > i) { num_down[cur]++; sc_down[cur] += dp[cur][i]; } else if (A[cur] < i) { num_up[cur]++; sc_up[cur] += dp[cur][i]; } } } sc_down[cur] += num_down[cur] * (num_down[cur] - 1) / 2; sc_up[cur] += num_up[cur] * (num_up[cur] - 1) / 2; return Math.max(ret, Math.max(sc_down[cur], sc_up[cur])); } int N; void solve() { Scanner sc = new Scanner(System.in); N = sc.nextInt(); A = new int[N]; for (int i = 0; i < 50000; i++) edges[i] = new ArrayList<>(); for (int i = 0; i < 50000; i++) for (int j = 0; j <= 1000; j++) dp[i][j] = -1; for (int i = 0; i < N; i++) A[i] = sc.nextInt(); for (int i = 0; i < N - 1; i++) { int x = sc.nextInt() - 1; int y = sc.nextInt() - 1; edges[x].add(y); edges[y].add(x); } int ret = dfs(0, -1); System.out.println(ret); } }