結果
| 問題 |
No.1424 Ultrapalindrome
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-05-20 15:10:09 |
| 言語 | Java (openjdk 23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,514 bytes |
| コンパイル時間 | 3,544 ms |
| コンパイル使用メモリ | 78,912 KB |
| 実行使用メモリ | 82,736 KB |
| 最終ジャッジ日時 | 2024-10-10 07:15:31 |
| 合計ジャッジ時間 | 15,878 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 14 WA * 1 TLE * 1 -- * 13 |
ソースコード
import java.util.Scanner;
import java.util.List;
import java.util.ArrayList;
import java.util.Arrays;
public class No1424 {
private static int N;
private static int[] P;
private static List<Integer[]> Edge;
private static List<Integer> S;
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
N = scan.nextInt();
P = new int[N];
Edge = new ArrayList<Integer[]>();
for (int i=0; i < N-1; i++) {
int v = scan.nextInt() - 1;
int u = scan.nextInt() - 1;
P[v]++;
P[u]++;
Edge.add(new Integer[] {v, u});
Edge.add(new Integer[] {u, v});
}
scan.close();
S = new ArrayList<Integer>();
for (int i=0; i < N; i++) {
if (P[i] == 1) {
S.add(i);
}
}
int res = -1;
for (int i=0; i < S.size()-1; i++) {
int v = getPath(S.get(i), i);
if (v < 0) {
System.out.println("No");
return;
} else if (res < 0) {
res = v;
} else if (res != v) {
System.out.println("No");
}
}
System.out.println("Yes");
}
private static int getPath(int s, int i) {
int[] D = new int[N];
Arrays.fill(D, Integer.MAX_VALUE);
D[s] = 0;
while (true) {
boolean update = false;
for (Integer[] e : Edge) {
if (D[e[0]] != Integer.MAX_VALUE && D[e[1]] > D[e[0]] + 1) {
D[e[1]] = D[e[0]] + 1;
update = true;
}
}
if (!update) {
break;
}
}
int res = -1;
for (int e : S.subList(i+1, S.size())) {
if (res < 0) {
res = D[e];
} else if (res != D[e]) {
return -1;
}
}
return res;
}
}