結果
問題 | No.1424 Ultrapalindrome |
ユーザー | kuro_B |
提出日時 | 2023-04-06 14:35:48 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,352 bytes |
コンパイル時間 | 339 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 51,072 KB |
最終ジャッジ日時 | 2024-10-02 13:39:41 |
合計ジャッジ時間 | 7,682 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
11,648 KB |
testcase_01 | AC | 37 ms
11,648 KB |
testcase_02 | AC | 36 ms
11,648 KB |
testcase_03 | WA | - |
testcase_04 | AC | 36 ms
11,648 KB |
testcase_05 | WA | - |
testcase_06 | AC | 36 ms
11,776 KB |
testcase_07 | AC | 36 ms
11,520 KB |
testcase_08 | WA | - |
testcase_09 | AC | 397 ms
28,932 KB |
testcase_10 | AC | 398 ms
29,016 KB |
testcase_11 | AC | 251 ms
25,740 KB |
testcase_12 | AC | 324 ms
28,628 KB |
testcase_13 | AC | 108 ms
16,096 KB |
testcase_14 | AC | 318 ms
26,496 KB |
testcase_15 | AC | 37 ms
11,648 KB |
testcase_16 | AC | 229 ms
24,300 KB |
testcase_17 | AC | 259 ms
25,948 KB |
testcase_18 | AC | 183 ms
20,280 KB |
testcase_19 | AC | 285 ms
25,872 KB |
testcase_20 | AC | 84 ms
15,104 KB |
testcase_21 | AC | 298 ms
25,704 KB |
testcase_22 | AC | 147 ms
18,896 KB |
testcase_23 | AC | 54 ms
13,312 KB |
testcase_24 | AC | 89 ms
15,488 KB |
testcase_25 | AC | 82 ms
15,104 KB |
testcase_26 | AC | 348 ms
27,768 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 315 ms
35,332 KB |
testcase_31 | AC | 316 ms
38,340 KB |
ソースコード
###スニペット始まり### import sys, re from copy import copy, deepcopy from math import ceil, floor, sqrt,factorial, gcd, pi, degrees, radians, sin, asin, cos, acos, tan, atan2 from collections import Counter, deque, defaultdict from heapq import heapify, heappop, heappush from itertools import permutations, accumulate, product, combinations, combinations_with_replacement from bisect import bisect, bisect_left, bisect_right from functools import reduce, lru_cache from string import ascii_uppercase, ascii_lowercase from decimal import Decimal, ROUND_HALF_UP #四捨五入用 def input(): return sys.stdin.readline().rstrip('\n') #easy-testのpypyでは再帰数を下げる。 if __file__=='prog.py': sys.setrecursionlimit(10**5) else: sys.setrecursionlimit(10**6) def lcm(a, b): return a * b // gcd(a, b) #3つ以上の最大公約数/最小公倍数 def gcd_v2(l: list): return reduce(gcd, l) def lcm_v2(l: list): return reduce(lcm, l) #nPk def nPk(n, k): return factorial(n) // factorial(n - k) #逆元 def modinv(a, mod=10**9+7): return pow(a, mod-2, mod) INF = float('inf') MOD = 10 ** 9 + 7 ###スニペット終わり### N=int(input()) graph = [[] for _ in range(N)] for _ in range(N-1): a, b = map(int, input().split()) graph[a-1].append(b-1) graph[b-1].append(a-1) # 有向グラフなら消す dists=[-1]*N def dfs(s, dist): dists[s]=dist for v in graph[s]: if dists[v]==-1: dfs(v, dist+1) dfs(0,0) s=dists.index(max(dists)) #0から一番遠い点を求める。 dists=[-1]*N prev=defaultdict(int) def dfs2(s, dist): dists[s]=dist for v in graph[s]: if dists[v]==-1: dfs2(v, dist+1) prev[v]=s dfs2(s,0) diam=max(dists) #直径 diam_leaf=dists.index(diam) #直径の末端。 if diam%2!=0: print('No') else: #直径が偶数なら可能性あり。 #まずは中心を求める。 center=diam_leaf for _ in range(diam//2): center=prev[center] dist_set=set() visited=[False]*N def dfs(s, dist): visited[s]=True flag=True for v in graph[s]: if not visited[v]: flag=False dfs(v, dist+1) if flag: dist_set.add(dist) dfs(center,0) if len(dist_set)==1: print('Yes') else: print('No')